:root {
    --primary-color: #FC8075;
    /* Peach color from user request */
    --secondary-color: #1a1a1a;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f9f9f9;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius: 50px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-item.mobile-only {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info .icon-circle {
    width: 40px;
    height: 40px;
    background-color: rgba(252, 128, 117, 0.1);
    /* Light peach bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.contact-info .text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.contact-info .label {
    font-size: 12px;
    color: #666;
}

.contact-info .phone-number {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #E05D50;
    /* Darker shade */
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background-image: url('https://images.unsplash.com/photo-1628177142898-93e36e4e3a50?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    /* Dark overlay */
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-size: 4rem;
    /* Big headline */
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 600px;
    opacity: 0.9;
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .nav-menu {
        display: block;
        /* Always assume block for transition, control visibility via transform/opacity */
        position: fixed;
        /* Fixed to cover screen */
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        padding: 80px 30px;
        /* Padding for content */
        box-shadow: none;
        flex-direction: column;
        align-items: flex-start;
        transform: translateX(-100%);
        /* Hidden off-screen left */
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 1001;
        /* Above header */
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
        /* Slide in */
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 25px;
    }

    .nav-link {
        font-size: 1.5rem;
        /* Larger text for mobile menu */
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
        width: 100%;
        display: block;
    }

    .mobile-toggle {
        display: block;
        position: relative;
        z-index: 1002;
        /* Above menu */
        margin-left: auto;
        font-size: 28px;
    }

    .header-right .contact-info,
    .header-right .btn {
        display: none;
        /* Hide extra header elements on smaller screens to clarify nav */
    }

    /* Re-enable button? Maybe just icon */
    .header-container {
        padding: 0 15px;
    }

    .hero {
        height: 60vh;
        min-height: 400px;
        align-items: center;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .btn-large {
        width: 100%;
    }

    .nav-item.mobile-only {
        display: block;
        margin-top: 15px;
    }
}

/* --- Global Animations --- */

/* Base animation class for scroll trigger */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: none;
}

/* Animation Variants (Initial States) */
.fade-up {
    transform: translateY(30px);
}

.fade-left {
    transform: translateX(-30px);
}

.fade-right {
    transform: translateX(30px);
}

.zoom-in {
    transform: scale(0.9);
}

/* Staggered delays for child elements (e.g. grid items) */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}