/* service.css - Full Hero Section Styles */

:root {
    --gold: #c2935c;
    --gold-hover: #dfb683;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-muted: #cccccc;
}

/* 1. Hero Main Container */
.service-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #121212; /* Fallback */
    padding: 100px 0 60px 0;
}

/* Background Image with Dark Overlay */
.hero-bg-visual {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.4)), 
                url('../public/bg222.png'); /* Ensure this path is correct */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* 2. Breadcrumb Navigation */
.breadcrumb-nav {
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.breadcrumb-nav a {
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-nav i {
    font-size: 0.7rem;
    margin: 0 10px;
    opacity: 0.7;
}

/* 3. Hero Layout Wrapper */
.hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* 4. Glassmorphism Content Card */
.hero-glass-card {
    flex: 1;
    max-width: 680px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.badge {
    display: inline-block;
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid var(--gold);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-glass-card h1 {
    font-size: 3.5rem;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 25px;
}

.text-gold {
    color: var(--gold);
}

/* Fixed Vertical Bar Alignment */
.accent-quote {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.accent-quote::before {
    content: "";
    width: 4px;
    height: 45px;
    background: var(--gold);
    flex-shrink: 0;
}

.accent-quote p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.hero-desc {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 40px;
}

/* 5. Buttons */
.hero-cta-group {
    display: flex;
    gap: 20px;
}

.cta-gold {
    background: var(--gold);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
    text-align: center;
}

.cta-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-gold:hover {
    background: var(--gold-hover);
    transform: translateY(-3px);
}

.cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* 6. Right Side Stats (Visuals) */
.hero-visual-stats {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.stat-circle {
    width: 250px;
    height: 250px;
    border: 1px dashed var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 20s linear infinite;
}

.circle-content {
    background: rgba(20, 20, 20, 0.9);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: spin-back 20s linear infinite; /* Keeps text upright */
}

.circle-content .gold-text {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.circle-content small {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-top: .5rem;
}
/* HERO REVEAL */
.service-hero.reveal {
    opacity: 0;
    transform: scale(0.92) translateY(60px);
    transition: all 1s ease;
}

.service-hero.reveal.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Stagger animation inside hero */
.hero-glass-card > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

/* When hero is visible */
.service-hero.active .hero-glass-card > * {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for premium feel */
.service-hero.active .badge { transition-delay: 0.2s; }
.service-hero.active h1 { transition-delay: 0.4s; }
.service-hero.active .accent-quote { transition-delay: 0.6s; }
.service-hero.active .hero-desc { transition-delay: 0.8s; }
.service-hero.active .hero-cta-group { transition-delay: 1s; }

/* Right stat animation */
.hero-visual-stats {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s ease;
}

.service-hero.active .hero-visual-stats {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.8s;
}
/* 7. Animations */
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spin-back { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }

/* 8. Responsive Fixes */
@media (max-width: 1024px) {
    .hero-wrapper { flex-direction: column; text-align: center; }
    .hero-glass-card { padding: 40px 30px; }
    .accent-quote { justify-content: center; }
    .hero-cta-group { justify-content: center; }
    .hero-glass-card h1 { font-size: 2.8rem; }
}

@media (max-width: 480px) {
    .hero-cta-group { flex-direction: column; width: 100%; }
    .cta-gold, .cta-outline { width: 100%; justify-content: center; }
}


.studio-services-premium {
    background-color: #0f0f0f; /* Deep Dark Background */
    padding: 100px 0;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* Header Alignment */
.service-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    gap: 40px;
}

.intro-left h2 {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif; /* Elegant Serif Font */
    line-height: 1.1;
    margin-top: 15px;
}

.gold-text { color: #c2935c; }

.title-line {
    width: 100px;
    height: 4px;
    background: #c2935c;
    margin-top: 20px;
}

.intro-right { max-width: 450px; }
.intro-right p { color: #bbb; line-height: 1.8; margin-bottom: 25px; }

/* Grid Styling */
.service-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Glass Card Design */
.s-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 250px;
    padding: 40px;
    position: relative;
    border-radius: 20px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.s-card:hover {
    background: #c2935c;
    transform: translateY(-10px);
    border-color: #c2935c;
}

.s-icon {
    font-size: 2.5rem;
    color: #c2935c;
    margin-bottom: 20px;
    transition: 0.3s;
}

.s-card:hover .s-icon { color: #fff; }

.s-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    transition: 0.3s;
}

.s-card:hover h3 { color: #fff; }

/* Background Large Number */
.s-bg-number {
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    transition: 0.3s;
    line-height: 1;
}

.s-card:hover .s-bg-number {
    color: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

/* Buttons */
.btn-gold-fill {
    background: #c2935c;
    color: #fff;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 15px;
    display: inline-block;
}

.btn-outline-white {
    border: 1px solid #555;
    color: #fff;
    padding: 11px 28px;
    border-radius: 5px;
    text-decoration: none;
}


.light-board-premium {
    background-color: #0a0a0a; /* Darker than the previous section */
    padding: 120px 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* Header Styling */
.board-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    gap: 50px;
}

.glow-tag {
    color: #c2935c;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: rgba(194, 147, 92, 0.1);
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px solid rgba(194, 147, 92, 0.2);
}

.board-header h2 {
    font-size: 3.2rem;
    margin-top: 20px;
    line-height: 1.2;
}

.gold-text { color: #c2935c; }

.header-right { max-width: 500px; }
.header-right p { color: #888; font-size: 1.05rem; line-height: 1.7; margin-bottom: 30px; }

/* Grid Styling */
.board-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Board Item Styling */
.board-item {
    background: #111;
    border: 1px solid #222;
    padding: 40px 30px;
    border-radius: 0; /* Sharp architectural corners */
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 220px;
}

.board-icon {
    font-size: 2rem;
    color: #c2935c;
    transition: 0.3s;
}

.board-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.board-info p {
    font-size: 0.85rem;
    color: #666;
    transition: 0.3s;
}

/* Hover State - "The Light Up" */
.board-item:hover {
    background: #161616;
    border-color: #c2935c;
    box-shadow: 0 0 30px rgba(194, 147, 92, 0.1);
}

.board-item:hover .board-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(194, 147, 92, 0.6));
}

.board-item:hover .board-info p { color: #aaa; }

/* Special Highlight for Neon */
.highlight {
    border-color: rgba(194, 147, 92, 0.4);
}

/* Buttons */
.btn-gold-glow {
    background: #c2935c;
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 2px;
    display: inline-block;
    transition: 0.3s;
}

.btn-gold-glow:hover {
    box-shadow: 0 0 20px rgba(194, 147, 92, 0.4);
}

.btn-text {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}
/* SECTION BASE */
.studio-services-premium.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s ease;
}

.studio-services-premium.active {
    opacity: 1;
    transform: translateY(0);
}

/* HEADER SPLIT ANIMATION */
.service-intro {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.studio-services-premium.active .service-intro {
    opacity: 1;
    transform: translateY(0);
}

/* LEFT + RIGHT SEPARATE FEEL */
.intro-left {
    transform: translateX(-60px);
    opacity: 0;
    transition: 0.8s ease;
}

.intro-right {
    transform: translateX(60px);
    opacity: 0;
    transition: 0.8s ease;
}

.studio-services-premium.active .intro-left {
    transform: translateX(0);
    opacity: 1;
}

.studio-services-premium.active .intro-right {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.2s;
}

/* CARDS ANIMATION (BEST PART 🔥) */
.s-card {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.6s ease;
}

/* Stagger effect */
.studio-services-premium.active .s-card:nth-child(1) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.1s;
}

.studio-services-premium.active .s-card:nth-child(2) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.2s;
}

.studio-services-premium.active .s-card:nth-child(3) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.3s;
}

.studio-services-premium.active .s-card:nth-child(4) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.4s;
}
.studio-services-premium.active .s-card:nth-child(5) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.5s;
}
.studio-services-premium.active .s-card:nth-child(6) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.6s;
}
.studio-services-premium.active .s-card:nth-child(7) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.7s;
}
.studio-services-premium.active .s-card:nth-child(8) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.8s;
}

/* Responsive */
/* --- MOBILE RESPONSIVE OVERRIDES --- */

@media (max-width: 992px) {
    /* Studio Services Section */
    .service-intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 50px;
    }

    .intro-left h2 {
        font-size: 2.5rem; /* Smaller heading for tablets */
    }

    /* Light Board Section */
    .board-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .board-header h2 {
        font-size: 2.5rem;
    }

    .board-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 768px) {
    .studio-services-premium, 
    .light-board-premium {
        padding: 60px 20px; /* Reduce padding on mobile */
    }

    .intro-left h2, 
    .board-header h2 {
        font-size: 2rem; /* Comfortable size for phones */
    }

    /* Stack Grids into 1 column */
    .service-main-grid,
    .board-grid {
        grid-template-columns: 1fr;
    }

    /* Fix height issues on small screens if text overflows */
    .s-card, 
    .board-item {
        height: auto;
        min-height: 200px;
    }

    /* Adjust buttons for mobile */
    .btn-gold-fill, 
    .btn-outline-white {
        display: block;
        width: 100%;
        text-align: center;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .btn-gold-glow {
        width: 100%;
        text-align: center;
    }

    .btn-text {
        display: block;
        margin-left: 0;
        margin-top: 20px;
        text-align: center;
    }

    /* Ensure animations don't cause horizontal scroll */
    .intro-left, .intro-right {
        transform: translateY(20px); /* Vertical movement only on mobile */
    }
}

@media (max-width: 480px) {
    .intro-left h2, 
    .board-header h2 {
        font-size: 1.8rem;
    }
    
    .s-bg-number {
        font-size: 5rem; /* Smaller background numbers so they don't overlap text */
    }
}
/* Keep your existing desktop stagger code, then add this at the bottom */

@media (max-width: 768px) {
    /* Reset stagger delays for mobile so users don't see empty spaces while scrolling */
    .studio-services-premium.active .s-card {
        transition-delay: 0.1s !important; /* All cards appear almost instantly */
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    /* Optional: If cards are still not visible, ensure the parent isn't clipping them */
    .studio-services-premium {
        overflow: visible !important;
    }
}



/* Glass Works Section Styling */
.glass-works-section {
    padding: 120px 0;
    background-color: #f9f9f9; /* Light, airy background */
    color: #1a1a1a;
}

.glass-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Left Side Text */
.glass-info {
    flex: 1;
}

.section-tag {
    display: inline-block;
    color: #c2935c;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.glass-title {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    margin-bottom: 25px;
}

.glass-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.cta-gold-btn {
    background: #c2935c;
    color: white;
    padding: 16px 35px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    display: inline-block;
    transition: 0.3s;
}

.cta-gold-btn:hover {
    background: #a67c4a;
    box-shadow: 0 10px 20px rgba(194, 147, 92, 0.2);
}

.cta-note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
    font-style: italic;
}

/* Right Side Service Items */
.glass-services-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.g-item {
    background: #ffffff;
    border: 1px solid #eee;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s ease;
    cursor: default;
}

.g-count {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e0e0e0;
    transition: 0.3s;
}

.g-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.g-content p {
    font-size: 0.9rem;
    color: #777;
}

.g-item i {
    margin-left: auto;
    font-size: 1.5rem;
    color: #ccc;
    transition: 0.3s;
}

/* Hover Effect: Soft Blue Tint & Slide */
.g-item:hover {
    border-color: #c2935c;
    background: #fff;
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.g-item:hover .g-count {
    color: #c2935c;
}

.g-item:hover i {
    color: #c2935c;
    transform: scale(1.2);
}
/* SECTION BASE */
.light-board-premium.reveal-light {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s ease;
}

.light-board-premium.active {
    opacity: 1;
    transform: translateY(0);
}

/* HEADER ANIMATION (Split like spotlight) */
.header-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s ease;
}

.header-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s ease;
}

.light-board-premium.active .header-left {
    opacity: 1;
    transform: translateX(0);
}

.light-board-premium.active .header-right {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

/* GRID ITEMS (LED TURN ON EFFECT 🔥) */
.board-item {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    filter: blur(6px);
    transition: all 0.6s ease;
}

/* Stagger glow reveal */
/* Stagger reveal for all 16 items */
.light-board-premium.active .board-item:nth-child(1) { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); transition-delay: 0.10s; }
.light-board-premium.active .board-item:nth-child(2) { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); transition-delay: 0.15s; }
.light-board-premium.active .board-item:nth-child(3) { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); transition-delay: 0.20s; }
.light-board-premium.active .board-item:nth-child(4) { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); transition-delay: 0.25s; }
.light-board-premium.active .board-item:nth-child(5) { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); transition-delay: 0.30s; }
.light-board-premium.active .board-item:nth-child(6) { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); transition-delay: 0.35s; }
.light-board-premium.active .board-item:nth-child(7) { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); transition-delay: 0.40s; }
.light-board-premium.active .board-item:nth-child(8) { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); transition-delay: 0.45s; }
.light-board-premium.active .board-item:nth-child(9) { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); transition-delay: 0.50s; }
.light-board-premium.active .board-item:nth-child(10) { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); transition-delay: 0.55s; }
.light-board-premium.active .board-item:nth-child(11) { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); transition-delay: 0.60s; }
.light-board-premium.active .board-item:nth-child(12) { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); transition-delay: 0.65s; }
.light-board-premium.active .board-item:nth-child(13) { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); transition-delay: 0.70s; }
.light-board-premium.active .board-item:nth-child(14) { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); transition-delay: 0.75s; }
.light-board-premium.active .board-item:nth-child(15) { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); transition-delay: 0.80s; }
.light-board-premium.active .board-item:nth-child(16) { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); transition-delay: 0.85s; }

