/* ========================================
   655 Auto Repair — Custom Styles
   Classic & Elegant · Forest Green + Off-White
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --forest-950: #0A1F14;
    --forest-900: #1B4332;
    --forest-800: #2D6A4F;
    --forest-700: #40916C;
    --forest-600: #52B788;
    --forest-500: #74C69D;
    --forest-100: #D8F3DC;
    --forest-50: #EFFAF3;
    
    --cream: #FAF9F6;
    --cream-dark: #F5F3EE;
    --warm-white: #FEFCF8;
    --warm-gray: #6B6560;
    --warm-gray-light: #9B9590;
    --warm-gray-dark: #3D3834;
    
    --gold: #C9A96E;
    --gold-light: #D4BA8A;
    
    --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(27, 67, 50, 0.06), 0 1px 2px rgba(27, 67, 50, 0.04);
    --shadow-md: 0 4px 16px rgba(27, 67, 50, 0.08), 0 2px 4px rgba(27, 67, 50, 0.04);
    --shadow-lg: 0 12px 40px rgba(27, 67, 50, 0.12), 0 4px 12px rgba(27, 67, 50, 0.06);
    --shadow-xl: 0 24px 60px rgba(27, 67, 50, 0.15);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--warm-gray-dark);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.25;
    color: var(--forest-900);
}

.section-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest-700);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: var(--forest-900);
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--warm-gray);
    max-width: 560px;
    line-height: 1.7;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cream);
    transition: var(--transition);
}

.navbar.scrolled .logo-mark {
    color: var(--forest-900);
}

.logo-text {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(250, 249, 246, 0.8);
    transition: var(--transition);
}

.navbar.scrolled .logo-text {
    color: var(--warm-gray);
}

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

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(250, 249, 246, 0.85);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--warm-gray-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: var(--transition);
}

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

.nav-link:hover {
    color: var(--cream);
}

.navbar.scrolled .nav-link:hover {
    color: var(--forest-900);
}

.nav-cta {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 10px 22px;
    border: 1.5px solid rgba(250, 249, 246, 0.5);
    border-radius: 100px;
    color: var(--cream);
    transition: var(--transition);
}

.navbar.scrolled .nav-cta {
    border-color: var(--forest-900);
    color: var(--forest-900);
}

.nav-cta:hover {
    background: var(--cream);
    color: var(--forest-900);
    border-color: var(--cream);
}

.navbar.scrolled .nav-cta:hover {
    background: var(--forest-900);
    color: var(--cream);
    border-color: var(--forest-900);
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.navbar.scrolled .hamburger,
.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after {
    background: var(--forest-900);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, 
            #1B4332 0%, 
            #2D6A4F 25%, 
            #40916C 50%, 
            #52B788 75%, 
            #74C69D 100%
        );
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(10, 31, 20, 0.6) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(82, 183, 136, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(45, 106, 79, 0.4) 0%, transparent 50%);
}

/* Decorative pattern overlay */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.03) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
    padding-top: 80px;
}

.hero-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 500;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-headline em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-sub {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: rgba(250, 249, 246, 0.75);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 16px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--cream);
    color: var(--forest-900);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid rgba(250, 249, 246, 0.4);
}

.btn-secondary:hover {
    background: rgba(250, 249, 246, 0.1);
    border-color: rgba(250, 249, 246, 0.7);
}

.btn-light {
    background: var(--cream);
    color: var(--forest-900);
    box-shadow: var(--shadow-md);
}

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

.btn-outline-light {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid rgba(250, 249, 246, 0.5);
}

.btn-outline-light:hover {
    background: rgba(250, 249, 246, 0.1);
    border-color: var(--cream);
}

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

