:root {
    --bg-color: #ffffff;
    --bg-light: #f9f9f9;
    --accent-color: #2D6A4F;
    --text-color: #1a1a1a;
    --secondary-text: #666666;
    --nav-height: 80px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    width: 100%;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-family: 'Playfair Display', serif;
    color: var(--text-color);
    text-align: center;
}

.bg-light { background-color: #f8f9fa; }

/* Typography */
h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

.reveal-text {
    opacity: 0;
    visibility: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s;
}
/* 3D Canvas Styling */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 5;
    pointer-events: none; /* Crucial: clicks go through to buttons */
    opacity: 0;           /* Hidden until loaded */
    transition: opacity 1.5s ease;
}

/* Cinematic Layout Utilities */
.section-title { font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 50px; text-align: center; font-family: 'Playfair Display', serif; }
.bg-white { background-color: #ffffff; }
.bg-light { background-color: #f8f9fa; }

/* Nav */
header {
    position: fixed; top: 0; width: 100%; height: var(--nav-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100; display: flex; align-items: center; border-bottom: 1px solid #eee;
}
nav { width: 90%; max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--accent-color); letter-spacing: 2px;}
.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a { text-decoration: none; color: var(--text-color); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent-color); }

/* 1. CINEMATIC HERO (KEN BURNS) */
.hero-v2 {
    position: relative; width: 100%; height: 100vh;
    overflow: hidden; background: #000;
}
.hero-v2 .swiper { width: 100%; height: 100%; }
.hero-v2 .swiper-slide { position: relative; overflow: hidden; }
.hero-v2 .swiper-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    animation: kenBurns 20s infinite alternate ease-in-out;
    opacity: 0.7;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-v2-content {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10; text-align: center; color: white;
    width: 90%; max-width: 1000px;
}

.hero-v2-content h1 {
    font-size: clamp(3.5rem, 10vw, 7rem);
    line-height: 1; margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}
.hero-v2-content p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300; letter-spacing: 2px;
    opacity: 0; transform: translateY(20px);
}
.scroll-indicator-v2 { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 10; font-size: 0.7rem; color: rgba(255,255,255,0.6); letter-spacing: 3px; text-transform: uppercase; }
.scroll-indicator .line { width: 1px; height: 50px; background: var(--accent-color); margin: 10px auto 0; animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* 2. PARALLAX STORY SECTION */
.parallax-section { padding: 150px 0; background: white; overflow: hidden; }
.parallax-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.parallax-img-wrap { position: relative; height: 600px; overflow: hidden; border-radius: 4px; }
.parallax-img-wrap img { width: 100%; height: 130%; object-fit: cover; position: absolute; top: -15%; }
.parallax-content h2 { font-size: clamp(2.5rem, 6vw, 4rem); line-height: 1.1; margin-bottom: 30px; font-family: 'Playfair Display', serif; }
.parallax-content p { font-size: 1.2rem; color: var(--secondary-text); margin-bottom: 40px; }

/* Standard Sections */
.standard-section { padding: 120px 0; position: relative; z-index: 20; background: var(--bg-color); }
.bg-light { background: var(--bg-light); }
.container { width: 90%; max-width: 1400px; margin: 0 auto; }
.section-title { font-size: 3rem; text-align: center; margin-bottom: 60px; color: var(--accent-color); }

/* 3. SERVICES SECTION V2 */
.services-v2 { padding: 120px 0; background: #f8f9fa; }
.services-v2-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
}
.service-item-v2 {
    position: relative; height: 500px; overflow: hidden; border-radius: 12px;
    background: #000; cursor: pointer;
}
.service-item-v2 img {
    width: 100%; height: 100%; object-fit: cover; opacity: 0.6;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-item-v2:hover img { transform: scale(1.1); }
.service-item-v2-content {
    position: absolute; bottom: 50px; left: 50px; right: 50px;
    color: white; z-index: 5;
}
.service-item-v2-content h3 { font-size: 2.2rem; margin-bottom: 15px; font-family: 'Playfair Display', serif; }
.service-item-v2-content p { font-size: 1rem; opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.service-item-v2:hover .service-item-v2-content p { opacity: 1; transform: translateY(0); }

/* 4. SHOWCASE SLIDER */
.showcaseSwiper { width: 100%; padding-bottom: 50px; overflow: visible !important; }
.showcaseSwiper .swiper-slide { width: 60%; transition: opacity 0.5s ease, transform 0.5s ease; opacity: 0.4; }
.showcaseSwiper .swiper-slide-active { opacity: 1; transform: scale(1.05); z-index: 2; }
.showcaseSwiper img { width: 100%; height: 500px; object-fit: cover; box-shadow: 0 15px 40px rgba(0,0,0,0.1); border-radius: 4px; }

/* 5. HIGHLIGHTS COUNTER */
.highlights-flex { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 40px; text-align: center; }
.counter-box { flex: 1; min-width: 200px; }
.counter-wrap { display: flex; justify-content: center; align-items: baseline; color: var(--accent-color); margin-bottom: 15px; border-bottom: 2px solid #eee; padding-bottom: 20px;}
.counter { font-size: 4rem; margin: 0; line-height: 1; }
.counter-wrap span { font-size: 3rem; font-family: 'Playfair Display', serif; font-weight: 700; }
.counter-box p { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; color: var(--secondary-text); }

/* ABOUT PAGE SPECIFIC (CINEMATIC) */
.about-banner-hero {
    position: relative; width: 100%; height: 70vh;
    overflow: hidden; background: #000;
}
.about-banner-hero img {
    width: 100%; height: 100%; object-fit: cover;
    animation: kenBurns 20s infinite alternate ease-in-out;
    opacity: 0.7;
}

.about-hero-content {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    z-index: 10; text-align: center; color: white; width: 90%;
}
.about-hero-content h1 { font-size: clamp(3.5rem, 8vw, 6rem); margin-bottom: 20px; font-family: 'Playfair Display', serif; }

/* Split View Story */
.about-split-view { padding: 120px 0; background: white; }
.about-split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-split-img { position: relative; height: 600px; overflow: hidden; border-radius: 8px; }
.about-split-img img { width: 100%; height: 100%; object-fit: cover; }
.about-split-text h2 { font-size: 3rem; margin-bottom: 30px; line-height: 1.1; }
.about-split-text p { font-size: 1.15rem; color: var(--secondary-text); margin-bottom: 25px; line-height: 1.6; }

/* Philosophy Parallax */
.about-philosophy { padding: 150px 0; background: #f8f9fa; }
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.phi-card { background: white; padding: 50px 40px; border-radius: 12px; transition: transform 0.4s; overflow: hidden; position: relative; }
.phi-card:hover { transform: translateY(-15px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.phi-card i { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 25px; display: block; }
.phi-card h3 { font-size: 1.6rem; margin-bottom: 15px; }

/* Team Refined */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 60px; }
.team-card { position: relative; overflow: hidden; border-radius: 12px; height: 500px; background: #000; }
.team-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: transform 0.8s; }
.team-card:hover img { transform: scale(1.1); }
.team-info-overlay { 
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px; 
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: white; transform: translateY(20px); transition: transform 0.4s;
}
.team-card:hover .team-info-overlay { transform: translateY(0); }
.team-info-overlay h4 { font-size: 1.5rem; margin-bottom: 5px; }
.team-info-overlay p { font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; color: var(--accent-color); }

/* PRODUCT PAGE SPECIFIC (CLEAN LAYOUT) */
.prod-clean-hero { position: relative; width: 100%; height: 100vh; display: flex; align-items: center; overflow: hidden; background: #000; }
.hero-bg-zoom { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-bg-zoom img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%); z-index: 2; }
.hero-content-centered { position: relative; z-index: 5; color: white; }
.hero-title { font-size: clamp(3.5rem, 8vw, 6rem); line-height: 1.1; margin-bottom: 20px; }
.hero-sub { font-size: 1.4rem; color: #eaeaea; }

.showcase-section { position: relative; width: 100%; height: 90vh; overflow: hidden; display: flex; align-items: center; justify-content: center; margin: 80px 0; }
.showcase-img-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; overflow: hidden; }
.showcase-bg { width: 100%; height: 100%; object-fit: cover; }
.showcase-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 2; }
.showcase-text { position: relative; z-index: 5; color: white; text-align: center; }
.showcase-reveal-text { font-size: clamp(3rem, 6vw, 5rem); text-shadow: 0 10px 30px rgba(0,0,0,0.2); margin: 0; }
.product-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.prod-card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.06); transition: transform 0.4s ease, box-shadow 0.4s ease; cursor: pointer; }
.prod-img { width: 100%; height: 260px; overflow: hidden; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.prod-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.prod-card:hover .prod-img img { transform: scale(1.05); }
.prod-info { padding: 30px 25px; text-align: left; }
.prod-info h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--text-color); }
.prod-info p { color: var(--secondary-text); font-size: 1rem; }

.productSwiper { width: 100%; padding-bottom: 50px; overflow: visible !important; }
.productSwiper .swiper-slide { width: 75%; opacity: 0.4; transition: opacity 0.5s ease; }
.productSwiper .swiper-slide-active { opacity: 1; z-index: 2; }
.productSwiper img { width: 100%; height: 600px; object-fit: cover; box-shadow: 0 15px 40px rgba(0,0,0,0.12); border-radius: 12px; }

/* Custom Image Grid styling requested natively */
.gallery-image-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; }
.gallery-item { overflow: hidden; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.06); height: 320px; transition: box-shadow 0.4s ease; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; cursor: pointer; }
.gallery-item:hover { box-shadow: 0 15px 35px rgba(0,0,0,0.12); }
.gallery-item:hover img { transform: scale(1.05); }