/* Optional glow effect when revealed */
.light-board-premium.active .board-item {
    box-shadow: 0 0 0 rgba(194,147,92,0);
    animation: glowFade 1s ease forwards;
}
/* SECTION BASE */
.glass-works-section.reveal-glass {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s ease;
}

.glass-works-section.active {
    opacity: 1;
    transform: translateY(0);
}

/* LEFT SIDE (SMOOTH FADE-IN) */
.glass-info {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s ease;
}

.glass-works-section.active .glass-info {
    opacity: 1;
    transform: translateX(0);
}

/* TEXT STAGGER */
.glass-info > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.glass-works-section.active .glass-info > * {
    opacity: 1;
    transform: translateY(0);
}

.glass-works-section.active .section-tag { transition-delay: 0.2s; }
.glass-works-section.active .glass-title { transition-delay: 0.4s; }
.glass-works-section.active .glass-desc { transition-delay: 0.6s; }
.glass-works-section.active .glass-cta-box { transition-delay: 0.8s; }

/* RIGHT SIDE (WAVE LIST EFFECT 🔥) */
.g-item {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.6s ease;
}

/* Wave animation */
.glass-works-section.active .g-item:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}
.glass-works-section.active .g-item:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}
.glass-works-section.active .g-item:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
}
.glass-works-section.active .g-item:nth-child(4) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.8s;
}