/* Hero trust badges */
.hero-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(250, 249, 246, 0.7);
}

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

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(250, 249, 246, 0.5);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Services Section --- */
.services {
    padding: 120px 0;
    background: var(--cream);
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

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

.service-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    border: 1px solid rgba(27, 67, 50, 0.06);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--forest-800), var(--forest-600));
    opacity: 0;
    transition: var(--transition);
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--forest-50);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    color: var(--forest-800);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--forest-900);
    color: var(--cream);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--forest-900);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

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

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

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

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content .section-tag {
    text-align: left;
}

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

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

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--forest-800);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--warm-gray);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(27, 67, 50, 0.15);
}

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

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 0% 0%, rgba(82, 183, 136, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(201, 169, 110, 0.1) 0%, transparent 50%);
}

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

.why-us .section-header {
    text-align: center;
    margin-bottom: 64px;
}

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

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

.why-us .section-subtitle {
    color: rgba(250, 249, 246, 0.6);
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.feature {
    padding: 40px;
    background: rgba(250, 249, 246, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(250, 249, 246, 0.08);
    transition: var(--transition);
}

.feature:hover {
    background: rgba(250, 249, 246, 0.08);
    border-color: rgba(250, 249, 246, 0.15);
    transform: translateY(-2px);
}

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

.feature h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 12px;
}

.feature p {
    font-size: 0.95rem;
    color: rgba(250, 249, 246, 0.6);
    line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--forest-800) 0%, var(--forest-900) 50%, var(--forest-950) 100%);
}

.cta-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(82, 183, 136, 0.15) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-quote {
    position: relative;
    margin-bottom: 40px;
}

.cta-quote svg {
    margin: 0 auto 16px;
}

.cta-quote p {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: rgba(250, 249, 246, 0.85);
    line-height: 1.7;
}

.cta-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 40px;
}

.cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--cream);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(250, 249, 246, 0.65);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.contact-info .section-tag {
    text-align: left;
}

.contact-desc {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

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

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    font-size: 0.95rem;
    color: var(--warm-gray-dark);
    line-height: 1.6;
}

.contact-value-link {
    font-size: 0.95rem;
    color: var(--forest-800);
    font-weight: 500;
}

.contact-value-link:hover {
    color: var(--forest-600);
    text-decoration: underline;
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--warm-white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(27, 67, 50, 0.06);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--forest-900);
    margin-bottom: 32px;
}

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

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--warm-gray-dark);
    background: var(--cream);
    border: 1.5px solid rgba(27, 67, 50, 0.12);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--forest-700);
    background: var(--warm-white);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.form-input::placeholder {
    color: var(--warm-gray-light);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

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

.form-success svg {
    margin: 0 auto 16px;
    color: var(--forest-700);
}

.form-success h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--forest-900);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.95rem;
    color: var(--warm-gray);
}

/* --- Footer --- */
.footer {
    background: var(--forest-950);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(250, 249, 246, 0.08);
}

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

.footer-brand .logo-text {
    color: rgba(250, 249, 246, 0.6);
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(250, 249, 246, 0.5);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(250, 249, 246, 0.5);
}

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

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(250, 249, 246, 0.5);
    line-height: 1.8;
    margin-bottom: 4px;
}

.footer-contact a {
    color: rgba(250, 249, 246, 0.5);
}

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

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(250, 249, 246, 0.35);
}

.footer-bottom a {
    color: rgba(250, 249, 246, 0.35);
}

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

/* --- Reveal Animations --- */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    html {
        scroll-behavior: auto;
    }
    .scroll-indicator {
        animation: none;
    }
}

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--forest-900);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: var(--transition-slow);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        color: rgba(250, 249, 246, 0.85) !important;
        font-size: 1rem;
    }

    .nav-cta {
        border-color: rgba(250, 249, 246, 0.4);
        color: var(--cream) !important;
        text-align: center;
        width: 100%;
    }

    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .hero-content {
        padding-top: 60px;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .about-stats {
        flex-wrap: wrap;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 32px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .services,
    .about,
    .why-us,
    .cta-section,
    .contact {
        padding: 80px 0;
    }

    .service-card {
        padding: 28px 24px;
    }

    .feature {
        padding: 28px;
    }
}
