/* --- RESET & BASICS --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Montserrat', sans-serif; 
    background-color: #f9f9f9; 
    color: #333; 
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER WRAPPER --- */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* --- TOP HEADER (Dark Grey) --- */
.top-header {
    background-color: #2d2d2d; 
    color: #e0e0e0;
    font-size: 0.8rem;
    padding: 8px 0;
}

.top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reg-badge {
    color: #ff6600; /* Orange Accent */
    font-weight: 600;
}

.separator { color: #555; }
.ticker-text { color: #fff; font-weight: 500; }

.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-right a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-right a:hover { color: #ff6600; }

/* --- MAIN HEADER (White & Orange) --- */
.main-header {
    background-color: #ffffff;
    padding: 10px 0;
    position: relative;
    border-bottom: 3px solid #ff6600;
}

.main-container {
    display: flex;
    justify-content: space-between; /* Pushes Logo Left, Menu/Nav Right */
    align-items: center;
    height: 60px;
}

/* LOGO IMAGE */
.main-logo-img {
    height: 139px; 
    width: auto;
    display: block;
}

/* DESKTOP NAV */
.desktop-nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-link:hover { color: #ff6600; }

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ff6600;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* CTA BUTTON */
.btn-creative {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 2px solid #ff6600;
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-creative .icon, .btn-creative .text {
    color: #ff6600;
    font-weight: 700;
}

.btn-creative:hover {
    background: #ff6600;
}

.btn-creative:hover .icon, .btn-creative:hover .text {
    color: #fff;
}

/* MOBILE TOGGLE (Hidden on Desktop) */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

/* --- OFFCANVAS MENU (MOBILE) --- */
.offcanvas-menu {
    position: fixed;
    top: 0;
    left: -100%; /* Initially hidden to the Left */
    width: 90%; /* Covers 90% of screen width */
    height: 100vh;
    background-color: #ffffff;
    z-index: 2000;
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    transition: left 0.4s ease-in-out; /* Slide Animation */
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.offcanvas-menu.active {
    left: 0; /* Slide into view */
}

/* Menu Header */
.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.mobile-logo { height: 120px; }
.close-btn { background: none; border: none; font-size: 2rem; color: #333; cursor: pointer; }

/* Menu Links */
.mobile-nav { display: flex; flex-direction: column; gap: 20px; }
.mobile-nav a { 
    text-decoration: none; 
    color: #333; 
    font-weight: 600; 
    font-size: 1.1rem; 
    border-bottom: 1px solid #f0f0f0; 
    padding-bottom: 10px; 
}
.mobile-nav a:hover { color: #ff6600; padding-left: 10px; transition: 0.3s; }

/* Menu Contact Area */
.mobile-contact { margin-top: auto; padding-top: 20px; border-top: 1px solid #eee; }
.mobile-btn { justify-content: center; margin-bottom: 15px; width: 100%; }
.support-mail { font-size: 0.85rem; color: #666; text-align: center; }

/* DARK OVERLAY */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.menu-overlay.active { opacity: 1; visibility: visible; }

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 768px) {
    /* Hide Desktop Elements */
    .desktop-nav, .action-area, .top-right, .separator { display: none; }
    
    /* Show Mobile Elements */
    .mobile-toggle { display: block; }
    
    /* Mobile Layout Tweaks */
    .main-container { padding: 0 15px; }
    
    /* Logo adjustments for mobile */
    .main-logo-img { height: 99px; }
    
    /* Top Header Tweaks */
    .top-left { font-size: 0.7rem; justify-content: center; width: 100%;
    flex-wrap: wrap;}
}





/* --- FULL WIDTH SLIDER STYLES --- */
.full-width-slider {
    position: relative;
    width: 100%;
    /* Adjust this height as needed: 
       600px is standard, 
       100vh = Full Screen Height */
    height: 600px; 
    overflow: hidden;
    background-color: #000; /* Dark background behind images */
}

.slider-wrapper {
    width: 100%;
    height: 100%;
}

.fw-slide {
    display: none; /* Hidden by default */
    width: 100%;
    height: 100%;
    animation: fadeEffect 1.5s; /* Smooth fade transition */
}

.fw-slide.active {
    display: block; /* Show active slide */
}

.fw-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers area without stretching */
    object-position: center;
}

/* FADE ANIMATION */
@keyframes fadeEffect {
    from {opacity: .4} 
    to {opacity: 1}
}

/* --- NAVIGATION ARROWS --- */
.slider-arrow {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    background-color: rgba(0,0,0,0.3); /* Transparent dark bg */
    border: none;
    user-select: none;
    z-index: 10;
}

.slider-arrow.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.slider-arrow.prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.slider-arrow:hover {
    background-color: rgba(0,0,0,0.8);
}

/* --- DOTS --- */
.slider-dots-container {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #ff6600; /* Your Orange Theme Color */
    transform: scale(1.2);
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .full-width-slider {
        height: 250px; /* Smaller height for mobile phones */
    }
}



/* --- ABOUT SECTION --- */
.about-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px; /* Space between image and text */
}

/* 1. LEFT SIDE: IMAGE AREA */
.about-image {
    flex: 1;
    position: relative;
    padding-left: 20px; /* Space for the badge overlap */
    padding-bottom: 20px;
}

.img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border: 5px solid #fff; /* White border frame */
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.img-frame:hover .about-img {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Experience Badge (Floating Box) */
.exp-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #ff6600; /* Orange Theme */
    color: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 10px 10px 20px rgba(255, 102, 0, 0.3);
    text-align: center;
    z-index: 2;
    min-width: 140px;
}

.exp-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.exp-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 2. RIGHT SIDE: TEXT CONTENT */
.about-content {
    flex: 1;
}

.section-subtitle {
    color: #ff6600;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #222;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-desc {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Feature List (Checkmarks) */
.about-features {
    list-style: none;
    margin: 25px 0 35px 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns on desktop */
    gap: 15px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #333;
}

.about-features i {
    color: #ff6600; /* Orange Checkmark */
    font-size: 1.2rem;
}

/* Helper Class for Button Margin */
.mt-4 {
    margin-top: 1.5rem;
    display: inline-block;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column; /* Stack image on top of text */
        gap: 40px;
    }
    
    .about-image {
        padding-left: 0;
        width: 100%;
        max-width: 600px; /* Limit image width on tablets */
        margin: 0 auto;
    }
    
    .exp-badge {
        left: -10px; /* Adjust badge position */
        bottom: 20px;
        padding: 15px;
    }
    
    .exp-badge .years { font-size: 2rem; }
}

@media (max-width: 600px) {
    .section-title { font-size: 2rem; }
    .about-features { grid-template-columns: 1fr; } /* Single column list on mobile */
    .exp-badge {
        position: relative; /* Stop floating on very small screens */
        bottom: auto; left: auto;
        margin-top: -30px;
        margin-left: 20px;
        display: inline-block;
    }
}


/* --- BUTTON STYLES --- */

/* Primary Orange Button */
.btn-primary {
    display: inline-block;        /* Makes it a block so padding works */
    background-color: #ff6600;    /* Orange Background */
    color: #ffffff;               /* White Text */
    padding: 12px 30px;           /* Size of the button */
    border-radius: 5px;           /* Rounded corners */
    text-decoration: none;        /* REMOVES THE BLUE UNDERLINE */
    font-weight: 600;             /* Bold text */
    font-size: 1rem;
    border: 2px solid #ff6600;    /* Border matches background */
    transition: all 0.3s ease;    /* Smooth hover effect */
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.3); /* Subtle shadow */
    margin-top: 20px;             /* Space above the button */
}

/* Hover Effect (Mouse over) */
.btn-primary:hover {
    background-color: #e65c00;    /* Darker Orange */
    border-color: #e65c00;
    transform: translateY(-3px);  /* Moves up slightly */
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.4);
    color: #fff;                  /* Keep text white */
}


/* --- ULTRA CREATIVE CARDS --- */
.creative-schemes {
    padding: 80px 0;
    background-color: #f4f6f8;
}

.cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* 1. CARD CONTAINER */
.c-card {
    background: #fff;
    width: 320px;
    border-radius: 20px;
    overflow: visible; /* Allows icon to float outside */
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy hover */
    position: relative;
    margin-top: 30px; /* Space for floating icon on top cards if needed */
}

.c-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* 2. CURVED HEADER */
.c-card-header {
    height: 120px;
    border-radius: 20px 20px 50% 50% / 20px 20px 40px 40px; /* Creative Curve */
    display: flex;
    justify-content: center;
    padding-top: 20px;
    position: relative;
}

.header-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Header Colors */
.bg-blue   { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.bg-orange { background: linear-gradient(135deg, #ff9966, #ff5e62); }
.bg-purple { background: linear-gradient(135deg, #667eea, #764ba2); }

/* 3. FLOATING ICON (The 3D Element) */
.floating-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 80px; /* Positions it halfway down the header */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 10;
}

.bg-blue ~ .floating-icon   { color: #00f2fe; }
.bg-orange ~ .floating-icon { color: #ff5e62; }
.bg-purple ~ .floating-icon { color: #764ba2; }

/* 4. BODY CONTENT */
.c-card-body {
    padding: 50px 25px 30px 25px; /* Top padding clears the icon */
    text-align: center;
}

.price-tag h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 5px;
}

.price-tag span {
    color: #888;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grid Specs (Modern Layout) */
.specs-grid {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
    padding: 15px 0;
    border-top: 1px dashed #eee;
    border-bottom: 1px dashed #eee;
}

.spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #555;
    font-weight: 600;
}

.spec i {
    color: #ccc;
    font-size: 1rem;
    transition: 0.3s;
}

.c-card:hover .spec i { color: #ff6600; } /* Icons light up on hover */

/* 5. BUTTONS */
.c-buttons {
    display: flex;
    gap: 10px;
}

.c-btn {
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Call Button (Circle on Desktop, Pill on Mobile) */
.btn-call {
    width: 50px;
    height: 50px;
    background: #fff0e6;
    color: #ff6600;
    padding: 0; /* Reset padding for circle */
    font-size: 1.2rem;
}
.btn-call:hover { background: #ff6600; color: #fff; }

/* WhatsApp Button (Wide Pill) */
.btn-wa {
    flex: 1; /* Takes remaining space */
    background: #25D366;
    color: #fff;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover { background: #1ebc57; transform: scale(1.05); }

/* --- POPULAR CARD SPECIALS --- */
.popular-card {
    transform: scale(1.05); /* Bigger by default */
    z-index: 2;
}

.popular-card:hover { transform: scale(1.05) translateY(-15px); }

.popular-ribbon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    color: #ff5e62;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 20;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); box-shadow: 0 0 15px rgba(255, 94, 98, 0.4); }
    100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    .popular-card { transform: scale(1); }
    .popular-card:hover { transform: translateY(-10px); }
    .c-card { width: 100%; margin-bottom: 20px; }
}


/* --- PROCESS SECTION --- */
.process-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

.process-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* The Connecting Line */
.process-line {
    position: absolute;
    top: 50px; /* Aligns with center of icons */
    left: 10%;
    width: 80%;
    height: 2px;
    background: repeating-linear-gradient(to right, #e0e0e0 0, #e0e0e0 10px, transparent 10px, transparent 20px);
    z-index: 0;
}

/* Individual Steps */
.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1; /* Sits above the line */
    padding: 0 15px;
}

/* Creative Icon Circle */
.step-icon {
    width: 100px;
    height: 100px;
    background: #ffffff;
    border: 2px dashed #ff6600; /* Orange Dashed Border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 2rem;
    color: #ff6600;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.process-step:hover .step-icon {
    background: #ff6600;
    color: #ffffff;
    transform: rotate(10deg); /* Fun rotation on hover */
    border-style: solid;
}

/* Number Badge (01, 02...) */
.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

/* Text Styling */
.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.step-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* CTA Area */
.process-cta {
    margin-top: 40px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .process-wrapper {
        flex-direction: column; /* Stack vertically */
        gap: 40px;
    }

    .process-line {
        /* Turn horizontal line into vertical line on mobile */
        top: 0;
        left: 50%;
        width: 2px;
        height: 100%;
        background: repeating-linear-gradient(to bottom, #e0e0e0 0, #e0e0e0 10px, transparent 10px, transparent 20px);
        transform: translateX(-50%);
    }

    .process-step {
        background: #fff; /* White background to hide line behind text */
        padding: 20px;
        border-radius: 10px;
    }
}


/* --- TESTIMONIALS SECTION --- */
.reviews-section {
    padding: 80px 0;
    background-color: #fff0e6; /* Very light orange background */
    overflow: hidden;
}

/* Scroll Container */
.reviews-scroller {
    display: flex;
    gap: 30px;
    overflow-x: auto; /* Enables horizontal scroll */
    padding: 20px 20px 50px 20px; /* Bottom padding for shadow space */
    scroll-snap-type: x mandatory; /* Forces card to snap into center */
    scrollbar-width: none; /* Firefox: Hide scrollbar */
    -ms-overflow-style: none; /* IE: Hide scrollbar */
}

/* Chrome/Safari: Hide scrollbar */
.reviews-scroller::-webkit-scrollbar {
    display: none;
}

/* REVIEW CARD */
.review-card {
    min-width: 350px; /* Fixed width for desktop */
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    scroll-snap-align: center; /* Snaps to center */
    position: relative;
    border: 1px solid #fff;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.1);
}

/* Giant Quote Icon Background */
.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: #f2f2f2; /* Very subtle grey */
    z-index: 0;
}

/* Stars */
.stars {
    color: #ffb400; /* Gold color for stars */
    font-size: 0.9rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* Text */
.review-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

/* User Profile Info */
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff6600; /* Orange border around photo */
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3px;
}

.reviewer-loc {
    font-size: 0.8rem;
    color: #888;
    display: block;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .review-card {
        min-width: 85vw; /* On mobile, card takes 85% of screen width */
    }
    
    .reviews-section {
        padding: 50px 0;
    }
}


/* --- CONTACT SECTION --- */
.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

/* Info Side */
.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: flex-start; /* Align to top of icon */
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #fff0e6;
    color: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0; /* Prevents icon from squishing */
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.info-item p, .info-item a {
    color: #666;
    line-height: 1.5;
    text-decoration: none;
    font-size: 0.95rem;
}

.info-item a:hover {
    color: #ff6600;
}

/* Form Side */
.contact-form-card {
    flex: 1;
    max-width: 450px;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); /* Deep shadow for "floating" effect */
    border: 1px solid #f0f0f0;
}

.contact-form-card h3 {
    margin-bottom: 25px;
    color: #333;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group select:focus {
    border-color: #ff6600;
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.1);
}

/* --- FOOTER SECTION --- */
.site-footer {
    background-color: #2d2d2d; /* Dark Charcoal (Matches Top Header) */
    color: #ccc;
    padding: 70px 0 20px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* First col wider */
    gap: 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid #444;
    padding-bottom: 40px;
}

/* Footer Columns */
.footer-logo {
    height: 99px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Makes logo white if it's colored */
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ff6600;
    padding-left: 5px; /* Tiny slide effect */
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: #444;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: #ff6600;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    color: #777;
    font-size: 0.8rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-form-card {
        width: 100%;
        max-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        gap: 30px;
        text-align: center;
    }
    
    .footer-logo {
        margin: 0 auto 20px auto; /* Center logo */
    }
    
    .social-links {
        justify-content: center; /* Center icons */
    }
}


/* --- MOBILE STICKY BAR DEFAULT (Hidden) --- */
.mobile-sticky-bar {
    display: none;
}

/* --- SHOW ONLY ON MOBILE --- */
@media (max-width: 768px) {
    
    /* Add padding to body so the bar doesn't cover footer content */
    body {
        padding-bottom: 40px; 
    }

    .mobile-sticky-bar {
        display: flex;          /* Activates the layout */
        position: fixed;        /* Locks it to the screen */
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;          /* Ensures it sits on top of everything */
        box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
        font-family: 'Montserrat', sans-serif;
    }

    .sticky-btn {
        flex: 1;                /* Both buttons take 50% width */
        text-align: center;
        padding: 14px 0;
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        transition: background 0.2s;
    }

    /* Call Button Styling */
    .call-sticky {
        background-color: #ff6600; /* Your Brand Orange */
    }
    .call-sticky:active {
        background-color: #e65c00; /* Darker on tap */
    }

    /* WhatsApp Button Styling */
    .wa-sticky {
        background-color: #25D366; /* Official WhatsApp Green */
    }
    .wa-sticky:active {
        background-color: #1ebc57; /* Darker on tap */
    }
    
    /* Icon Sizing */
    .sticky-btn i {
        font-size: 1.2rem;
    }
}





/* --- PREMIUM HERO SECTION --- */
.premium-hero {
    position: relative;
    padding: 150px 0 100px 0;
    background-color: #1a1a1a; /* Dark Luxury Background */
    color: #fff;
    overflow: hidden;
}

/* Background Abstract Pattern */
.hero-bg-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 102, 0, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.relative-z { position: relative; z-index: 2; }

.hero-tag {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 20px;
}

.hero-title-large {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

/* Gold Gradient Text */
.text-gold {
    background: linear-gradient(to right, #FFD700, #FDB931);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

/* Outline Text Effect */
.text-outline {
    -webkit-text-stroke: 1px #fff;
    color: transparent;
}

.hero-sub {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Floating Shapes Animation */
.float-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    animation: floatMove 10s infinite alternate;
}
.shape-1 { width: 300px; height: 300px; background: #ff6600; top: -50px; left: -100px; opacity: 0.2; }
.shape-2 { width: 250px; height: 250px; background: #FFD700; bottom: 50px; right: -50px; opacity: 0.1; }

@keyframes floatMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 50px); }
}


/* --- MAGAZINE LAYOUT (Story) --- */
.story-premium {
    padding: 100px 0;
    background: #fff;
}

.mag-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.mag-images {
    flex: 1;
    position: relative;
    height: 500px; /* Specific height for layering */
}

/* Layer 1: Large Image */
.img-large {
    width: 80%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px 0 20px 20px;
    position: absolute;
    top: 0; left: 0;
    z-index: 1;
}
.img-large img { width: 100%; height: 100%; object-fit: cover; }

/* Layer 2: Small Floating Image */
.img-small {
    width: 50%;
    height: 250px;
    overflow: hidden;
    border-radius: 20px;
    position: absolute;
    bottom: 0; right: 0;
    z-index: 2;
    border: 8px solid #fff; /* Thick white border to separate */
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.img-small img { width: 100%; height: 100%; object-fit: cover; }

/* Layer 3: Experience Box */
.exp-box {
    position: absolute;
    top: 50px; right: -20px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    z-index: 3;
    text-align: center;
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.3);
}
.exp-box .num { display: block; font-size: 2.5rem; font-weight: 800; line-height: 1; }
.exp-box .txt { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

/* Right Content */
.mag-content { flex: 1; padding-left: 20px; }

.sub-heading { color: #ff6600; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 15px; }
.mag-title { font-size: 3rem; line-height: 1.2; margin-bottom: 30px; font-family: 'Playfair Display', serif; }
.mag-desc { font-size: 1.05rem; color: #555; line-height: 1.8; margin-bottom: 20px; }
.signature-area { margin-top: 40px; border-left: 4px solid #ff6600; padding-left: 20px; }
.signature-area p { font-style: italic; font-size: 1.2rem; color: #333; font-family: 'Playfair Display', serif; }
.signature-area cite { display: block; margin-top: 10px; font-weight: 600; color: #888; font-size: 0.9rem; }


/* --- STATS STRIP (Dark) --- */
.stats-strip {
    background: #000;
    padding: 60px 0;
    color: #fff;
}
.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.stat-box { text-align: center; }
.stat-box i { font-size: 2rem; color: #555; margin-bottom: 15px; transition: 0.3s; }
.stat-box:hover i { color: #ff6600; } /* Hover effect */
.stat-box h2 { font-size: 3rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.stat-box p { color: #888; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }

/* Vertical Divider for center box */
.center-box {
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    padding: 0 80px;
}


/* --- GLASSMORPHISM MISSION --- */
.glass-section {
    padding: 100px 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png'), linear-gradient(to bottom, #fff, #f4f4f4);
}
.glass-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}
.glass-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.7); /* Semi transparent */
    backdrop-filter: blur(10px); /* The Blur Effect */
    border: 1px solid rgba(255,255,255,0.8);
    padding: 50px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}
.glass-card:hover { transform: translateY(-10px); background: #fff; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }

.card-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 10rem;
    color: rgba(0,0,0,0.03); /* Very subtle huge icon */
    z-index: 0;
    transition: 0.4s;
}
.glass-card:hover .card-bg-icon { color: rgba(255, 102, 0, 0.1); transform: rotate(-10deg); }

.card-content { position: relative; z-index: 1; }
.card-content h3 { font-size: 2rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }


/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .mag-layout { flex-direction: column; }
    .mag-images { width: 100%; margin-bottom: 50px; }
    .hero-title-large { font-size: 3rem; }
    .stats-grid { flex-direction: column; gap: 40px; }
    .center-box { border: none; padding: 0; }
    .glass-grid { flex-direction: column; }
}

/* --- CINEMATIC HERO --- */
.cinematic-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.overlay-gradient {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
    z-index: 1;
}

.cine-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin: 20px 0;
    line-height: 1.1;
}

.cine-sub {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #ddd;
}

.gold-badge {
    border: 1px solid #FFD700;
    color: #FFD700;
    padding: 5px 15px;
    border-radius: 50px;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* --- STORY SECTION --- */
.story-section { padding: 100px 0; background: #fff; }
.mag-grid { display: flex; align-items: center; gap: 80px; }
.mag-text { flex: 1; }
.mag-visual { flex: 1; position: relative; }

.mini-heading { color: #ff6600; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 10px; }
.section-heading { font-family: 'Playfair Display', serif; font-size: 3rem; margin-bottom: 30px; line-height: 1.2; }
.highlight-text { color: #ff6600; }
.lead-text { font-size: 1.2rem; color: #333; margin-bottom: 20px; font-weight: 500; }
.body-text { color: #666; line-height: 1.8; margin-bottom: 30px; }
.signature-img { width: 150px; opacity: 0.7; }

.main-photo img { width: 100%; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.floating-stat {
    position: absolute; bottom: -30px; left: -30px;
    background: #000; color: #fff;
    padding: 30px; border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.fs-num { display: block; font-size: 2.5rem; font-weight: 700; color: #FFD700; }
.fs-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

/* --- TIMELINE (The Golden Journey) --- */
.timeline-section { padding: 80px 0; background: #f9f9f9; }
.timeline { position: relative; max-width: 1200px; margin: 0 auto; }

/* The Line */
.timeline::after {
    content: '';
    position: absolute; width: 4px; background-color: #ddd;
    top: 0; bottom: 0; left: 50%; margin-left: -2px;
}

.timeline-item { padding: 10px 40px; position: relative; background-color: inherit; width: 50%; }
.timeline-item.left { left: 0; }
.timeline-item.right { left: 50%; }

/* Dots */
.timeline-item::after {
    content: ''; position: absolute; width: 20px; height: 20px;
    right: -10px; background-color: #fff; border: 4px solid #ff6600;
    top: 15px; border-radius: 50%; z-index: 1;
}
.timeline-item.right::after { left: -10px; }

.timeline-item .content {
    padding: 20px 30px; background-color: white; position: relative;
    border-radius: 6px; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #ff6600;
}
.timeline-item h2 { color: #ff6600; font-family: 'Playfair Display', serif; }

/* --- PARALLAX STATS --- */
.parallax-stats {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?q=80&w=1000');
    background-attachment: fixed;
    background-size: cover;
    padding: 80px 0;
    color: #fff;
}
.stats-flex { display: flex; justify-content: center; text-align: center; }
.p-stat { padding: 0 60px; }
.p-stat i { font-size: 3rem; color: #FFD700; margin-bottom: 15px; }
.p-stat .counter { font-size: 3.5rem; font-weight: 800; margin-bottom: 5px; }
.border-sides { border-left: 1px solid rgba(255,255,255,0.2); border-right: 1px solid rgba(255,255,255,0.2); }

/* --- TEAM SECTION --- */
.team-section { padding: 100px 0; background: #fff; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 50px; }

.team-card { text-align: center; }
.team-img {
    position: relative; overflow: hidden; border-radius: 15px; margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.team-img img { width: 100%; display: block; transition: 0.5s; }
.team-card:hover img { transform: scale(1.1); }

/* Social Overlay on Hover */
.social-overlay {
    position: absolute; bottom: -50px; left: 0; width: 100%;
    background: rgba(255, 102, 0, 0.9); padding: 10px;
    transition: 0.4s; display: flex; justify-content: center; gap: 15px;
}
.team-card:hover .social-overlay { bottom: 0; }
.social-overlay a { color: #fff; font-size: 1.2rem; }

.team-info h3 { font-size: 1.2rem; margin-bottom: 5px; color: #222; }
.team-info span { color: #888; font-size: 0.9rem; text-transform: uppercase; }

/* --- SCROLL ANIMATION --- */
.reveal-on-scroll { opacity: 0; transform: translateY(50px); transition: all 1s ease; }
.reveal-on-scroll.active { opacity: 1; transform: translateY(0); }

/* Responsive Timeline */
@media screen and (max-width: 768px) {
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item::after { left: 21px; }
    .timeline-item.left::after, .timeline-item.right::after { left: 21px; }
    .timeline-item.right { left: 0; }
    .mag-grid { flex-direction: column; }
    .stats-flex { flex-direction: column; gap: 40px; }
    .border-sides { border: none; }
    .cine-title { font-size: 2.5rem; }
}

/* --- CONTACT HERO --- */
.contact-hero {
    position: relative;
    height: 450px;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 50px; /* Space for overlap */
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.9));
}

/* --- CONTACT BODY (Floating Layout) --- */
.contact-body {
    background: #f4f6f8;
    padding-bottom: 80px;
}

.contact-grid {
    display: flex;
    gap: 50px;
    margin-top: -80px; /* Moves grid UP to overlap Hero */
    position: relative;
    z-index: 10;
}

/* LEFT COLUMN: INFO CARDS */
.info-column { flex: 1; display: flex; flex-direction: column; gap: 20px; }

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    border-left: 5px solid transparent;
}

.info-card:hover, .info-card.active-card {
    transform: translateX(10px);
    border-left-color: #ff6600;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.icon-circle {
    width: 60px; height: 60px;
    background: #fff0e6;
    color: #ff6600;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-text h3 { margin-bottom: 5px; font-size: 1.1rem; color: #222; }
.info-text p { color: #666; font-size: 0.9rem; margin-bottom: 10px; line-height: 1.5; }

.link-arrow {
    text-decoration: none; color: #ff6600; font-weight: 600; font-size: 0.9rem;
    transition: 0.3s;
}
.link-arrow:hover { padding-left: 5px; }

.big-link {
    font-size: 1.2rem; font-weight: 700; color: #222; text-decoration: none;
}
.big-link:hover { color: #ff6600; }


/* RIGHT COLUMN: FORM */
.form-column { flex: 1; }

.form-box {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.form-box::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(to right, #ff6600, #FFD700);
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; margin-bottom: 30px; color: #222;
}

/* Animated Inputs */
.input-group { position: relative; margin-bottom: 25px; }

.input-group input, .input-group textarea, .input-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: transparent;
    outline: none;
    font-size: 1rem;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.input-group textarea { height: 120px; resize: none; }

.input-group label {
    position: absolute; top: 15px; left: 15px;
    color: #999; font-size: 0.95rem;
    pointer-events: none; transition: 0.3s; background: #fff; padding: 0 5px;
}

/* Focus Effects */
.input-group input:focus, .input-group input:valid,
.input-group textarea:focus, .input-group textarea:valid {
    border-color: #ff6600;
}

.input-group input:focus ~ label, .input-group input:valid ~ label,
.input-group textarea:focus ~ label, .input-group textarea:valid ~ label {
    top: -10px; left: 10px; color: #ff6600; font-size: 0.8rem; font-weight: 600;
}

/* Submit Button */
.btn-submit {
    width: 100%; padding: 15px;
    background: #ff6600; color: #fff;
    border: none; border-radius: 8px;
    font-size: 1rem; font-weight: 700; cursor: pointer;
    transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px;
}

.btn-submit:hover { background: #e65c00; transform: translateY(-2px); }

/* Add this to styles.css */
.bg-gold { background: linear-gradient(135deg, #FFD700, #B8860B); }
.bg-gold ~ .floating-icon { color: #B8860B; }
/* --- MAP SECTION --- */
.map-section {
    height: 400px; width: 100%;
    filter: grayscale(100%); /* Makes map black/white for premium look */
    transition: 0.5s;
}
.map-section:hover { filter: grayscale(0%); /* Color on hover */ }
.map-section iframe { width: 100%; height: 100%; border: 0; }


/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .contact-grid { flex-direction: column-reverse; margin-top: 0; gap: 30px; }
    .contact-hero { height: 350px; padding-bottom: 0; }
    .contact-body { padding-top: 50px; }
}