/* Subtle glass feel */
.g-item {
    backdrop-filter: blur(0px);
}

.glass-works-section.active .g-item {
    backdrop-filter: blur(2px);
}
@keyframes glowFade {
    0% {
        box-shadow: 0 0 25px rgba(194,147,92,0.4);
    }
    100% {
        box-shadow: 0 0 0 rgba(194,147,92,0);
    }
}
/* Responsive Alignment */
@media (max-width: 1024px) {
    .glass-layout { flex-direction: column; gap: 60px; }
    .glass-title { font-size: 2.5rem; }
}





/* Interior Works Section */
.interior-works-section {
    padding: 120px 0;
    background-color: #fcfaf7; /* Soft Warm Beige */
    color: #1a1a1a;
    position: relative;
}

.interior-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    gap: 40px;
}

.category-tag {
    color: #c2935c;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.serif-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    line-height: 1.1;
}

.header-right {
    max-width: 500px;
}

.header-right p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Interior Grid */
.interior-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.interior-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-img i {
    font-size: 2.5rem;
    color: #c2935c;
    transition: 0.3s;
}

.interior-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.interior-card p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.5;
}

/* Hover Effect: Card Lift & Shadow */
.interior-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(194, 147, 92, 0.1);
    border-color: #c2935c;
}

