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

:root {
    --color-bg: #FFFFFF;     /* Pure white */
    --color-text: #1a1a1a;   /* Dark gray for readability */
    --color-accent: #FFB300; /* Bright Golden Yellow */
    --color-primary: #FF8F00;/* Darker Yellow / Amber */
    --color-light: #FFFDE7;  /* Very light yellow for backgrounds */
    --color-secondary: #FFF3E0; /* Light Orange/Amber for variation */
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.6;
}

a, button {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover, button:hover {
    color: var(--color-accent);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text);
}

.title-xl {
    font-size: clamp(3.5rem, 6vw, 6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--color-accent);
}

.title-lg {
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.2;
}

.text-lg {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    line-height: 1.8;
}

/* Layout */
.section {
    padding: var(--spacing-lg) 5vw;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

/* Navigation */
.nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.brand {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin-bottom: 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    color: var(--color-text);
}

.nav-links a {
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.menu-toggle .bar {
    height: 4px;
    width: 32px;
    background-color: var(--color-primary);
    margin: 5px 0;
    transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    border-radius: 4px;
}

@media (max-width: 992px) {
    .nav-wrap {
        padding: 1rem 5vw;
    }
    
    .menu-toggle {
        display: flex;
        order: 3;
    }
    
    .lang-toggle {
        order: 2;
        margin-left: auto;
        margin-right: 1.5rem;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        box-shadow: 0 20px 30px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        max-height: 400px;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 0;
    }
    
    .split-section {
        flex-direction: column;
    }
    .split-section.reverse {
        flex-direction: column-reverse;
    }
    .split-section .split-image {
        min-height: 300px !important;
    }
}

.lang-toggle {
    display: flex;
    gap: 0.5rem;
    background: var(--color-light);
    padding: 0.5rem;
    border-radius: 30px;
}

.lang-btn {
    background: transparent;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--color-text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--color-accent);
    color: white;
}

/* Content Blocks for Language Toggle */
[data-lang] {
    display: none;
}
[data-lang].active {
    display: block;
}
span[data-lang].active,
div[data-lang].inline-active {
    display: inline;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 150px;
    padding-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, #FFF3E0 0%, #FFFFFF 100%);
}

.hero-content {
    z-index: 2;
    text-align: center;
    position: relative;
    max-width: 900px;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Services Grid */
.split-section {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-section .split-content {
    flex: 1;
    min-width: 300px;
    padding: 6rem 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 992px) {
    .split-section .split-content {
        padding: 6rem 10%;
    }
}

.split-section .split-image {
    flex: 1;
    min-width: 300px;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 87, 34, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: 0 30px 60px rgba(255, 143, 0, 0.2) !important;
    border-color: rgba(255, 143, 0, 0.4);
    z-index: 2;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-accent);
}

/* Glassmorphism Form */
.contact-form {
    background: #FFFFFF;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 87, 34, 0.1);
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    background: #F9F9F9;
    border: 1px solid #EEEEEE;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    outline: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--color-accent);
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.1);
}

.submit-btn {
    background: var(--color-accent);
    color: #FFFFFF;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: 100%;
    margin-top: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.3);
}

.submit-btn:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(255, 87, 34, 0.4);
}

.footer {
    padding: 2rem 5vw;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: #FFFFFF;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -10px 30px rgba(255, 179, 0, 0.1);
}

/* Video Card Design */
.video-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    aspect-ratio: 9/16;
    position: relative;
    border: 4px solid #fff;
    background: #000;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.video-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.video-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: 16px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 143, 0, 0.2);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 10000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-wa 2s infinite;
}

.floating-whatsapp svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

.floating-whatsapp:hover {
    transform: scale(1.15) rotate(-5deg);
    animation: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsive Overrides */
@media (max-width: 768px) {
    .hero { padding-top: 100px; }
    .hero-content .title-xl { font-size: 2.5rem !important; }
    .hero-content .text-lg { font-size: 1rem !important; }
    
    .split-section .split-content {
        padding: 4rem 5vw !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact .container {
        flex-direction: column;
    }
    
    .timing-section .container {
        padding: 2rem 1rem !important;
    }
    
    /* Prevent wrapping in nav links */
    .nav-links {
        gap: 1rem;
    }
}

/* Native Scroll Animations */
.reveal-text, .reveal-card, .video-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease var(--delay, 0s), transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) var(--delay, 0s);
}

.hero .reveal-text {
    transform: translateY(20px);
    transition-delay: 0.2s;
}

.is-visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* Service Card & Video Card Base Transitions */
.service-card.is-visible, .video-card.is-visible {
    transition: opacity 0.8s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Floating animation for images */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.split-image {
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Image reveal effect */
.reveal-image {
    opacity: 0;
    transform: scale(1.05);
    clip-path: inset(100% 0 0 0);
    transition: opacity 1.2s ease, transform 1.2s ease, clip-path 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-image.is-visible {
    opacity: 1 !important;
    transform: scale(1) !important;
    clip-path: inset(0 0 0 0);
}

/* Hamburger Menu Toggle Animation */
.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}
.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}
.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

