
/* --- VARIABLES --- */
:root {
    --gold: #b38e44;
    --dark: #072e27;
    --white: #ffffff;
    --grey-light: #f4f7f6;
    --dark-green: #072e27;
    --gold-hover: #967536;
    --text-grey: #555;
    --bg-light: #fff;
}

/* --- RESET DASAR --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: var(--text-grey);
    line-height: 1.6;
}

/* --- NAVBAR --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 7%;
    background: var(--white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 70px;
}

.logo-nav img {
    height: 180px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Tombol Konsultasi */
.btn-konsultasi {
    background-color: #0F3D3A; 
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-konsultasi:hover {
    background-color: #0F3D3A;
    transform: translateY(-2px);
}

.star-icon {
    color: #C9A24D;
    font-size: 16px;
}

.hamburger{
display:none;
flex-direction:column;
gap:5px;
cursor:pointer;
}

.hamburger{
display:none;
flex-direction:column;
gap:5px;
cursor:pointer;
}

.hamburger span{
width:25px;
height:3px;
background:#072e27;
display:block;
transition:0.3s;
}

/* --- HERO SECTION --- */
.sect-hero {
    position: relative;
    height: 120vh;
    background: url('Img/interior\ amartha.jpeg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #072e27cc;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    color: var(--white);
    width: 90%;
    max-width: 900px;
}

.hero-logo-center {
    width: 150px;
    margin-bottom: 0;
    transform: scale(2);
    transform-origin: center;
}

.title-white {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    font-weight: bold;
}

.title-gold {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: var(--gold);
    margin-top: -10px;
    font-weight: bold;
}

.hero-desc {
    font-weight: 300;
    font-size: 17px;
    margin: 20px 0 40px;
    line-height: 1.6;
}

/* --- BUTTONS & STATS --- */
.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-main {
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
}

.btn-main:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
}

.stat-item h3 {
    font-size: 42px;
    color: var(--gold);
}

.stat-item p {
    font-size: 14px;
    opacity: 0.8;
}

/* --- SECTION ABOUT --- */
.sect-about {
    padding: 80px 7%;
    background: #fff;
}

.container-about {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1.2;
}

.about-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.top-label {
    color: #c5a059;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Madimi One', sans-serif;
    color: var(--dark);
    font-size: 42px;
    font-weight: 30;
    margin-bottom: 20px;
    line-height: 1.2;
}

.intro-text {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Kartu Visi Misi */
.vm-card {
    background: var(--grey-light);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 35px;
}

.gold-label {
    color: #c5a059;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.vm-block p,
.vm-block li {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.vm-block ol {
    padding-left: 20px;
    margin-top: 10px;
}

/* Grid Fitur */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.feat-card {
    display: flex;
    gap: 15px;
    align-items: center;
}

.icon-box {
    background: #f4f7f6;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.icon-box img {
    width: 60px;
    height: 104px;
    object-fit: contain;
}

.icon-box img[src*="wa"]{
    width: 28px;
    height: 280px;
}

.feat-info strong {
    color: var(--dark);
    font-size: 15px;
    display: block;
}

.feat-info p {
    color: #888;
    font-size: 12.5px;
    line-height: 1.3;
}

/* Frame Gambar Kubah (Arch) */
.photo-frame {
    width: 100%;
    max-width: 450px;
    height: 600px;
    border-radius: 250px 250px 60px 60px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Halal Tag */
.halal-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--grey-light);
    padding: 12px 35px;
    border-radius: 15px;
    width: fit-content;
    margin: 30px auto 0 auto;
    align-self: center;
}

.halal-icon-img {
    width: 30px;
    height: auto;
}

.halal-tag span {
    font-weight: 700;
    color: var(--dark);
    font-size: 14px;
}

/* Responsive About */
@media (max-width: 992px) {
    .container-about {
        flex-direction: column;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feat-card,
    .halal-tag {
        justify-content: center;
        margin: 0 auto;
    }

    .photo-frame {
        height: 500px;
    }
}

/* --- SECTION 3: LAYANAN --- */
.sect-services {
    padding: 80px 7%;
    background-color: #fbfbfb;
    text-align: center;
}

.section-title-services {
    color: #0F3D3A;
    font-size: 38px;
    font-family: 'Madimi One', serif;
    margin: 10px 0;
    font-weight: 30;
}

.title-line {
    width: 60px;
    height: 3px;
    background: #c5a059;
    margin: 0 auto 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px #0000000d;
    text-align: left;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-img-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-fav-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: auto;
    z-index: 5;
}

.service-info {
    padding: 20px 15px;
}

.service-info h3 {
    color: #0F3D3A;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 5px;
}

.service-info .desc {
    color: #999;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.rating {
    font-size: 13px;
    margin-bottom: 15px;
}

.price {
    color: #0F3D3A;
    font-weight: 700;
    font-size: 16px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

/* Tombol Lihat Selengkapnya */
.btn-view-more {
    background: #0F3D3A;
    color: #fff;
    width: 224px;
    height: 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s ease;
    box-shadow: none;
    border: none;
    line-height: 1;
}

.btn-view-more:hover {
    background-color: #0c4743;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: none;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* desktop + tablet hide */
@media screen and (min-width: 481px){
  .service-detail-btn{
    display: none !important;
  }
}


/* --- SECTION 4: PRODUK SKINCARE --- */
.sect-products {
    padding: 100px 7%;
    background-color: #ffffff;
    text-align: center;
}

.section-title-products {
    color: #0F3D3A;
    font-size: 40px;
    font-family: 'Madimi One', serif;
    margin: 15px 0;
    font-weight: 30;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.product-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px #00000014;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.discount-tag {
    position: relative;
    top: -290px;
    left: 2px;
    background: #ff4d4d;
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    z-index: 2;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    color: #0F3D3A;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
    height: 45px;
    overflow: hidden;
}

.product-desc {
    color: #888;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 15px;
    height: 55px;
    overflow: hidden;
}

.product-meta {
    font-size: 12px;
    margin-bottom: 10px;
}

.product-meta .rating {
    color: #c5a059;
    font-weight: 700;
}

.product-meta .sold {
    color: #bbb;
    margin-left: 5px;
}

.price-box {
    margin-bottom: 20px;
}

.current-price {
    color: #0F3D3A;
    font-weight: 800;
    font-size: 18px;
    display: block;
}

.old-price {
    color: #bbb;
    text-decoration: line-through;
    font-size: 12px;
}

/* Tombol di dalam kartu */
.shop-buttons {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.btn-shopee,
.btn-tiktok {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-shopee {
    background: #d4a358;
    color: #fff;
}

.btn-tiktok {
    background: #0F3D3A;
    color: #fff;
}

.btn-shopee:hover,
.btn-tiktok:hover {
    opacity: 0.85;
}

.shop-buttons .disabled {
    opacity: 0.5;                
    filter: grayscale(100%);    
    cursor: not-allowed;         
    pointer-events: none;        
    background: #ccc !important; 
    border: none !important;
}

/* --- BAGIAN FOOTER BAWAH PRODUK --- */
.products-footer-cta {
    text-align: center;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*lihat selengkapnya*/
.btn-see-more-dark {
    background: #0F3D3A;
    color: #fff;
    width: 224px;
    height: 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s ease;
    box-shadow: none;
    border: none;
    line-height: 1;
}

.btn-see-more-dark:hover {
    background-color: #0c4743;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: none;
}

.text-market {
    margin: 25px 0 15px;
    color: #777;
    font-size: 14px;
}

.market-buttons-group {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-outline {
    padding: 10px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    background: transparent;
    border: 1px solid #ddd;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-shopee-outline {
    color: #ee4d2d;
    border-color: #ee4d2d;
}

.btn-tiktok-outline {
    color: #000;
    border-color: #000;
}

.btn-shopee-outline:hover {
    background: #ee4d2d;
    color: #fff;
}

.btn-tiktok-outline:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .market-buttons-group {
        flex-direction: column;
        width: 100%;
        padding: 0 15%;
    }

    .btn-outline {
        justify-content: center;
    }
}

/* --- SECTION 5: TIM DOKTER --- */
.sect-experts {
    padding: 100px 7%;
    background-color: #0F3D3A;
    text-align: center;
}

.header-experts .top-label-gold {
    color: #c5a059;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
}

.section-title-experts {
    color: #ffffff;
    font-size: 42px;
    font-family: 'Madimi One', serif;
    margin: 15px 0;
    font-weight: 30;
}

.header-experts .title-line {
    width: 80px;
    height: 4px;
    background: #c5a059;
    margin: 0 auto 50px;
    border-radius: 10px;
}

.experts-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.expert-card {
    background: #ffffff;
    padding: 60px 30px;
    border-radius: 40px;
    width: 480px;
    max-width: 100%;
    transition: 0.4s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.expert-card:hover {
    transform: translateY(-15px);
}

.expert-img-container {
    width: 250px;
    height: 250px;
    margin: 0 auto 35px;
    border-radius: 50%;
    border: 6px solid #c5a059;
    padding: 8px;
    overflow: hidden;
}

.expert-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.expert-info h3 {
    color: #c5a059;
    font-size: 26px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 8px;
    font-weight: 700;
}

.expert-info p {
    color: #c5a059;
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 992px) {
    .expert-card {
        padding: 40px 20px;
    }

    .expert-img-container {
        width: 200px;
        height: 200px;
    }
}

/* --- SECTION CTA --- */
.sect-cta {
    position: relative;
    background-image: url('Img/WhatsApp Image 2026-02-12 at 20.58.42.webp');
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
    padding: 100px 7% 120px;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 46, 39, 0.7);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Madimi One', serif;
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 30;
    line-height: 1.2;
}

.cta-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 300;
    color: #e0e0e0;
}

.cta-buttons-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-gold {
    background-color: #b38e44;
    color: #000;
    font-weight: 800;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    border: 2px solid #b38e44;
}

.btn-cta-gold:hover {
    background-color: #967536;
    border-color: #967536;
    transform: translateY(-3px);
}

.btn-cta-outline {
    background-color: transparent;
    color: #fff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid #fff;
}

.btn-cta-outline:hover {
    background-color: #fff;
    color: #072e27;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 32px;
    }

    .cta-desc {
        font-size: 15px;
    }

    .cta-buttons-group {
        flex-direction: column;
        gap: 15px;
    }

    .sect-cta {
        background-attachment: scroll;
        padding: 80px 7%;
    }
}

/* --- SECTION KONTAK FINAL --- */
.sect-contact-final {
    padding: 80px 7%;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.sub-title {
    display: block;
    color: #b38e44;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.main-title {
    font-family: 'Marko One', serif;
    font-weight: 30;
    font-size: 48px;
    color: #072e27;
    margin-bottom: 15px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: #b38e44;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.map-container {
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    display: block;
}

.info-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon-circle {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #072e27;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.icon-maps{
    width: 240px;
    height: 50px;
    object-fit: contain;
}

.info-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #072e27;
    font-weight: 700;
    margin-bottom: 5px;
}

.info-text p {
    font-size: 15px;
    color: #444;
    margin-bottom: 5px;
    line-height: 1.5;
}

.info-text strong {
    color: #072e27;
    font-weight: 700;
}

.maps-link {
    color: #b38e44;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.maps-link:hover {
    color: #072e27;
}

/* Tombol Sosmed */
.social-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.btn-sosmed {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s ease;
}

.sosmed-icon-img {
    width: 22px;
    height: auto;
    filter: brightness(0) invert(1);
}

.btn-ig {
    background-color: #b38e44;
}

.btn-tk {
    background-color: #0F3D3A;
}

.btn-sosmed:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-container iframe {
        height: 300px;
    }

    .social-buttons {
        flex-direction: column;
    }
}

/* --- FOOTER SECTION --- */
.sect-footer-wrapper {
    background-color: #0F3D3A;
    padding-top: 20px;
    margin-top: 80px;
}

.footer-gold-layer {
    background-color: #cca457;
    border-radius: 50px 50px 0 0;
    padding: 70px 6% 30px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.3fr;
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
}

/* Logo Box */
.logo-box {
    background: #fff;
    width: 220px;
    height: 220px;
    padding: 15px;
    border-radius: 40px;
    border: 3px solid #0F3D3A;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.logo-box img {
    width: 100%;
    height: 100%;
    display: block;
    transform: scale(1.8);
    object-fit: contain;
    transition: transform 0.4s ease;
}

.logo-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
    border-color: #cca457;
}

.logo-box:hover img {
    transform: scale(2.1);
}

.brand-desc {
    color: #0F3D3A;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Social Buttons Box */
.social-buttons-box {
    display: flex;
    gap: 15px;
}

.soc-btn {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.soc-btn:hover {
    background-color: #fff;
    transform: translateY(-3px);
}

.soc-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.col-title {
    font-size: 20px;
    color: #0F3D3A;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Footer Lists */
.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.footer-list a:hover {
    color: #0F3D3A;
    padding-left: 5px;
}

.footer-list img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* Contact List */
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Copyright */
.footer-copyright {
    border-top: 1px solid rgba(7, 46, 39, 0.2);
    padding-top: 25px;
    margin-top: 20px;
    position: relative;
    z-index: 10;
    clear: both;
}

.footer-copyright p {
    color: #0F3D3A;
    font-size: 14px;
    opacity: 0.8;
}

.admin-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

.admin-link:hover {
    opacity: 0.8;
    cursor: pointer;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-gold-layer {
        padding: 50px 5% 30px;
    }
}