/* ============================================
   RESET & GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red-600: #DC2626;
    --red-700: #B91C1C;
    --red-50: #FEF2F2;
    --red-100: #FEE2E2;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --blue-900: #111E3F;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: white;
    color: var(--gray-900);
}

#root {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#pageContainer {
    flex: 1;
}

/* ============================================
   NAVIGATION STYLES
   ============================================ */
.nav-bar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo-section {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 0.5rem;
}

.logo-img {
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 0.5rem;
    object-fit: cover;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--red-600);
}

.desktop-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: color 0.3s;
    padding: 0;
}

.nav-link:hover {
    color: var(--red-600);
}

.nav-link.active {
    color: var(--red-600);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% - 0.5rem);
    left: 0;
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 16rem;
    padding-top: 0.5rem;
    overflow: visible;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Invisible hover zone to prevent dropdown from closing */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
    background: transparent;
}

.dropdown:hover .dropdown-menu,
.dropdown .dropdown-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.75rem 1.25rem;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
    color: var(--gray-700);
}

.dropdown-item:hover {
    background: var(--red-600);
    color: white;
}

.btn-signup {
    background: var(--red-600);
    color: white;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 0 4px 6px rgba(220, 38, 38, 0.2);
}

.btn-signup:hover {
    background: var(--red-700);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 1.5rem;
    height: 2px;
    background: var(--gray-700);
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

.mobile-menu {
    display: none;
    background: white;
    border-bottom: 1px solid var(--gray-100);
    padding: 1rem;
    gap: 1rem;
    flex-direction: column;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--gray-700);
    font-weight: 500;
    padding: 0.5rem 0;
    cursor: pointer;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: var(--red-600);
}

.mobile-dropdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 1rem;
    border-left: 2px solid var(--gray-200);
}

.mobile-dropdown-menu.active {
    display: flex;
}

.mobile-dropdown-item {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--gray-600);
    font-weight: 500;
    padding: 0.5rem 0;
    cursor: pointer;
    transition: color 0.3s;
}

.mobile-dropdown-item:hover {
    color: var(--red-600);
}

.btn-signup.mobile {
    width: 100%;
    padding: 0.75rem 1.5rem;
}

/* Desktop/Mobile Breakpoints */
@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.slide-content {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

.slide-content-inner {
    max-width: 56rem;
    gap: 1.5rem;
}

.slide-title {
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.slide-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #f3f4f6;
    max-width: 32rem;
    margin: 0 auto;
}

.slide-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.slide-btn {
    background: white;
    color: var(--gray-900);
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.slide-btn:hover {
    background: #f3f4f6;
}

@media (min-width: 640px) {
    .slide-buttons {
        flex-direction: row;
    }
}

.slide-indicators {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    display: flex;
    gap: 0.75rem;
}

.indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.indicator.active {
    background: var(--red-600);
    width: 2rem;
}

/* ============================================
   CLIENTS SECTION
   ============================================ */
.clients-section {
    padding: 4rem 1rem;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    overflow: hidden;
}

.clients-header {
    max-width: 80rem;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.clients-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.3rem;
}

.marquee-container {
    position: relative;
    overflow: hidden;
}

.marquee {
    display: flex;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.marquee:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 3rem;
    height: 5rem;
    transition: all 0.3s;
    flex-shrink: 0;
}

.marquee-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

.marquee-text {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--gray-800);
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.gradient-mask-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 100%;
    background: linear-gradient(to right, var(--gray-50), transparent);
    z-index: 10;
    pointer-events: none;
}

.gradient-mask-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 2rem;
    height: 100%;
    background: linear-gradient(to left, var(--gray-50), transparent);
    z-index: 10;
    pointer-events: none;
}

/* ============================================
   BUTTON STYLES
   ============================================ */
.btn-primary {
    background: var(--red-600);
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--red-700);
}

.btn-secondary {
    background: white;
    color: var(--gray-900);
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--gray-50);
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.section-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
}

/* ============================================
   CARD STYLES
   ============================================ */
.card {
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: 2rem;
    padding: 2.5rem;
    transition: all 0.3s;
}

.card:hover {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--red-600);
}