.feature-icon-card { text-align: center; padding: 40px 20px; transition: transform 0.4s; border-radius: 4px; }
.feature-icon-card .icon { font-size: 3rem; margin-bottom: 20px; }
.feature-icon-card h4 { font-size: 1.3rem; margin-bottom: 10px; color: var(--text-color); }
.feature-icon-card p { color: var(--secondary-text); font-size: 1rem; }
.feature-icon-card:hover { transform: translateY(-10px); background: white; box-shadow: 0 15px 30px rgba(0,0,0,0.05); border-top: 3px solid var(--accent-color); }

/* Footer */
footer { background: var(--text-color); padding: 80px 0 40px; color: white; border-top: 5px solid var(--accent-color); }
.footer-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 40px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 2rem; color: white; letter-spacing: 2px; }
.footer-contact p { margin-bottom: 8px; color: #ccc; font-size: 0.95rem; }

/* =============================================
   CINEMATIC GALLERY (SCROLL TRANSFORM)
============================================= */
.gallery-page { background: #f8f9fa; }

/* Hero Section */
.gallery-hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.galleryHeroSwiper {
    width: 100%;
    height: 100%;
}

.galleryHeroSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.galleryHeroSwiper .swiper-pagination-bullet { background: white; }
.galleryHeroSwiper .swiper-pagination-bullet-active { background: var(--accent-color); }

/* Transformation Container */
#transformation-container {
    position: relative;
    width: 100%;
}

.transformation-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.img-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.img-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* The "After" image sits on top and is masked via clip-path */
.after-img-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    clip-path: inset(0 0 0 100%); /* Start fully hidden from right */
    -webkit-clip-path: inset(0 0 0 100%);
}

