@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Colors - Premium & Sophisticated */
    --bg-primary: #FAF9F6;
    --bg-secondary: #F2F1ED;
    --accent-dark: #2D3E40;
    --accent-muted: #4B5347;
    --text-main: #1A1A1A;
    --text-muted: #555555;
    --white: #FFFFFF;
    --border-color: rgba(0, 0, 0, 0.08);
    
    /* Spacing System */
    --section-padding: 100px 5%;
    --section-padding-mobile: 60px 20px;
    --gap-base: 24px;
    
    /* Shadow & Border Radius */
    --radius-soft: 12px;
    --radius-large: 24px;
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.08);
    
    /* Animation */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    caret-color: transparent; /* Fixes the 'one line type indicator' issue */
}

input, textarea {
    caret-color: auto; /* Restore for inputs */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--accent-dark);
    font-weight: 500;
}

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

ul {
    list-style: none;
}

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

/* --- Utility Classes --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: -1rem auto 3rem;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent-dark);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-muted);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--accent-dark);
    color: var(--accent-dark);
}

.btn-outline:hover {
    background-color: var(--accent-dark);
    color: var(--white);
}

/* --- Layout Components --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(250, 249, 246, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-subtle);
}

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

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent-dark);
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
}

.hamburger {
    display: none;
    cursor: pointer;
}

@media (max-width: 991px) {
    .nav-links {
        display: none;
    }
    .header-cta {
        margin-left: auto;
        margin-right: 15px;
        display: block;
    }
    .header-cta .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    .hamburger {
        display: block;
    }
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.hero-content {
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.15;
    margin-bottom: 2rem;
}

.hero h1 span {
    color: var(--accent-muted);
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    max-width: 550px;
}

.hero-image-container {
    width: 100%;
    height: 550px;
    z-index: 1;
    position: relative; /* For the overlay */
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Black tint */
    z-index: 2;
    border-radius: var(--radius-large);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
}

/* --- Stats Section (Trust) --- */
.stats {
    padding: var(--section-padding);
    background-color: var(--bg-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-base);
}

.stat-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-soft);
    text-align: center;
    box-shadow: var(--shadow-subtle);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Services --- */
.services {
    padding: var(--section-padding);
}

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

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-soft);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

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

.service-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-dark);
}

/* --- Gallery (Images folder only) --- */
.gallery {
    padding: var(--section-padding);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 350px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-soft);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

/* --- Video Section (Instagram) --- */
.video-section {
    padding: var(--section-padding);
    background-color: var(--bg-secondary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.video-container {
    background: var(--white);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    aspect-ratio: 9/16;
}

/* --- About Section --- */
.about {
    padding: var(--section-padding);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
}

.about-features {
    margin-top: 30px;
    display: grid;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature-item i {
    color: #25D366;
}

/* --- Why Us Section --- */
.why-us {
    padding: var(--section-padding);
    background: var(--accent-dark);
    color: var(--white);
}

.why-us h2 {
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.why-item {
    margin-bottom: 30px;
}

.why-item h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.visual-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: var(--radius-large);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-medium);
}

/* --- Testimonials --- */
.testimonials {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--accent-dark);
    line-height: 1.5;
}

.author-info {
    margin-top: 25px;
}

/* --- CTA Section --- */
.cta {
    padding: var(--section-padding);
    background: var(--bg-primary);
    text-align: center;
}

.cta-content {
    background: var(--accent-dark);
    color: var(--white);
    padding: 100px 60px; /* Increased from 80px 40px for a more premium look */
    border-radius: var(--radius-large);
}

.cta h2 {
    color: var(--white);
    font-size: 3.5rem; /* Slightly larger */
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.btn-cta {
    background-color: var(--white);
    color: var(--accent-dark);
    margin-top: 20px; /* Consistent margin for better flow */
}

.btn-cta:hover {
    background-color: var(--bg-secondary);
    transform: translateY(-2px);
}

/* --- Contact Section --- */
.contact {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--accent-dark);
}

.info-item p {
    color: var(--text-muted);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-dark);
    margin-top: 5px;
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--accent-dark);
}

/* --- Video Embed Responsiveness --- */
.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: 0.5s ease;
    display: none; /* Hidden by default */
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu.active {
    right: 0;
    display: flex; /* Visible when active */
}

.mobile-nav-links {
    text-align: center;
}

.mobile-nav-links li {
    margin: 20px 0;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    cursor: pointer;
}

/* --- Footers --- */
footer {
    padding: 80px 5% 40px;
    background: var(--accent-dark);
    color: var(--white);
    text-align: center;
}

.footer-bottom {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 40px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card {
        padding: 30px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image-container {
        height: 450px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card {
        padding: 20px; /* Reduced padding from 40px */
    }

    .stat-number {
        font-size: 1.8rem; /* Reduced from 2.5rem */
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid, .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta h2 {
        font-size: 2.2rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .hero-image-container {
        height: 350px;
    }

    iframe {
        width: 100% !important;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .header-cta .btn {
        padding: 8px 15px;
        font-size: 0.75rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-content {
        padding: 60px 20px 70px;
    }

    .cta h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .cta p {
        margin-bottom: 2rem;
    }

    .btn-cta {
        padding: 16px 32px;
        font-size: 1.1rem;
        margin-top: 15px;
    }
}