.interior-card:hover i {
    transform: scale(1.1);
}

/* SEO Strip */
.seo-keywords-strip {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.seo-keywords-strip span {
    font-size: 0.8rem;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Button */
.cta-pill-gold {
    background: #c2935c;
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.cta-pill-gold:hover {
    background: #1a1a1a;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
/* SECTION BASE */
.interior-works-section.reveal-interior {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s ease;
}

.interior-works-section.active {
    opacity: 1;
    transform: translateY(0);
}

/* HEADER ANIMATION (Elegant fade up) */
.interior-header {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.interior-works-section.active .interior-header {
    opacity: 1;
    transform: translateY(0);
}

/* TEXT STAGGER */
.interior-header > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.interior-works-section.active .interior-header > * {
    opacity: 1;
    transform: translateY(0);
}

.interior-works-section.active .category-tag { transition-delay: 0.2s; }
.interior-works-section.active .serif-title { transition-delay: 0.4s; }
.interior-works-section.active .header-right { transition-delay: 0.6s; }

/* GRID POP EFFECT 🔥 */
.interior-card {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    transition: all 0.6s ease;
}

/* Stagger cards */
/* Stagger reveal for all 16 interior cards */
.interior-works-section.active .interior-card:nth-child(1) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.1s; }
.interior-works-section.active .interior-card:nth-child(2) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.2s; }
.interior-works-section.active .interior-card:nth-child(3) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.3s; }
.interior-works-section.active .interior-card:nth-child(4) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.4s; }
.interior-works-section.active .interior-card:nth-child(5) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.5s; }
.interior-works-section.active .interior-card:nth-child(6) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.6s; }
.interior-works-section.active .interior-card:nth-child(7) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.7s; }
.interior-works-section.active .interior-card:nth-child(8) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.8s; }
.interior-works-section.active .interior-card:nth-child(9) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 0.9s; }
.interior-works-section.active .interior-card:nth-child(10) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 1.0s; }
.interior-works-section.active .interior-card:nth-child(11) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 1.1s; }
.interior-works-section.active .interior-card:nth-child(12) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 1.2s; }
.interior-works-section.active .interior-card:nth-child(13) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 1.3s; }
.interior-works-section.active .interior-card:nth-child(14) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 1.4s; }
.interior-works-section.active .interior-card:nth-child(15) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 1.5s; }
.interior-works-section.active .interior-card:nth-child(16) { opacity: 1; transform: translateY(0) scale(1); transition-delay: 1.6s; }
/* SEO STRIP FADE */
.seo-keywords-strip {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.interior-works-section.active .seo-keywords-strip {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}
/* Responsive */
@media (max-width: 992px) {
    .interior-grid { grid-template-columns: repeat(2, 1fr); }
    .interior-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
    .interior-grid { grid-template-columns: 1fr; }
    .serif-title { font-size: 2.5rem; }
}
@media (max-width: 768px) {
    /* Reset delays so cards appear as the user scrolls to them */
    .interior-works-section.active .interior-card {
        transition-delay: 0.05s !important; /* Minimal uniform delay */
        opacity: 1 !important;
        transform: translateY(0) scale(1) !important;
        filter: blur(0) !important;
    }
    
    /* Ensure the container doesn't hide the cards during animation */
    .interior-works-section {
        overflow: visible !important;
    }
}


/* Exterior Works Section */
.exterior-works-section {
    padding: 120px 0;
    background-color: #1a1a1a; /* Professional Dark Grey */
    color: #ffffff;
}

.exterior-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* Left Content - Sticky Effect for Desktop */
.exterior-content {
    flex: 1;
    position: sticky;
    top: 100px;
}

.exterior-desc {
    color: #aaa;
    line-height: 1.8;
    margin: 25px 0 40px;
    font-size: 1.1rem;
}

.cta-square-gold {
    background: #c2935c;
    color: #fff;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
}

.cta-square-gold:hover {
    background: #fff;
    color: #111;
}

.trust-badge {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #c2935c;
    font-size: 0.9rem;
}

/* Right Side Cards */
.exterior-services-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ext-card {
    background: #222;
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
    border-left: 0 solid #c2935c;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ext-card:hover {
    background: #2a2a2a;
    border-left: 10px solid #c2935c;
    padding-left: 50px; /* Shifts content slightly for effect */
}

.ext-icon i {
    font-size: 2.5rem;
    color: #c2935c;
}

.ext-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #fff;
}