.after-img-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text Overlays */
.transformation-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
    color: white;
    pointer-events: none;
}

.transformation-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.transformation-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.transformation-desc {
    font-size: 1.1rem;
    max-width: 400px;
    opacity: 0;
    transform: translateY(20px);
}

/* Grid Preview & CTA */
.grid-preview-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.masonry-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Final CTA */
.gallery-cta {
    padding: 150px 0;
    text-align: center;
    background: white;
}

/* =============================================
   CONTACT PAGE STYLES (BANNER & OVERLAP)
============================================= */
.contact-banner-hero {
    height: 70vh;
    width: 100%;
    position: relative;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Sophisticated dark overlay */
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

/* Overlapping Form */
.contact-form-overlap {
    max-width: 900px;
    margin: -120px auto 80px;
    position: relative;
    z-index: 10;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.form-title-centered {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

/* Horizontal Info Row */
.contact-info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

.contact-item-card { 
    background: white; 
    padding: 35px; 
    border-radius: 12px; 
    border: 1px solid #eee; 
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.contact-item-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); 
    border-color: var(--accent-color);
}

.contact-item-card i { font-size: 1.8rem; color: var(--accent-color); margin-bottom: 20px; }
.contact-item-card h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--secondary-text); margin-bottom: 10px; }
.contact-item-card p { font-size: 1.1rem; color: var(--text-color); line-height: 1.4; }

/* Floating Label Form */
.floating-label-group { position: relative; margin-bottom: 30px; }
.floating-label-group input, .floating-label-group textarea {
    width: 100%; padding: 15px 0; font-size: 1.05rem; border: none; border-bottom: 2px solid #ddd; 
    background: transparent; outline: none; transition: border-color 0.3s;
}
.floating-label-group label {
    position: absolute; left: 0; top: 15px; color: #999; font-size: 1rem; 
    pointer-events: none; transition: all 0.3s ease;
}
.floating-label-group input:focus + label,
.floating-label-group input:not(:placeholder-shown) + label,
.floating-label-group textarea:focus + label,
.floating-label-group textarea:not(:placeholder-shown) + label {
    top: -15px; font-size: 0.8rem; color: var(--accent-color); font-weight: 600;
}
.floating-label-group input:focus, .floating-label-group textarea:focus { border-color: var(--accent-color); }

