/* MK Transports - Modern Styles */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #1a5f2a;
    --primary-dark: #0d3d16;
    --primary-light: #2d7a3f;
    --secondary: #f4a024;
    --secondary-dark: #e6920f;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #666666;
    --gray-light: #999999;
    --border: #e0e0e0;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: linear-gradient(180deg, #f6fbf7 0%, #ffffff 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.tagline {
    font-size: 11px;
    color: var(--gray);
}

/* Navigation */
.nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-list li {
    list-style: none;
}

.nav-list a {
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.02em;
    position: relative;
    padding: 12px 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-list a:hover {
    transform: translateY(-1px);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(26, 95, 42, 0.08);
    border-radius: 999px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(26, 95, 42, 0.12);
}

.call-btn:hover {
    background: var(--border);
}

.call-btn i {
    color: var(--primary);
}

.book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 25px;
    min-width: 150px;
    background: var(--gradient);
    border-radius: 25px;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.book-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 95, 42, 0.3);
}

.register-btn {
    background: #ff8f00;
}

.register-btn:hover {
    background: #e27b00;
}

.track-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: #ffffff;
    border: 2px solid var(--primary);
    border-radius: 25px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.track-btn:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-tertiary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #dcdcdc;
    border-radius: 50px;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.btn-tertiary:hover {
    background: var(--light);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #f7fcf8 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: 50%;
    left: 30%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(26, 95, 42, 0.1);
    color: var(--primary);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-badge i {
    color: var(--secondary);
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.03;
    margin-bottom: 20px;
}

.hero-text h1 span {
    display: inline-block;
    color: var(--primary);
    font-size: 56px;
}

.hero-text p {
    font-size: 18px;
    color: #55685c;
    margin-bottom: 34px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.btn {
    padding: 15px 34px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 95, 42, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    background: var(--light);
    border-color: var(--primary);
    color: var(--primary);
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 980px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(34, 49, 36, 0.12);
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
    padding: 20px 24px;
    z-index: 2000;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.cookie-banner.visible {
    display: flex;
}

.cookie-banner-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.cookie-banner-text {
    max-width: 620px;
}

.cookie-banner-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 14px;
    color: #4a554c;
    line-height: 1.6;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 10px;
        left: 12px;
        right: 12px;
        padding: 18px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

.register-btn {
    background: #ff8f00;
    color: #ffffff;
}

.register-btn:hover {
    background: #e27b00;
}

.register-hero {
    padding: 80px 0;
    background: #f7faf5;
}

.register-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.register-form-card {
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-radius: 28px;
    padding: 35px;
}

.register-form-card .form-header {
    margin-bottom: 28px;
}

.register-message {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 16px;
    font-weight: 600;
}

.register-message.success {
    background: rgba(38, 166, 91, 0.12);
    color: #1b5e20;
}

.register-message.error {
    background: rgba(239, 83, 80, 0.12);
    color: #b71c1c;
}

.small-note {
    margin-top: 18px;
    font-size: 14px;
    color: #55685c;
}

.small-note a {
    color: var(--primary);
    text-decoration: none;
}

.small-note a:hover {
    text-decoration: underline;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #55685c;
    background: rgba(26, 95, 42, 0.06);
    border-radius: 999px;
    padding: 12px 18px;
}

.feature i {
    width: 42px;
    height: 42px;
    background: rgba(26, 95, 42, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

/* Hero Form */
.hero-form {
    background: var(--white);
    padding: 45px;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(29, 70, 37, 0.08);
    border: 1px solid rgba(31, 103, 45, 0.08);
    position: relative;
}

.hero-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-header h3 i {
    color: var(--primary);
}

.form-header p {
    color: var(--gray);
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--light);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(26, 95, 42, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 17px;
}

/* Stats Section */
.stats-section {
    background: transparent;
    padding: 70px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 24px;
    text-align: center;
}

.stat-item {
    background: var(--white);
    border-radius: 24px;
    padding: 28px 22px;
    box-shadow: 0 25px 60px rgba(29, 70, 37, 0.08);
}

.stat-number {
    color: var(--primary);
}

.stat-suffix {
    color: var(--primary-dark);
}

.stat-label {
    color: #5b6b5f;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
}

.stat-suffix {
    font-size: 32px;
    font-weight: 600;
}

.stat-label {
    font-size: 15px;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(26, 95, 42, 0.1);
    color: var(--primary);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--gray);
    font-size: 16px;
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 26px;
    box-shadow: 0 28px 70px rgba(29, 70, 37, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(29, 70, 37, 0.12);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: rgba(26, 95, 42, 0.12);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.service-icon i {
    font-size: 28px;
    color: var(--white);
}

.service-card h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.service-link:hover {
    gap: 15px;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.step-card {
    flex: 1;
    max-width: 320px;
    text-align: center;
    position: relative;
    background: var(--white);
    padding: 38px 32px;
    border-radius: 28px;
    box-shadow: 0 26px 60px rgba(29, 70, 37, 0.08);
}

.step-number {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid var(--primary);
}

.step-icon i {
    font-size: 36px;
    color: var(--primary);
}

.step-card h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 10px;
}

.step-card p {
    color: var(--gray);
    font-size: 14px;
}

.step-connector {
    width: 80px;
    height: 3px;
    background: var(--border);
    margin-top: 50px;
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 10px solid var(--border);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.cta-box {
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 56px 40px;
    border-radius: 28px;
    color: var(--white);
    box-shadow: 0 30px 80px rgba(29, 70, 37, 0.12);
}

.cta-box h3 {
    font-size: 30px;
    margin-bottom: 16px;
}

.cta-box p {
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-box .btn {
    background: var(--white);
    color: var(--primary);
}

.cta-box .btn:hover {
    background: var(--secondary);
    color: var(--dark);
}

/* Coverage Section */
.coverage-section {
    padding: 100px 0;
    background: var(--light);
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coverage-text h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 15px;
}

.coverage-text > p {
    color: var(--gray);
    margin-bottom: 30px;
}

.coverage-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.city-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    box-shadow: var(--shadow);
}

.city-tag i {
    color: var(--primary);
}

.coverage-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-visual {
    width: 300px;
    height: 300px;
    position: relative;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-hover);
}

.map-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dot-1 { top: 30%; left: 30%; }
.dot-2 { top: 20%; right: 30%; }
.dot-3 { bottom: 30%; left: 40%; }
.dot-4 { top: 50%; right: 20%; }

.map-line {
    position: absolute;
    height: 3px;
    background: var(--secondary);
    transform-origin: left center;
}

.line-1 { width: 80px; top: 35%; left: 35%; transform: rotate(30deg); }
.line-2 { width: 60px; top: 45%; left: 45%; transform: rotate(-20deg); }
.line-3 { width: 70px; bottom: 35%; right: 35%; transform: rotate(45deg); }

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

/* Why Choose Us */
.why-us {
    padding: 100px 0;
    background: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.advantage-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantage-icon i {
    font-size: 28px;
    color: var(--white);
}

.advantage-card h3 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 10px;
}

.advantage-card p {
    color: var(--gray);
    font-size: 13px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info > .section-tag {
    background: var(--white);
}

.contact-info > h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-items {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 20px;
    color: var(--white);
}

.contact-item h4 {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 3px;
}

.contact-item p {
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
}

.contact-item a {
    color: var(--primary);
}

.quick-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    color: var(--dark);
    font-weight: 500;
    font-size: 14px;
}

.action-btn i {
    font-size: 24px;
    color: var(--primary);
}

.action-btn.whatsapp i {
    color: #25D366;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 25px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--light);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.contact-form select,
.contact-form textarea {
    margin-bottom: 20px;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-links a:hover {
    background: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--secondary);
    width: 20px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        z-index: 900;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 18px 20px;
        margin: 0;
        background: transparent;
    }

    .nav-list li {
        margin: 0;
    }

    .nav-list a {
        display: block;
        padding: 12px 0;
        color: var(--dark);
        font-weight: 600;
    }

    .header-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
    
    .header .container {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 12px;
        min-height: 70px;
    }

    .nav {
        width: 100%;
        margin-top: 10px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text p {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        display: none;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .coverage-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-text h1 span {
        font-size: 28px;
    }
    
    .hero-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
}