.card-icon {
    width: 5rem;
    height: 5rem;
    background: transparent;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card:hover .card-icon {
    background: transparent;
    color: var(--gray-700);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-text {
    color: var(--gray-600);
    line-height: 1.625;
    font-weight: 500;
}

/* ============================================
   GRID STYLES
   ============================================ */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-2 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media (min-width: 768px) {
    .grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   PRICING TABLE STYLES
   ============================================ */
.pricing-table-container {
    background: white;
    border-radius: 3rem;
    padding: 2rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    overflow-x: auto;
}

.table-filters {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .table-filters {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.filter-group {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-select,
.filter-input {
    height: 3.5rem;
    padding: 0 1.5rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
}

.filter-select:focus,
.filter-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1);
    border-color: var(--red-600);
}

.filter-input::placeholder {
    color: var(--gray-400);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.table-head th {
    background: var(--gray-900);
    color: white;
    padding: 1.5rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-align: left;
}

.table-body tr {
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.2s;
}

.table-body tr:hover {
    background: var(--red-50);
}

.table-body td {
    padding: 1.25rem 2rem;
}

.table-body td:first-child {
    font-weight: 600;
    color: var(--gray-800);
}

.table-body td:nth-child(2) {
    color: var(--gray-600);
    font-weight: 500;
}

.time-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: var(--gray-100);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-700);
}

.cost-text {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--red-600);
}

.table-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.pagination-info {
    color: var(--gray-500);
    font-weight: 500;
}

.pagination-info strong {
    color: var(--gray-900);
}

.pagination-buttons {
    display: flex;
    gap: 0.5rem;
}

.pagination-btn {
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--red-600);
    color: white;
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ============================================
   FORM STYLES
   ============================================ */
.form-container {
    background: var(--gray-50);
    padding: 3rem;
    border-radius: 4rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-grid.full {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input,
.form-textarea,
.form-select {
    padding: 1rem 1.5rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1);
    border-color: var(--red-600);
}

.form-textarea {
    resize: vertical;
    min-height: 8rem;
}

.form-tabs {
    display: flex;
    gap: 0.375rem;
    padding: 0.375rem;
    background: var(--gray-100);
    border-radius: 1.25rem;
    margin-bottom: 2rem;
}

.form-tab {
    flex: 1;
    padding: 1rem;
    border: none;
    background: none;
    font-weight: 700;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

.form-tab.active {
    background: white;
    color: var(--red-600);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-tab:not(.active) {
    color: var(--gray-500);
}

/* ============================================
   SUCCESS MESSAGE
   ============================================ */
.success-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1rem;
}

.success-card {
    max-width: 28rem;
    width: 100%;
    background: white;
    border-radius: 3rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    text-align: center;
    gap: 2rem;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-100);
}

.success-icon {
    width: 6rem;
    height: 6rem;
    background: #DCFCE7;
    color: #16A34A;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
}

.success-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--gray-900);
}

.success-text {
    color: var(--gray-500);
    font-weight: 500;
}

/* ============================================
   IMAGE & MEDIA STYLES
   ============================================ */
.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    background: black;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero-section {
    position: relative;
    padding: 6rem 1rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 80rem;
    margin: 0 auto;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: var(--red-600);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.75;
    font-weight: 500;
    margin-bottom: 2rem;
    max-width: 48rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================
   STATS GRID
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--red-600);
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   MAP STYLES
   ============================================ */
.map-container {
    height: 600px;
    width: 100%;
    background: white;
    border-radius: 3rem;
    padding: 1rem;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.leaflet-container {
    border-radius: 2.5rem;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.footer {
    background: var(--red-600);
    color: white;
    padding: 6rem 1rem 3rem;
    margin-top: auto;
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.875rem;
    font-weight: 900;
    font-style: italic;
}

.footer-logo-img {
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 0.5rem;
    object-fit: cover;
}

.footer-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: white;
    color: var(--red-600);
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-link {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-link:hover {
    color: white;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ============================================
   UTILITIES
   ============================================ */
.hidden {
    display: none;
}

.text-center {
    text-align: center;
}

.text-red-600 {
    color: var(--red-600);
}

.text-gray-500 {
    color: var(--gray-500);
}

.text-gray-600 {
    color: var(--gray-600);
}

.text-gray-700 {
    color: var(--gray-700);
}

.text-gray-900 {
    color: var(--gray-900);
}

.bg-gray-50 {
    background: var(--gray-50);
}

.bg-white {
    background: white;
}

.font-bold {
    font-weight: 700;
}

.font-black {
    font-weight: 900;
}

.mt-4 {
    margin-top: 1rem;
}

.pt-4 {
    padding-top: 1rem;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 1024px) {
    .nav-container {
        height: 4rem;
    }

    .logo-img {
        width: 2.5rem;
        height: 2.5rem;
    }

    .logo-text {
        font-size: 1.125rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .card {
        padding: 1.5rem;
    }

    .grid-cols-3 {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .nav-container {
        height: 4rem;
    }

    .card {
        padding: 1.5rem;
    }

    .grid-cols-3 {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Inscription Page - 2 Column Layout */
[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
}
