/* =========================================
   D.K. Enterprises - Cream Premium Styles
   ========================================= */

:root {
    --bg-cream: #FAF3E8;
    --bg-card: #FFFFFF;
    --primary-orange: #E85D25;
    --primary-orange-light: rgba(232, 93, 37, 0.1);
    --text-dark: #2A2A2A;
    --text-muted: #555555;
    --border-light: rgba(232, 93, 37, 0.2);
    
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 35px rgba(232, 93, 37, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    scroll-behavior: smooth;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.text-orange {
    color: var(--primary-orange);
}

.text-center {
    text-align: center;
}

.soft-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.soft-card:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

/* ================= Buttons ================= */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(232, 93, 37, 0.3);
}

.btn-primary:hover {
    background-color: #d1501d;
    box-shadow: 0 6px 20px rgba(232, 93, 37, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-outline:hover {
    background-color: var(--primary-orange-light);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ================= Navbar ================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 15px 0;
    z-index: 1050;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(250, 243, 232, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    height: 80px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 164px;
    height: 42px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-orange);
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.mobile-menu.active {
    max-height: 400px;
}

.mobile-link {
    padding: 15px 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-weight: 600;
    color: var(--text-dark);
}

.mobile-link:hover {
    color: var(--primary-orange);
    background: var(--primary-orange-light);
}

/* ================= Hero Section ================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background-color: var(--bg-cream);
    background: radial-gradient(circle at 82% 22%, rgba(232, 93, 37, 0.16), transparent 28%), linear-gradient(135deg, #FAF3E8 0%, #FFFDFC 100%);
}

.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(232, 93, 37, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(232, 93, 37, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to right, transparent, black 45%, black);
    opacity: 0.65;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
    gap: clamp(40px, 7vw, 90px);
    align-items: center;
    padding-top: 70px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 720px;
}

.trust-badge-top {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--primary-orange);
    border-radius: 30px;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(232, 93, 37, 0.1);
}

.hero-title {
    font-size: clamp(3.4rem, 6vw, 5.4rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-bottom: 42px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
}

.trust-badges .badge {
    background: var(--bg-card);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.trust-badges .badge i {
    color: var(--primary-orange);
}

.hero-visual {
    position: relative;
    width: min(100%, 430px);
    justify-self: end;
    padding: 24px 14px 48px 40px;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0 35px 28px 0;
    border: 2px solid var(--primary-orange);
    border-radius: 30px 30px 110px 30px;
    transform: rotate(-3deg);
}

.hero-photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px 24px 92px 24px;
    background: var(--bg-card);
    box-shadow: 0 28px 70px rgba(63, 40, 28, 0.22);
    transform: rotate(2deg);
}

.hero-photo-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 18%;
}

.hero-photo-card figcaption {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 14px 16px;
    border-radius: 14px 14px 38px 14px;
    color: white;
    background: rgba(31, 27, 24, 0.86);
    backdrop-filter: blur(10px);
    font-size: 0.92rem;
}

.hero-photo-card figcaption span {
    display: block;
    color: #FFB28F;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-logo-stamp {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 220px;
    padding: 10px 14px;
    border-radius: 14px;
    background: #FFFDF8;
    box-shadow: 0 12px 30px rgba(63, 40, 28, 0.16);
    transform: rotate(-4deg);
    z-index: 0;
}

.hero-logo-stamp img {
    display: block;
    width: 100%;
}

/* ================= About Section ================= */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.about-highlights {
    margin-top: 30px;
}

.about-highlights li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 5px;
    display: inline-block;
}

.stat-item span {
    font-size: 2rem;
    color: var(--primary-orange);
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    margin-top: 20px;
}

.about-brand-card {
    margin-top: 20px;
    padding: 30px;
    border-radius: 12px;
    background: linear-gradient(145deg, #FFFDF8, #F7E8D9);
    border: 1px solid var(--border-light);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.about-logo {
    display: block;
    width: min(100%, 440px);
    margin: 0 auto 12px;
}

.about-brand-card p {
    color: var(--text-muted);
    font-weight: 600;
}

/* ================= Brands Section ================= */
.section-desc {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.brand-card {
    text-align: center;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.brand-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    transition: var(--transition);
}

.brand-card:hover .brand-icon {
    color: var(--primary-orange);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.brand-card:hover .brand-text {
    color: var(--primary-orange);
}

/* ================= Services Section ================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    text-align: center;
    border-top: 4px solid var(--primary-orange);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-orange);
    font-size: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-muted);
}

/* ================= Other Services Subsection ================= */
.other-services-title {
    text-align: center;
    font-size: 1.6rem;
    margin-top: 60px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.other-service-card {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 24px 16px;
    box-shadow: var(--shadow-soft);
}

.other-service-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-orange-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--primary-orange);
    font-size: 1.3rem;
}

.other-service-card h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: #242424;
}

.other-service-card p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.btn-contact-small {
    display: inline-block;
    padding: 7px 18px;
    background: var(--primary-orange);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-contact-small:hover {
    background: var(--primary-orange-dark, #c94717);
    transform: translateY(-2px);
}

/* ================= Gallery Section ================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 230px;
    gap: 20px;
    margin-top: 34px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    appearance: none;
    padding: 0;
    color: inherit;
    font: inherit;
    background: var(--bg-card);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
}

.gallery-item-featured {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item-logo {
    background: linear-gradient(145deg, #FFF8EF, #FFFFFF);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-logo img {
    object-fit: contain;
    padding: 34px;
}

.gallery-item-wide img {
    object-position: center 42%;
}

.gallery-caption {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    padding: 12px 14px;
    border-radius: 10px;
    color: white;
    text-align: left;
    background: linear-gradient(90deg, rgba(24, 22, 20, 0.9), rgba(24, 22, 20, 0.62));
    transition: var(--transition);
}

.gallery-caption strong,
.gallery-caption small {
    display: block;
}

.gallery-caption small {
    color: rgba(255, 255, 255, 0.76);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(232, 93, 37, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: white;
    transform: scale(0);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 0.88;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption {
    transform: translateY(130%);
}

.gallery-item:focus-visible {
    outline: 3px solid var(--primary-orange);
    outline-offset: 4px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
    background: white;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    border: 0;
    background: transparent;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary-orange);
}

/* ================= Contact Section ================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-list i {
    font-size: 1.5rem;
    margin-top: 5px;
}

.contact-list a {
    font-weight: 600;
    transition: var(--transition);
}

.contact-list a:hover {
    color: var(--primary-orange);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    color: var(--text-dark);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px var(--primary-orange-light);
}

/* ================= Footer ================= */
.footer {
    background: var(--bg-card);
    padding: 80px 0 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    width: 210px;
    height: auto;
    margin-bottom: 15px;
}

.footer-title {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.footer-tagline {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-cream);
    border-radius: 50%;
    color: var(--text-dark);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary-orange);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--text-dark);
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ================= Animations ================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================= Section Reveal ================= */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
section.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ================= Responsive ================= */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .about-container,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-content {
        grid-template-columns: 1fr 340px;
        gap: 30px;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    .stat-item {
        border-bottom: none;
        border-right: 1px solid rgba(0,0,0,0.05);
    }
    .stat-item:last-child {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions .btn-outline {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .navbar {
        height: 60px;
        padding: 10px 0;
    }
    .navbar.scrolled {
        height: 60px;
        padding: 10px 0;
    }
    .logo-img {
        width: 110px;
        height: 28px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero {
        padding-top: 60px;
    }
    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 30px;
    }
    .hero-visual {
        width: min(92%, 320px);
        max-height: 400px;
        overflow: hidden;
        justify-self: center;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .about-stats {
        grid-template-columns: 1fr;
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 220px;
    }
    .gallery-item-featured,
    .gallery-item-wide {
        grid-column: span 2;
    }
    .gallery-item-featured {
        grid-row: span 2;
    }
    .brand-card, .service-card, .other-service-card {
        max-width: 100%;
        width: 100%;
        flex-basis: 100%;
    }
}

@media (max-width: 520px) {
    .logo-img {
        width: 138px;
    }
    .hero-title {
        font-size: 2.45rem;
    }
    .hero-subtitle {
        font-size: 1.15rem;
    }
    .hero-visual {
        padding-left: 18px;
    }
    .hero-logo-stamp {
        width: 180px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }
    .gallery-item-featured,
    .gallery-item-wide {
        grid-column: auto;
        grid-row: auto;
    }
}

.btn-nav-wa {
    padding: 8px 16px;
    font-size: 0.95rem;
}

/* ================= Social Buttons ================= */
.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white !important;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: var(--transition);
}
.btn-facebook {
    background-color: #1877F2;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.25);
}
.btn-facebook:hover {
    background-color: #166FE5;
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.35);
    transform: translateY(-2px);
}
.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.25);
}
.btn-instagram:hover {
    filter: brightness(1.1);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.35);
    transform: translateY(-2px);
}

/* ================= End of Page Popup ================= */
.end-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(31, 27, 24, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.end-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.end-popup-card {
    position: relative;
    background: var(--bg-card, #fff);
    border-radius: 20px;
    padding: 40px 32px 32px;
    max-width: 360px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 70px rgba(0,0,0,0.3);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.3s ease;
}

.end-popup-overlay.active .end-popup-card {
    transform: translateY(0) scale(1);
}

.end-popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
}

.end-popup-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-orange-light);
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 16px;
}

.end-popup-card h3 {
    font-size: 1.4rem;
    color: #242424;
    margin-bottom: 6px;
}

.end-popup-card p {
    color: #6c757d;
    margin-bottom: 20px;
}
