/* ===== CSS Variables ===== */
:root {
    --background: hsl(210, 20%, 98%);
    --foreground: hsl(215, 25%, 15%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(215, 25%, 15%);
    --primary: hsl(215, 80%, 35%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(215, 25%, 92%);
    --secondary-foreground: hsl(215, 25%, 20%);
    --muted: hsl(215, 20%, 95%);
    --muted-foreground: hsl(215, 15%, 45%);
    --accent: hsl(25, 95%, 53%);
    --accent-foreground: hsl(0, 0%, 100%);
    --border: hsl(215, 20%, 88%);
    --ring: hsl(215, 80%, 35%);
    --radius: 0.5rem;
    
    --hero-gradient: linear-gradient(135deg, hsl(215, 80%, 25%) 0%, hsl(215, 70%, 35%) 50%, hsl(215, 60%, 45%) 100%);
    --hero-overlay: linear-gradient(135deg, hsla(215, 80%, 15%, 0.92) 0%, hsla(215, 70%, 25%, 0.88) 100%);
    --card-shadow: 0 4px 6px -1px hsla(215, 30%, 20%, 0.1), 0 2px 4px -2px hsla(215, 30%, 20%, 0.1);
    --card-shadow-hover: 0 20px 25px -5px hsla(215, 30%, 20%, 0.1), 0 8px 10px -6px hsla(215, 30%, 20%, 0.1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ===== Container ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

.text-primary {
    color: var(--primary);
}

.accent {
    color: var(--accent);
}

.lead {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    text-decoration: none;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn-xl {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background-color: hsl(215, 80%, 30%);
}

.btn-outline {
    background-color: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background-color: var(--muted);
    border-color: var(--primary);
}

.btn-hero {
    background-color: var(--accent);
    color: var(--accent-foreground);
    box-shadow: 0 4px 14px hsla(25, 95%, 53%, 0.4);
}

.btn-hero:hover {
    background-color: hsl(25, 95%, 48%);
    transform: translateY(-2px);
}

.btn-hero-outline {
    background-color: transparent;
    color: var(--primary-foreground);
    border: 2px solid hsla(0, 0%, 100%, 0.3);
}

.btn-hero-outline:hover {
    background-color: hsla(0, 0%, 100%, 0.1);
    border-color: hsla(0, 0%, 100%, 0.5);
}

.w-full {
    width: 100%;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: hsla(0, 0%, 100%, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--card-shadow);
    border-bottom: 1px solid var(--border);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .header-content {
        height: 5rem;
    }
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
    transition: color 0.3s ease;
}

.header.scrolled .logo {
    color: var(--primary);
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-desktop a {
    font-size: 0.875rem;
    font-weight: 500;
    color: hsla(0, 0%, 100%, 0.9);
    transition: color 0.2s ease;
}

.header.scrolled .nav-desktop a {
    color: var(--foreground);
}

.nav-desktop a:hover {
    color: var(--accent);
}

.header-cta {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .header-cta {
        display: flex;
    }
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-foreground);
    transition: color 0.2s ease;
}

.header.scrolled .phone-link {
    color: var(--foreground);
}

.phone-link:hover {
    color: var(--accent);
}

.phone-link i {
    width: 1rem;
    height: 1rem;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: var(--primary-foreground);
    cursor: pointer;
}

.header.scrolled .mobile-menu-btn {
    color: var(--foreground);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn i {
    width: 1.5rem;
    height: 1.5rem;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 1rem;
    background-color: var(--card);
    border-top: 1px solid var(--border);
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    padding: 0.75rem 0;
    font-weight: 500;
    color: var(--foreground);
    border-bottom: 1px solid var(--border);
}

.nav-mobile a:last-of-type {
    border-bottom: none;
}

.nav-mobile .btn {
    margin-top: 1rem;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 8rem 1rem 4rem;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-content {
        text-align: left;
        padding: 10rem 1rem 4rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: hsla(0, 0%, 100%, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    color: hsla(0, 0%, 100%, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    animation: fadeIn 0.6s ease-out forwards;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 2.25rem;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
    max-width: 48rem;
    animation: slideUp 0.6s ease-out forwards;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: hsla(0, 0%, 100%, 0.8);
    margin-bottom: 2rem;
    max-width: 42rem;
    animation: slideUp 0.6s ease-out 0.1s forwards;
    opacity: 0;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    animation: slideUp 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

@media (min-width: 640px) {
    .hero-ctas {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-ctas {
        justify-content: flex-start;
    }
}

.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    color: hsla(0, 0%, 100%, 0.9);
    transition: color 0.2s ease;
    animation: fadeIn 0.6s ease-out 0.3s forwards;
    opacity: 0;
}

.hero-phone:hover {
    color: var(--accent);
}

.hero-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--accent);
    border-radius: 50%;
}

.hero-phone-icon i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--accent-foreground);
}

.hero-phone-text {
    text-align: left;
}

.hero-phone-text span {
    display: block;
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
}

.hero-phone-text strong {
    font-size: 1.125rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: float 3s ease-in-out infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid hsla(0, 0%, 100%, 0.4);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-wheel {
    width: 0.375rem;
    height: 0.75rem;
    background-color: hsla(0, 0%, 100%, 0.6);
    border-radius: 9999px;
    animation: pulse 2s infinite;
}

/* ===== Sections ===== */
.section {
    padding: 4rem 1rem;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 2rem;
    }
}

.bg-card {
    background-color: var(--card);
}

.bg-muted {
    background-color: var(--muted);
}

.bg-gradient {
    background: var(--hero-gradient);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

.section-header h2 {
    font-size: 1.875rem;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
}

.section-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
}

.section-header.light h2 {
    color: var(--primary-foreground);
}

.section-header.light p {
    color: hsla(0, 0%, 100%, 0.8);
}

/* ===== Grids ===== */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-2 {
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

.grid-4 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.mb-12 {
    margin-bottom: 3rem;
}

/* ===== Icon Boxes ===== */
.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: hsla(215, 80%, 35%, 0.1);
    border-radius: 0.5rem;
}

.icon-box i {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
}

.icon-box-small {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: hsla(215, 80%, 35%, 0.1);
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.icon-box-small i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.icon-box-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--accent);
    border-radius: 0.5rem;
}

.icon-box-accent i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--accent-foreground);
}

/* ===== Trust Section ===== */
.trust-card {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.trust-card:hover {
    border-color: hsla(215, 80%, 35%, 0.3);
    box-shadow: var(--card-shadow-hover);
}

.trust-card h3 {
    font-size: 1.125rem;
    margin: 1rem 0 0.5rem;
    color: var(--foreground);
}

.trust-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ===== Services Section ===== */
.service-card-main {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card-main:hover {
    border-color: hsla(215, 80%, 35%, 0.3);
    box-shadow: var(--card-shadow-hover);
}

.service-image {
    position: relative;
    height: 14rem;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-main:hover .service-image img {
    transform: scale(1.05);
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(215, 25%, 15%, 0.6), transparent);
}

.service-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: hsla(215, 80%, 35%, 0.9);
    backdrop-filter: blur(4px);
    color: var(--primary-foreground);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.service-badge i {
    width: 1rem;
    height: 1rem;
}

.service-content {
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .service-content {
        padding: 2rem;
    }
}

.service-content h3 {
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .service-content h3 {
        font-size: 1.5rem;
    }
}

.service-content > p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.benefit-list {
    margin-bottom: 1.5rem;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--foreground);
}

.benefit-list li i {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
    margin-top: 0.125rem;
}

.service-card-small {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.service-card-small:hover {
    border-color: hsla(215, 80%, 35%, 0.3);
    box-shadow: var(--card-shadow-hover);
}

.service-card-small h3 {
    font-size: 1.125rem;
    color: var(--foreground);
    margin: 1rem 0 0.5rem;
}

.service-card-small p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ===== About Section ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content h2 {
    font-size: 1.875rem;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-content h2 {
        font-size: 2.25rem;
    }
}

.about-content .lead {
    margin-bottom: 1.5rem;
}

.about-content > p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-item h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.value-item p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background-color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: hsla(215, 80%, 35%, 0.3);
}

.stat-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 2.25rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ===== Why Choose Section ===== */
.reason-card {
    background-color: hsla(0, 0%, 100%, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.reason-card:hover {
    background-color: hsla(0, 0%, 100%, 0.15);
}

.reason-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.reason-card h3 {
    font-size: 1.125rem;
    color: var(--primary-foreground);
}

.reason-card p {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.8);
    padding-left: 4rem;
}

/* ===== Fleet Section ===== */
.fleet-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .fleet-card {
        padding: 2rem;
    }
}

.fleet-card:hover {
    border-color: hsla(215, 80%, 35%, 0.3);
    box-shadow: var(--card-shadow-hover);
}

.fleet-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: hsla(215, 80%, 35%, 0.1);
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.fleet-icon i {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
}

.fleet-card h3 {
    font-size: 1.125rem;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.fleet-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.fleet-highlight {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .fleet-highlight {
        padding: 2rem;
    }
}

.fleet-highlight > i {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.fleet-highlight h3 {
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.fleet-highlight p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ===== How It Works Section ===== */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    background-color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: hsla(215, 80%, 35%, 0.3);
    box-shadow: var(--card-shadow-hover);
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.step-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: hsla(215, 80%, 35%, 0.2);
}

.step-card h3 {
    font-size: 1.125rem;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ===== CTA Section ===== */
.cta-box {
    position: relative;
    background: var(--hero-gradient);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta-box {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .cta-box {
        padding: 4rem;
    }
}

.cta-decor-1, .cta-decor-2 {
    position: absolute;
    border-radius: 50%;
    background-color: hsla(0, 0%, 100%, 0.05);
}

.cta-decor-1 {
    width: 16rem;
    height: 16rem;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
}

.cta-decor-2 {
    width: 12rem;
    height: 12rem;
    bottom: 0;
    left: 0;
    transform: translate(-50%, 50%);
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-size: 1.875rem;
    color: var(--primary-foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .cta-content h2 {
        font-size: 3rem;
    }
}

.cta-content > p {
    font-size: 1.125rem;
    color: hsla(0, 0%, 100%, 0.8);
    max-width: 42rem;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 3fr 2fr;
        gap: 3rem;
    }
}

.contact-form-wrapper {
    order: 2;
}

@media (min-width: 1024px) {
    .contact-form-wrapper {
        order: 1;
    }
}

.contact-info-wrapper {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .contact-info-wrapper {
        order: 2;
    }
}

.contact-form {
    background-color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
}

@media (min-width: 768px) {
    .contact-form {
        padding: 2rem;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group:not(.form-row .form-group) {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    color: var(--foreground);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(215, 80%, 35%, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-foreground);
}

.form-group textarea {
    resize: vertical;
    min-height: 6rem;
}

.contact-info-box,
.team-box {
    background-color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.contact-info-box h3,
.team-box h3 {
    font-size: 1.125rem;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-item > div:last-child {
    display: flex;
    flex-direction: column;
}

.contact-info-item span {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.contact-info-item a,
.contact-info-item p {
    font-weight: 500;
    color: var(--foreground);
    transition: color 0.2s ease;
}

.contact-info-item a:hover {
    color: var(--primary);
}

.team-box h3 {
    margin-bottom: 1rem;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.team-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: hsla(215, 80%, 35%, 0.1);
    border-radius: 50%;
}

.team-avatar i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.team-member strong {
    display: block;
    font-weight: 600;
    color: var(--foreground);
}

.team-member span {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.quick-quote-box {
    background: var(--hero-gradient);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

.quick-quote-box h3 {
    font-size: 1.125rem;
    color: var(--primary-foreground);
    margin-bottom: 0.5rem;
}

.quick-quote-box p {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.8);
    margin-bottom: 1rem;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--foreground);
    color: var(--primary-foreground);
    padding: 4rem 1rem 2rem;
}

@media (min-width: 768px) {
    .footer {
        padding: 6rem 2rem 2rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-info .logo {
    font-size: 1.5rem;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
}

.footer-info p {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.7);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.footer-contact li i {
    width: 1rem;
    height: 1rem;
    color: var(--accent);
}

.footer-contact a,
.footer-contact span {
    color: hsla(0, 0%, 100%, 0.7);
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--accent);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, hsla(0, 0%, 100%, 0.2), transparent);
    margin-bottom: 2rem;
}

.footer-copyright {
    text-align: center;
    font-size: 0.875rem;
    color: hsla(0, 0%, 100%, 0.5);
}

/* ===== Toast ===== */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    box-shadow: var(--card-shadow-hover);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.toast-content > i {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(142, 76%, 36%);
    flex-shrink: 0;
}

.toast-content strong {
    display: block;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.toast-content p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    50% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