/* Full-width Map */
.map-full-section { width: 100%; height: 500px; background: #eee; }
.map-full-section iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.5) contrast(1.1); }

/* Quick Call CTA */
.quick-call-cta { padding: 120px 0; background: var(--accent-color); color: white; text-align: center; }
.quick-call-cta h2 { font-size: 3.5rem; margin-bottom: 40px; color: white; }

/* --- FULL WEBSITE RESPONSIVENESS (MOBILE-FIRST TUNING) --- */

/* 1. Global Stability */
html, body { overflow-x: hidden; width: 100%; }
img { max-width: 100%; height: auto; }
iframe { width: 100%; border: none; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; width: 100%; }

/* 2. Hamburger & Mobile Nav Styles */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 10px;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--accent-color);
    transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 3. Tablet & Small Laptop (1024px) */
@media (max-width: 1024px) {
    .container { padding: 0 30px; }
    .about-split-grid { gap: 40px; }
    .philosophy-grid, .team-grid, .product-cards-grid, .services-v2-grid { grid-template-columns: repeat(2, 1fr); }
    .about-img { height: 450px; }
    .hero-v2-content h1 { font-size: 4.5rem; }
}

/* 4. Mobile / Tablet Portrait (768px) */
@media (max-width: 768px) {
    header { height: 75px; }
    .logo { font-size: 1.2rem; }

    /* Hamburger & Mobile Menu Drawer */
    .hamburger { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 80%; max-width: 400px; height: 100vh;
        background: white; flex-direction: column; justify-content: center;
        align-items: center; transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1000; gap: 30px; border: none;
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.4rem; font-weight: 600; }

    /* Grid Stacking */
    .services-v2-grid, .philosophy-grid, .team-grid, .product-cards-grid,
    .about-split-grid, .why-us-grid, .process-steps, .footer-grid, 
    .contact-info-row, .services-grid, .projects-grid, .about-preview { 
        grid-template-columns: 1fr; 
        gap: 30px;
    }

    /* Section & Content Scaling */
    .section-title { font-size: 2.2rem; margin-bottom: 40px; }
    .hero-v2-content h1, .hero-title, .hero-content h1 { font-size: 3rem; }
    .section-padding { padding: 100px 0; }

    /* About & Contact Specifics */
    .about-img { height: 350px; }
    .contact-banner-hero { height: 45vh; }
    .contact-form-overlap { margin: -60px 0 60px; padding: 40px 25px; width: 100%; }
    .form-title-centered { font-size: 1.8rem; }
    .quick-call-cta h2 { font-size: 2.4rem; }

    /* Gallery Adjustments */
    .transformation-content { left: 5%; width: 90%; text-align: left; }
    .transformation-title { font-size: 2.2rem; }
    .status-indicator { bottom: 20px; right: 20px; }

    /* Hamburger Animation Trigger */
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* 5. Mobile Adjustments (480px) */
@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .section-padding { padding: 80px 0; }
    .btn-primary, .btn-premium, .btn-outline { width: 100%; text-align: center; padding: 15px 20px; }
    
    .hero-v2-content h1, .hero-title, .hero-content h1 { font-size: 2.5rem; }
    .hero-v2-content p, .hero-sub { font-size: 1rem; letter-spacing: 1px; }

    .team-card { height: 420px; }
    .phi-card { padding: 35px 20px; }
    .masonry-grid { grid-template-columns: 1fr; }
    
    .footer-flex { flex-direction: column; text-align: center; gap: 20px; }
}

/* 6. Fluid Logic (Safety Clamp) */
h1 { font-size: clamp(2.5rem, 8vw, 6.5rem); }
h2 { font-size: clamp(2rem, 6vw, 4rem); }
p { font-size: clamp(0.95rem, 1vw, 1.15rem); }
/* --- NEW PREMIUM HOMEPAGE (REDESIGN) --- */

:root {
    --bg-premium: #f8f9fa;
}

