:root {
    --bg-main: #FDFBF7;
    --navy: #1A2B3C;
    --teal: #28706D;
    --orange: #E86343;
    --yellow: #F4C043;
    --card-bg: #FFFFFF;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Caveat', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Typography */
.font-caveat { font-family: var(--font-accent); }
.text-xl { font-size: 2rem; font-weight: 700; }
.h1 { font-family: var(--font-heading); font-size: 5rem; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.h2 { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
.h3 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; line-height: 1.3; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }

.text-navy { color: var(--navy); }
.text-teal { color: var(--teal); }
.text-orange { color: var(--orange); }
.text-yellow { color: var(--yellow); }

/* Layout Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.grid { display: grid; }
.relative { position: relative; }
.absolute { position: absolute; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-md { max-width: 28rem; }
.max-w-xs { max-width: 20rem; }

/* Spacing */
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-24 { margin-top: 6rem; }
.mt-auto { margin-top: auto; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.p-3 { padding: 0.75rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }

/* Effects */
.rounded-full { border-radius: 9999px; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.border { border: 1px solid var(--navy); }
.border-gray-100 { border: 1px solid #f3f4f6; }
.drop-shadow-xl { filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.05)); }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.transition-shadow { transition: box-shadow 0.3s ease; }
.object-contain { object-fit: contain; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }

/* Utilities */
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.bg-white { background-color: var(--card-bg); }
.bg-navy { background-color: var(--navy); }
.bg-teal { background-color: var(--teal); }
.bg-yellow { background-color: var(--yellow); }
.bg-orange { background-color: var(--orange); }
.text-white { color: #ffffff; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.leading-relaxed { line-height: 1.625; }
.text-4xl { font-size: 2.25rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-heading { font-family: var(--font-heading); }
.underline { text-decoration: underline; }
.decoration-orange { text-decoration-color: var(--orange); }
.inline-block { display: inline-block; }
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-4xl { max-width: 56rem; }
.w-px { width: 1px; }
.border-l { border-left-width: 1px; border-left-style: solid; border-left-color: inherit; }
.border-dashed { border-style: dashed; }
.border-gray-300 { border-color: #d1d5db; }
.border-gray-200 { border-color: #e5e7eb; }
.border-t { border-top-width: 1px; border-top-style: solid; border-top-color: inherit; }
.border-4 { border-width: 4px; }
.border-white { border-color: #ffffff; }
.w-1\/3 { width: 33.333333%; }
.w-2\/3 { width: 66.666667%; }
.pr-12 { padding-right: 3rem; }
.pl-12 { padding-left: 3rem; }
.text-lg { font-size: 1.125rem; }
.text-2xl { font-size: 1.5rem; }
.text-4xl { font-size: 2.25rem; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.font-bold { font-weight: 700; }
.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }
.h-16 { height: 4rem; }
.h-48 { height: 12rem; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.scale-105 { transform: scale(1.05); }
.-mt-16 { margin-top: -4rem; }
.leading-tight { line-height: 1.25; }
.rounded-xl { border-radius: 0.75rem; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.hover\:bg-gray-50:hover { background-color: #f9fafb; }
.hover\:bg-opacity-90:hover { opacity: 0.9; }
.transition-colors { transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; }

/* Specific Components */
/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.nav-link {
    color: var(--navy);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.nav-link.active {
    color: var(--teal);
    border: 1px solid var(--teal);
}

.nav-link:hover:not(.active) {
    color: var(--teal);
}

.phone-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #FFFFFF;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-icon-wrap span {
    font-size: 1rem;
}

/* Hero Section */
.hero {
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    min-height: calc(100vh - 100px);
}

.hero-left, .hero-right {
    height: 600px;
}

.exp-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}

.badge-icon {
    width: 80px;
    height: 80px;
}
.badge-icon span {
    font-size: 2.5rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .h1 { font-size: 4rem; }
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-left, .hero-right {
        height: auto;
        align-items: center !important;
        text-align: center;
    }
    .hero-right { align-items: center !important; }
    .intro-text { text-align: center; }
    .header { flex-direction: column; gap: 1rem; }
    .nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
}

@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 2rem; }
    .h1 { font-size: 3rem; }
    .h2 { font-size: 2.5rem; }
    
    /* Testimonials Mobile Fix */
    .testimonials .flex.gap-8 { flex-direction: column; }
    .testimonial-card { width: 100% !important; max-width: 400px; transform: none !important; margin: 0 auto; }
}
