/* ==========================================================================
   Variables & Theme
   ========================================================================== */
   :root {
    /* Color Palette */
    --clr-navy: #0A192F;
    --clr-navy-light: #112240;
    --clr-gold: #D4AF37;
    --clr-gold-light: #F3E5AB;
    --clr-white: #FFFFFF;
    --clr-gray-light: #F8F9FA;
    --clr-gray: #6B7280;
    --clr-blue-soft: #E0F2FE;
    
    /* Typography */
    --font-main: 'Poppins', sans-serif;
    
    /* Effects */
    --shadow-soft: 0 10px 30px -10px rgba(10, 25, 47, 0.1);
    --shadow-hover: 0 20px 40px -15px rgba(10, 25, 47, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.18);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Layout */
    --container-width: 1200px;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--clr-navy);
    line-height: 1.6;
    background-color: var(--clr-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--clr-gray-light);
}

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

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--clr-navy);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--clr-gray);
    margin-bottom: 1rem;
}

.subtitle {
    display: inline-block;
    color: var(--clr-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.lead {
    font-size: 1.2rem;
    color: var(--clr-navy-light);
    font-style: italic;
    font-weight: 500;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--clr-gold);
    color: var(--clr-white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background-color: #C5A028; /* Slightly darker gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--clr-white);
    color: var(--clr-white);
}

.btn-outline:hover {
    background-color: var(--clr-white);
    color: var(--clr-navy);
}

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

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

/* Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal.left {
    transform: translateX(-50px);
}

.scroll-reveal.right {
    transform: translateX(50px);
}

.scroll-reveal.left.active, .scroll-reveal.right.active {
    transform: translateX(0);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    padding: 20px 0;
}

header.scrolled {
    background-color: var(--clr-white);
    box-shadow: var(--shadow-soft);
    padding: 15px 0;
}

header.scrolled .nav-links a {
    color: var(--clr-navy);
}

header.scrolled .logo {
    color: var(--clr-navy);
}

header.scrolled .phone-link {
    color: var(--clr-navy);
}

header.scrolled .mobile-menu-btn {
    color: var(--clr-navy);
}

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

.logo {
    font-size: clamp(1.5rem, 5vw, 5rem);
    font-weight: 700;
    color: var(--clr-white); /* Initially white for hero */
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: var(--clr-gold);
}

.logo-accent {
    font-weight: 300;
}

.logo-img {
    width: clamp(150px, 20vw, 350px);
    max-height: 90px;
    height: auto;
    object-fit: contain;
    transform: scale(2.5) translateX(-15%);
    transform-origin: left center;
}

.logo-svg {
    display: flex;
    align-items: center;
}

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

.nav-links a {
    color: var(--clr-white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-gold);
    transition: var(--transition-normal);
}

.nav-links a:hover::after {
    width: 100%;
}

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

.phone-link {
    color: var(--clr-white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-link i {
    color: var(--clr-gold);
}

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--clr-navy);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.close-menu-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--clr-white);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.mobile-nav-links a {
    color: var(--clr-white);
    font-size: 1.5rem;
    font-weight: 500;
}

.mobile-nav-links a.mobile-menu-cta {
    margin-top: 20px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.4) 100%);
}

.hero-content {
    max-width: 650px;
    color: var(--clr-white);
}

.hero-content h1 {
    color: var(--clr-white);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    margin-bottom: 3rem;
}

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

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-navy);
}

.badge i {
    color: var(--clr-gold);
    font-size: 1.1rem;
}

/* Hero Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.service-card {
    padding: 40px 30px;
    border-radius: 20px;
    background-color: var(--clr-white);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-light) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--clr-blue-soft);
    color: var(--clr-navy);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.service-card h3 {
    transition: var(--transition-normal);
}

.service-card p {
    transition: var(--transition-normal);
    margin-bottom: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover h3, 
.service-card:hover p {
    color: var(--clr-white);
}

.service-card:hover .service-icon {
    background-color: var(--clr-gold);
    color: var(--clr-white);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-us-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background-color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-gold);
    font-size: 1.2rem;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.image-stack {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.image-stack img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.image-stack:hover img {
    transform: scale(1.05);
}

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

.about-image {
    position: relative;
}

.owner-img {
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-hover);
}

.gold-accent-border {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--clr-gold);
    border-radius: 20px;
    z-index: 1;
}

.stats-container {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-navy-light);
    margin-top: 5px;
}

.signature {
    font-family: 'Brush Script MT', cursive, serif;
    font-size: 2.5rem;
    color: var(--clr-navy);
    margin-top: 30px;
    opacity: 0.8;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonial-carousel-wrapper {
    position: relative;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-card {
    min-width: 100%;
    background-color: var(--clr-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.stars {
    color: var(--clr-gold);
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.2rem;
    color: var(--clr-navy);
    font-style: italic;
    margin-bottom: 30px;
}

.reviewer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-gold);
}

.reviewer-info h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--clr-gray);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--clr-white);
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--clr-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
}

.carousel-btn:hover {
    background-color: var(--clr-gold);
    color: var(--clr-white);
    border-color: var(--clr-gold);
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item:nth-child(2), .gallery-item:nth-child(3) {
    aspect-ratio: 3/4;
}

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

.gallery-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.9), transparent);
    color: var(--clr-white);
    transition: var(--transition-normal);
    opacity: 0;
}

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

.gallery-item:hover .gallery-overlay {
    bottom: 0;
    opacity: 1;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background-color: var(--clr-white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-icon {
    color: var(--clr-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    position: relative;
    padding: 120px 0;
    background-image: url('../../.gemini/antigravity/brain/a3c5673b-48d1-4ac6-8cc2-2eceda96f3e9/gallery_living_room_1778185982490.png'); /* Fallback/Placeholder */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--clr-white);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 47, 0.85);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.cta-content h2 {
    color: var(--clr-white);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--clr-navy);
    color: var(--clr-white);
    padding: 80px 0 20px;
}

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

.footer-logo {
    margin-bottom: 20px;
    display: inline-flex;
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--clr-gold);
    transform: translateY(-3px);
}

.footer h3 {
    color: var(--clr-white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--clr-gold);
}

.footer ul li {
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
}

.footer ul li a {
    color: rgba(255,255,255,0.7);
}

.footer ul li a:hover {
    color: var(--clr-gold);
    padding-left: 5px;
}

.footer ul li i {
    color: var(--clr-gold);
    margin-right: 10px;
    width: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* ==========================================================================
   Floating Elements
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-instagram {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(214, 36, 159, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.floating-instagram:hover {
    transform: scale(1.1);
}

.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--clr-white);
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 999;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .about-wrapper, .why-us-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .nav-links, .nav-actions .btn, .phone-link {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-ctas {
        justify-content: center;
        flex-direction: column;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:nth-child(2), .gallery-item:nth-child(3) {
        aspect-ratio: 4/3;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .floating-whatsapp, .floating-instagram {
        bottom: 90px; /* Above sticky CTA */
    }
    
    .sticky-mobile-cta {
        display: block;
    }
    
    .footer {
        padding-bottom: 90px; /* Space for sticky CTA */
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
}