/* 1. CINEMA HERO */
.new-hero {
    position: relative; width: 100%; height: 100vh;
    display: flex; align-items: center; justify-content: center;
    background: #000; overflow: hidden;
}
.new-hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=2000') center/cover no-repeat;
    animation: zoomHero 25s infinite alternate ease-in-out;
    opacity: 0.65;
}
.new-hero-content {
    position: relative; z-index: 10; text-align: center; color: white;
    width: 90%; max-width: 1100px;
}
.new-hero-content h1 {
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 0.95; margin-bottom: 35px;
    font-family: 'Playfair Display', serif;
}
.new-hero-content p {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 300; letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 50px;
}

/* 2. STORYTELLER SERVICES */
.services-section { background: var(--bg-premium); padding: 160px 0; }
.services-new-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px;
}
.service-card-premium {
    background: white; padding: 70px 50px; border-radius: 8px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.03); text-align: center;
}
.service-card-premium:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
    border-color: var(--accent-color);
}
.service-card-premium i { font-size: 3.5rem; color: var(--accent-color); margin-bottom: 35px; }
.service-card-premium h3 { font-size: 2rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.service-card-premium p { color: var(--secondary-text); font-size: 1.1rem; }

/* 3. CURATED COLLECTION (PROJECTS) */
.curated-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.curated-item { position: relative; height: 650px; overflow: hidden; border-radius: 12px; cursor: pointer; }
.curated-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.curated-item:hover img { transform: scale(1.1); }
.item-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 50px;
    background: linear-gradient(0deg, rgba(0,0,0,0.8), transparent);
    color: white; opacity: 0; transform: translateY(20px); transition: 0.5s;
}
.curated-item:hover .item-overlay { opacity: 1; transform: translateY(0); }

/* 4. WHY CHOOSE US (STATS) */
.why-us-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.why-card { text-align: center; }
.why-card h2 { font-size: 4rem; color: var(--accent-color); margin-bottom: 10px; }
.why-card p { font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; }

/* 5. THE DESIGN JOURNEY (PROCESS) */
.journey-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 80px; position: relative; }
.journey-step { text-align: left; }
.journey-num { font-size: 5rem; color: rgba(45, 106, 79, 0.1); margin-bottom: 10px; font-family: 'Playfair Display', serif; line-height: 1; }
.journey-step h3 { font-size: 1.8rem; margin-bottom: 15px; }
.journey-step p { color: var(--secondary-text); }

/* 5. CTAs & MISC */
.cta-inner-premium {
    border-radius: 20px; background: var(--accent-color); padding: 120px 80px;
    text-align: center; color: white;
}
.cta-inner-premium h2 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 50px; }

.btn-premium-light {
    display: inline-block; padding: 25px 70px; background: white; color: var(--accent-color);
    text-decoration: none; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
    transition: all 0.3s; border-radius: 4px;
}
.btn-primary-solid {
    display: inline-block; padding: 16px 40px; background-color: var(--accent-color);
    color: white; text-decoration: none; font-weight: 600; border-radius: 8px;
    text-transform: uppercase; letter-spacing: 1.5px; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none; cursor: pointer; font-size: 0.9rem;
}
.btn-primary-solid:hover { background-color: #24553f; transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }

/* --- PREMIUM TESTIMONIAL --- */
.testimonial-premium { max-width: 900px; margin: 0 auto; text-align: center; position: relative; padding: 40px 20px; }
.quote-icon { font-size: 4rem; color: var(--accent-color); opacity: 0.2; margin-bottom: 20px; display: block; height: 40px; }
.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.3;
    color: var(--text-color);
    margin-bottom: 40px;
}
.testimonial-author {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-text);
}
.testimonial-author strong { color: var(--text-color); font-weight: 600; }


/* Ken Burns Root Animation */
@keyframes zoomHero { from { transform: scale(1); } to { transform: scale(1.1); } }

/* REVEAL UTILITIES */
.reveal-up { opacity: 0; transform: translateY(50px); }

/* MOBILE REFINEMENTS */
@media (max-width: 768px) {
    .services-section { padding: 80px 0; }
    .curated-grid, .journey-bar, .footer-grid { 
        grid-template-columns: 1fr !important; 
        gap: 50px; 
    }
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px;
    }
    .why-card h2 { font-size: 3rem; }
    .footer-brand-section, .footer-links, .footer-contact-details { 
        text-align: center; 
    }
    .cta-inner-premium { padding: 80px 30px; }
}

@media (max-width: 480px) {
    .new-hero-content h1 { font-size: 3.5rem; }
    .section-title { font-size: 2.2rem; }
    .why-us-grid { grid-template-columns: 1fr !important; }
    .why-card h2 { font-size: 2.8rem; }
}