.ext-info p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.5;
}
/* SECTION BASE */
.exterior-works-section.reveal-exterior {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s ease;
}

.exterior-works-section.active {
    opacity: 1;
    transform: translateY(0);
}

/* LEFT CONTENT (STRONG FADE IN) */
.exterior-content {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s ease;
}

.exterior-works-section.active .exterior-content {
    opacity: 1;
    transform: translateX(0);
}

/* TEXT STAGGER */
.exterior-content > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.exterior-works-section.active .exterior-content > * {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger reveal for all 8 exterior cards */
.exterior-works-section.active .ext-card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.exterior-works-section.active .ext-card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.exterior-works-section.active .ext-card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.exterior-works-section.active .ext-card:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.exterior-works-section.active .ext-card:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.exterior-works-section.active .ext-card:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
.exterior-works-section.active .ext-card:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }
.exterior-works-section.active .ext-card:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.8s; }

/* RIGHT CARDS (VERTICAL TIMELINE REVEAL 🔥) */
.ext-card {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.6s ease;
    border-left: 0 solid #c2935c;
}

/* Stagger vertical reveal */
.exterior-works-section.active .ext-card:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}
.exterior-works-section.active .ext-card:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}
.exterior-works-section.active .ext-card:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}
.exterior-works-section.active .ext-card:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.65s;
}
.exterior-works-section.active .ext-card:nth-child(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}
.exterior-works-section.active .ext-card:nth-child(6) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.95s;
}

