/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #1a1a2e;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
    font-weight: 600;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: min(2.5rem, 3vw) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 min(2.5rem, 3vw);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.logo a {
    display: block;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.site-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.542), 1.2rem);
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    flex: 1;
}

.site-title a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-title a:hover {
    color: #16213e;
}

.navbar {
    display: flex;
    justify-content: flex-end;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.nav-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.nav-link-disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.nav-link-disabled:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: none;
}

.nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Lien principal mis en avant */
.nav-link-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.nav-link-primary:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* Menu déroulant */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.arrow {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.nav-dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 0.25rem);
    left: 0;
    min-width: 250px;
    z-index: 1000;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -0.25rem;
    left: 0;
    right: 0;
    height: 0.25rem;
    background: transparent;
}

.dropdown-content-inner {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
}

.nav-dropdown:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content-inner a {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #1a1a2e;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content-inner a:last-child {
    border-bottom: none;
}

.dropdown-content-inner a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding-left: 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.8rem, 1.8rem + ((1vw - 0.2rem) * 0.833), 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 2rem 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

.hero-text {
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 1.7;
    margin: 1.5rem auto;
    max-width: 1000px;
    text-align: center;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-text:first-child {
    margin-top: 0;
}

.hero-text strong {
    font-weight: 700;
    color: #ffd700;
}

/* Separator */
.separator {
    border: none;
    border-top: 3px solid #667eea;
    margin: 3rem auto;
    width: min(10.5rem, 13vw);
    opacity: 1;
    border-radius: 2px;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: transparent;
}

.services .container {
    max-width: 1280px;
}

.services-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.8rem, 1.8rem + ((1vw - 0.2rem) * 0.833), 2.5rem);
    font-weight: 700;
    text-align: center;
    color: #1a1a2e;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.services-title strong {
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Navigation responsive */
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .nav-link,
    .dropdown-toggle {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.7rem;
    }

    .dropdown-content {
        position: static;
        padding-top: 0;
        margin-top: 0;
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content-inner {
        box-shadow: none;
        border-radius: 0 0 12px 12px;
    }

    .nav-dropdown:hover .dropdown-content {
        animation: none;
    }
}

a.service-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

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

.service-card-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.service-card-disabled:hover {
    transform: none;
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-image img {
    transform: scale(1.15);
}

.service-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a2e;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Coverage Section */
.coverage {
    background: transparent;
    padding: 4rem 0;
}

.coverage-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coverage h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

.coverage p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Interventions Map Section */
.interventions-map {
    background: transparent;
    padding: 5rem 0;
}

.interventions-map .container {
    max-width: 1280px;
}

.map-description {
    text-align: center;
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#map {
    height: 600px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin-bottom: 2rem;
    background: #ffffff;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #1a1a2e;
    font-weight: 500;
}

.legend-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.legend-marker-pigeons {
    background-color: #667eea;
}

.legend-marker-ragondins {
    background-color: #ffd700;
}

.legend-marker-rongeurs {
    background-color: #764ba2;
}

.map-legend-note {
    text-align: center;
    font-size: 0.95rem;
    color: #4a5568;
    font-style: italic;
    margin-top: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Custom Leaflet Marker Styles */
.custom-marker {
    background: none;
    border: none;
}

.marker-pin {
    width: 30px;
    height: 42px;
    border-radius: 50% 50% 50% 0;
    position: relative;
    transform: rotate(-45deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.marker-pin::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    background: #ffffff;
}

.marker-count {
    position: absolute;
    color: #1a1a2e;
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 2;
    transform: rotate(45deg);
    background: #ffffff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Custom Leaflet Popup Styles */
.leaflet-popup-content-wrapper {
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    padding: 0;
}

.leaflet-popup-content {
    margin: 0;
    font-family: 'Jost', sans-serif;
}

.marker-popup {
    padding: 1.5rem;
    min-width: 250px;
}

.marker-popup h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: #1a1a2e;
    margin: 0 0 1rem 0;
    font-weight: 700;
    border-bottom: 3px solid #667eea;
    padding-bottom: 0.5rem;
}

.marker-popup p {
    font-size: 1rem;
    color: #4a5568;
    margin: 0 0 0.75rem 0;
}

.marker-popup strong {
    color: #667eea;
    font-weight: 700;
}

.marker-popup ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.marker-popup li {
    font-size: 0.95rem;
    color: #1a1a2e;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.marker-popup li:last-child {
    border-bottom: none;
}

.leaflet-popup-tip {
    background: #ffffff;
}

/* Responsive map */
@media (max-width: 768px) {
    #map {
        height: 400px;
        border-radius: 15px;
    }

    .interventions-map {
        padding: 3rem 0;
    }

    .map-legend {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .legend-item {
        justify-content: center;
    }

    .marker-popup {
        padding: 1rem;
        min-width: 200px;
    }

    .marker-popup h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    #map {
        height: 300px;
    }

    .map-description {
        font-size: 1rem;
    }
}

/* Page Header for internal pages */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Legal and content pages */
.legal-content, .about-content, .faq-content {
    padding: 4rem 0;
    background: transparent;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-wrapper h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    color: #1a1a2e;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #667eea;
    padding-bottom: 0.75rem;
    font-weight: 700;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-wrapper p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #4a5568;
}

.content-wrapper ul {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

.content-wrapper li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: #4a5568;
}

/* FAQ specific styles */
.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border-left: 5px solid #667eea;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.faq-item p {
    margin-bottom: 0;
}

/* Service detail pages */
.service-content {
    padding: 4rem 0;
    background: transparent;
}

.service-detail-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto 2rem auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-content .content-wrapper h2 {
    text-align: center;
    border-bottom: none;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.service-content .content-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.service-content .faq-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-cta {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    text-align: center;
    border: none;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.service-cta h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.service-cta p {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.service-cta a {
    color: #ffd700;
    font-weight: 700;
    text-decoration: underline;
}

.service-cta a:hover {
    text-decoration: none;
}

.faq-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #ffffff;
    border-radius: 50px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-link:hover {
    background: #ffffff;
    color: #667eea !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Logo link styling */
.logo a {
    text-decoration: none;
    color: inherit;
}

/* Contact page */
.contact-content {
    padding: 4rem 0;
    background: transparent;
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 0.75rem;
}

.contact-info a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Jost', sans-serif;
    color: #1a1a2e;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

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

.file-upload {
    border: 3px dashed #e9ecef;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload:hover {
    border-color: #667eea;
    background: #ffffff;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload-text {
    color: #4a5568;
    font-size: 1rem;
    margin: 0;
}

.submit-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Jost', sans-serif;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.submit-button:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact-info {
        padding: 2rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: min(6.5rem, 8vw) 0;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 30% 45% 20%;
    gap: 2rem;
    align-items: start;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-column h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 2rem + ((1vw - 0.2rem) * 1.083), 2.65rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.footer-column-1 h2 {
    text-align: right;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-column-2 p {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 0;
    color: #e9ecef;
}

.footer-column-2 a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-column-2 a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.footer-column-3 h2 {
    font-family: 'Jost', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #e9ecef;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Jost', sans-serif;
    display: inline-block;
}

.footer-links a:hover {
    color: #667eea;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .footer-column-1 h2 {
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-links a:hover {
        transform: none;
    }

    .content-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0 2rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .services {
        padding: 3rem 0;
    }

    .coverage {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}
