/* ===================================
   Raul's Mufflers & Auto Repair
   Bold Editorial Style
   =================================== */

:root {
    --forest: #1B4332;
    --forest-light: #2D6A4F;
    --forest-dark: #0D2818;
    --gold: #D4A84B;
    --gold-light: #E8C876;
    --cream: #FAF8F5;
    --cream-dark: #F0EDE8;
    --warm-white: #FEFCF9;
    --charcoal: #1A1A1A;
    --text-dark: #2C2C2C;
    --text-mid: #5A5A5A;
    --text-light: #8A8A8A;
    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow-sm: 0 1px 3px rgba(27, 67, 50, 0.06), 0 1px 2px rgba(27, 67, 50, 0.04);
    --shadow-md: 0 4px 20px rgba(27, 67, 50, 0.08), 0 2px 8px rgba(27, 67, 50, 0.04);
    --shadow-lg: 0 12px 40px rgba(27, 67, 50, 0.12), 0 4px 16px rgba(27, 67, 50, 0.06);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Navigation
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--forest);
}

.nav-logo-icon {
    color: var(--forest);
}

.nav-logo-text {
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color var(--transition);
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--forest);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--forest);
    color: var(--cream) !important;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
    background: var(--forest-light);
    color: var(--cream) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--forest);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--forest);
    padding: 8px;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-link {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--forest);
    padding: 12px 0;
    border-bottom: 1px solid rgba(27, 67, 50, 0.1);
    transition: color var(--transition);
}

.mobile-menu-link:hover {
    color: var(--gold);
}

.mobile-menu-phone,
.mobile-menu-phone-alt {
    margin-top: 24px;
}

.mobile-menu-phone a,
.mobile-menu-phone-alt a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--forest);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-menu-phone-alt a {
    color: var(--text-mid);
    font-size: 1rem;
}

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

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 70% 20%, rgba(45, 106, 79, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 80%, rgba(212, 168, 75, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(2.75rem, 5vw, 4.25rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--forest-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.serif-accent {
    font-style: italic;
    color: var(--gold);
}

.hero-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--sans);
}

.btn-primary {
    background: var(--forest);
    color: var(--cream);
    border-color: var(--forest);
}

.btn-primary:hover {
    background: var(--forest-light);
    border-color: var(--forest-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--forest);
    border-color: var(--forest);
}

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

.btn-light {
    background: var(--cream);
    color: var(--forest);
    border-color: var(--cream);
}

.btn-light:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--forest-dark);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--cream);
    border-color: rgba(250, 248, 245, 0.5);
}

.btn-outline-light:hover {
    background: var(--cream);
    color: var(--forest);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-mid);
}

.trust-item svg {
    color: var(--gold);
}

/* Hero Right */
.hero-right {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 600/720;
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--gold);
    border-radius: var(--radius);
    z-index: -1;
}

.hero-badge {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--forest);
    color: var(--cream);
    padding: 24px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-badge-number {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-badge-label {
    font-size: 0.8125rem;
    font-weight: 500;
    opacity: 0.85;
    line-height: 1.4;
}

/* ===================================
   Section Shared
   =================================== */
.section-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--forest-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 560px;
}

.section-header {
    margin-bottom: 64px;
}

/* ===================================
   Services Section
   =================================== */
.services {
    padding: 100px 0;
    background: var(--warm-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--cream);
    border: 1px solid rgba(27, 67, 50, 0.08);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--forest);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 20px;
    transition: background var(--transition);
}

.service-card:hover .service-icon {
    background: var(--forest-light);
}

.service-title {
    font-family: var(--serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--forest-dark);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-mid);
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: 100px 0;
    background: var(--cream);
}

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

.about-image-col {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 580/420;
}

.about-image-stack {
    position: absolute;
    bottom: -40px;
    right: -40px;
    z-index: 2;
}

.about-image-stack img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}

.about-image-stack-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: var(--radius-sm);
    z-index: -1;
}

.about-text-col {
    padding-top: 20px;
}

.about-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid rgba(27, 67, 50, 0.1);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-stat-divider {
    width: 1px;
    background: rgba(27, 67, 50, 0.15);
    align-self: stretch;
}

/* ===================================
   Why Us Section
   =================================== */
.why-us {
    padding: 100px 0;
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 168, 75, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(250, 248, 245, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.why-us .container {
    position: relative;
    z-index: 1;
}

.why-us .section-eyebrow {
    color: var(--gold);
}

.why-us .section-title {
    color: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.why-card {
    background: rgba(250, 248, 245, 0.06);
    border: 1px solid rgba(250, 248, 245, 0.1);
    border-radius: var(--radius);
    padding: 40px 36px;
    transition: all var(--transition);
}

.why-card:hover {
    background: rgba(250, 248, 245, 0.1);
    transform: translateY(-4px);
}

.why-number {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 16px;
}

.why-title {
    font-family: var(--serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 12px;
}

.why-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(250, 248, 245, 0.7);
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    padding: 100px 0;
    background: var(--warm-white);
}

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

.testimonial-card {
    background: var(--cream);
    border: 1px solid rgba(27, 67, 50, 0.08);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: all var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote-mark {
    font-family: var(--serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.5;
    position: absolute;
    top: 16px;
    left: 24px;
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 20px;
    padding-top: 24px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--forest);
}

/* ===================================
   CTA Banner
   =================================== */
.cta-banner {
    padding: 80px 0;
    background: var(--forest-dark);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(212, 168, 75, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 12px;
}

.cta-desc {
    font-size: 1rem;
    color: rgba(250, 248, 245, 0.7);
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

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

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--forest);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-detail-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

.contact-detail a,
.contact-detail span {
    font-size: 0.9375rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-detail a:hover {
    color: var(--forest);
}

/* Form */
.contact-form-col {
    background: var(--warm-white);
    border: 1px solid rgba(27, 67, 50, 0.08);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.form-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest-dark);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(27, 67, 50, 0.15);
    border-radius: var(--radius-sm);
    font-family: var(--sans);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
}

.form-success.show {
    display: block;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    background: var(--forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
}

.form-success h4 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest-dark);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--text-mid);
}

/* ===================================
   Map Section
   =================================== */
.map-section {
    background: var(--cream-dark);
}

.map-section iframe {
    width: 100%;
    height: 320px;
    filter: saturate(0.6) contrast(1.1);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--forest-dark);
    color: var(--cream);
    padding: 72px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(250, 248, 245, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 16px;
}

.footer-logo-icon {
    color: var(--cream);
}

.footer-tagline {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(250, 248, 245, 0.6);
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(250, 248, 245, 0.6);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact p {
    font-size: 0.875rem;
    color: rgba(250, 248, 245, 0.6);
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(250, 248, 245, 0.6);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: rgba(250, 248, 245, 0.4);
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-layout {
        gap: 48px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-right {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .hero-badge {
        left: 0;
        bottom: 20px;
    }
    
    .hero-image-accent {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    
    .about-image-stack {
        right: 0;
        bottom: -24px;
    }
    
    .about-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        justify-content: center;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .contact-form-col {
        padding: 24px;
    }
    
    .why-card {
        padding: 28px 24px;
    }
}

/* ===================================
   Animations
   =================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