/* Optional line grow effect (cool 🔥) */
.exterior-services-grid {
    position: relative;
}

.exterior-services-grid::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0%;
    background: #c2935c;
    transition: height 1s ease;
}

.exterior-works-section.active .exterior-services-grid::before {
    height: 100%;
}
/* Responsive */
@media (max-width: 1024px) {
    .exterior-layout {
        flex-direction: column;
    }
    .exterior-content {
        position: static;
        margin-bottom: 50px;
    }
}


:root {
    --brand-gold: #c69a61;
    --dark-text: #1a1a1a;
    --light-text: #666;
    --bg-soft: #fdfbf9;
}

.why-choose-us {
    padding: 100px 5%;
    background-color: var(--bg-soft);
    font-family: 'Inter', sans-serif; /* Recommended clean font */
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-header .subtitle {
    display: block;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--dark-text);
    font-weight: 800;
    max-width: 700px;
    margin: 0 auto 20px;
}

.underline {
    width: 50px;
    height: 4px;
    background: var(--brand-gold);
    margin: 0 auto;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    position: relative;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 0px; /* Square/Minimalist look */
    border: 1px solid #eee;
    text-align: left; /* Alignment change for better readability */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 0%;
    background: var(--brand-gold);
    transition: all 0.4s ease;
    z-index: 0;
    opacity: 0.03;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.feature-card:hover::before {
    height: 100%;
}

.card-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    font-weight: 900;
    color: #f0f0f0;
    z-index: 0;
    transition: color 0.3s ease;
}

.feature-card:hover .card-number {
    color: rgba(198, 154, 97, 0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    color: var(--brand-gold);
}

.icon-box svg {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.feature-card p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}
/* SECTION BASE */
.why-choose-us.reveal-why {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s ease;
}

.why-choose-us.active {
    opacity: 1;
    transform: translateY(0);
}

/* HEADER CENTER FADE */
.section-header {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.why-choose-us.active .section-header {
    opacity: 1;
    transform: translateY(0);
}

/* HEADER STAGGER */
.section-header > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.why-choose-us.active .section-header > * {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-us.active .subtitle { transition-delay: 0.2s; }
.why-choose-us.active h2 { transition-delay: 0.4s; }
.why-choose-us.active .underline { transition-delay: 0.6s; }

/* GRID RISE EFFECT 🔥 */
.feature-card {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.6s ease;
}

/* Stagger grid */
.why-choose-us.active .feature-card:nth-child(1) {
    opacity: 1; transform: translateY(0) scale(1);
    transition-delay: 0.2s;
}
.why-choose-us.active .feature-card:nth-child(2) {
    opacity: 1; transform: translateY(0) scale(1);
    transition-delay: 0.3s;
}
.why-choose-us.active .feature-card:nth-child(3) {
    opacity: 1; transform: translateY(0) scale(1);
    transition-delay: 0.4s;
}
.why-choose-us.active .feature-card:nth-child(4) {
    opacity: 1; transform: translateY(0) scale(1);
    transition-delay: 0.5s;
}
.why-choose-us.active .feature-card:nth-child(5) {
    opacity: 1; transform: translateY(0) scale(1);
    transition-delay: 0.6s;
}
.why-choose-us.active .feature-card:nth-child(6) {
    opacity: 1; transform: translateY(0) scale(1);
    transition-delay: 0.7s;
}

/* ICON POP (extra polish ✨) */
.icon-box {
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.5s ease;
}

.why-choose-us.active .feature-card .icon-box {
    transform: scale(1);
    opacity: 1;
}

/* slight delay for icon */
.why-choose-us.active .feature-card:nth-child(1) .icon-box { transition-delay: 0.3s; }
.why-choose-us.active .feature-card:nth-child(2) .icon-box { transition-delay: 0.4s; }
.why-choose-us.active .feature-card:nth-child(3) .icon-box { transition-delay: 0.5s; }
.why-choose-us.active .feature-card:nth-child(4) .icon-box { transition-delay: 0.6s; }
.why-choose-us.active .feature-card:nth-child(5) .icon-box { transition-delay: 0.7s; }
.why-choose-us.active .feature-card:nth-child(6) .icon-box { transition-delay: 0.8s; }
/* Responsive adjustments */
@media (max-width: 768px) {
    .section-header h2 { font-size: 2rem; }
    .features-grid { grid-template-columns: 1fr; }
}



.premium-cta {
    padding: 120px 8%;
    background-color: #0f0f0f; /* Deeper black for luxury feel */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.cta-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

/* Text Styling */
.cta-tag {
    color: #c69a61;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.premium-cta h2 {
    font-size: 4rem; /* Bold, Large Typography */
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

.gold-text {
    color: #c69a61;
    font-style: italic;
    font-family: serif; /* Mixing fonts adds a designer touch */
}

.premium-cta p {
    font-size: 1.1rem;
    color: #888;
    max-width: 500px;
    line-height: 1.6;
}

/* Card Styling */
.cta-card-side {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-box {
    text-decoration: none;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
    border-radius: 4px;
}

.cta-box.primary {
    background: #c69a61;
    color: #fff;
}

.cta-box.primary:hover {
    background: #d4a873;
    transform: translateX(10px);
}

.box-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 5px;
}

.box-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.box-arrow {
    font-size: 1.8rem;
}

.cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.cta-box.outline {
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    justify-content: center;
    gap: 10px;
}

.cta-box.outline:hover {
    border-color: #c69a61;
    background: rgba(198, 154, 97, 0.05);
}

.cta-box.whatsapp {
    background: #c69a61;
    color: #fff;
    justify-content: center;
    gap: 10px;
}

.cta-box.whatsapp:hover {
    filter: brightness(1.1);
    transform: translateY(-5px);
}
/* SECTION BASE */
.premium-cta.reveal-cta {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s ease;
}

.premium-cta.active {
    opacity: 1;
    transform: translateY(0);
}

/* LEFT TEXT (POWER ENTRY) */
.cta-text-side {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s ease;
}

.premium-cta.active .cta-text-side {
    opacity: 1;
    transform: translateX(0);
}

/* TEXT STAGGER */
.cta-text-side > * {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.premium-cta.active .cta-text-side > * {
    opacity: 1;
    transform: translateY(0);
}

.premium-cta.active .cta-tag { transition-delay: 0.2s; }
.premium-cta.active h2 { transition-delay: 0.4s; }
.premium-cta.active p { transition-delay: 0.6s; }

/* RIGHT CARD (SLIDE + SCALE 🔥) */
.cta-card-side {
    opacity: 0;
    transform: translateX(80px) scale(0.95);
    transition: all 1s ease;
}

.premium-cta.active .cta-card-side {
    opacity: 1;
    transform: translateX(0) scale(1);
    transition-delay: 0.3s;
}

/* PRIMARY CTA POP */
.cta-box.primary {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.premium-cta.active .cta-box.primary {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.6s;
}

/* BUTTONS STAGGER */
.cta-row .cta-box {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.premium-cta.active .cta-row .cta-box:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.premium-cta.active .cta-row .cta-box:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}

/* Subtle pulse for main CTA (conversion boost 💰) */
@keyframes ctaPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.premium-cta.active .cta-box.primary {
    animation: ctaPulse 2s ease-in-out 1.2s infinite;
}
/* Mobile Responsiveness */
@media (max-width: 992px) {
    .cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .premium-cta h2 { font-size: 2.5rem; }
    .premium-cta p { margin: 0 auto 30px; }
}