/* Reset et variables CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #FFD700;
    --secondary-yellow: #FFA500;
    --dark-yellow: #B8860B;
    --black: #1a1a1a;
    --white: #ffffff;
    --gray: #333333;
    --light-gray: #f5f5f5;
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    --shadow-glow: 0 0 30px rgba(255, 215, 0, 0.3);
}

body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    background: var(--black);
    color: var(--white);
}

/* Hero Container */
.hero-container {
    min-height: 75vh;
    position: relative;
    background: #000000;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Background Animation */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.infinity-symbol {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 100px;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.infinity-symbol::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-yellow);
    clip-path: polygon(0% 50%, 25% 0%, 50% 50%, 75% 0%, 100% 50%, 75% 100%, 50% 50%, 25% 100%);
    animation: rotate 20s linear infinite;
}

.floating-tablets {
    position: absolute;
    width: 100%;
    height: 100%;
}

.tablet {
    position: absolute;
    width: 60px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 8px;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.tablet-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.tablet-2 {
    top: 60%;
    left: 15%;
    animation-delay: 2s;
}

.tablet-3 {
    top: 80%;
    right: 20%;
    animation-delay: 4s;
}

/* Header */
.hero-header {
    position: relative;
    z-index: 10;
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-yellow);
    text-shadow: var(--shadow-glow);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: calc(75vh - 80px);
}

.hero-text {
    animation: slideInLeft 1s ease-out;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
}

.taxi-text {
    color: var(--white);
    display: block;
    margin-bottom: 10px;
}

.loop-text {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    text-shadow: var(--shadow-glow);
    position: relative;
    flex-wrap: wrap;
}

.letter {
    font-size: inherit;
    z-index: 2;
}

.eye-container {
    position: relative;
    margin: 0 5px;
}

.eye {
    width: clamp(40px, 8vw, 80px);
    height: clamp(40px, 8vw, 80px);
    background: var(--white);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: blink 4s infinite;
}

.pupil {
    width: 50%;
    height: 50%;
    background: var(--black);
    border-radius: 50%;
    position: relative;
    animation: lookAround 6s ease-in-out infinite;
}

.pupil::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 30%;
    width: 20%;
    height: 20%;
    background: var(--white);
    border-radius: 50%;
}



.hero-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-yellow);
    text-shadow: var(--shadow-glow);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--black);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
}

.btn-secondary:hover {
    background: var(--primary-yellow);
    color: var(--black);
    transform: translateY(-3px);
}



/* Scroll Indicator */


/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes blink {
    0%, 90%, 100% {
        transform: scaleY(1);
    }
    95% {
        transform: scaleY(0.1);
    }
}

@keyframes lookAround {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-30%);
    }
    75% {
        transform: translateX(30%);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scaleX(1);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-50%) scaleX(1.1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Features Section */
.features-section {
    background: #000000;
    padding: 40px 0;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    transition: all 0.4s ease;
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
    border-radius: 20px;
}

.feature-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.feature-image-wrapper:hover .feature-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.feature-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: var(--primary-color);
}

/* No Sector Section */
.no-sector-section {
    background-color: #000000;
    padding: 80px 0;
}

.no-sector-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.no-sector-content {
    max-width: 100%;
}

.no-sector-title {
    color: #FFFFFF;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2.2rem;
    line-height: 1.5;
    margin-bottom: 30px;
    text-align: left !important;
    font-weight: 400;
}

.no-sector-subtitle {
    color: #CCCCCC;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: left !important;
    font-weight: 400;
}

/* Opportunities Showcase */
.opportunities-showcase {
    background: #000000;
    padding: 60px 0;
}

.opportunities-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.opportunities-main-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 60px;
    line-height: 1.2;
}

.opportunity-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-bottom: 80px;
  }
  
  .opportunity-block:nth-child(3) {
      grid-template-columns: 1fr 1fr;
  }
  
  .opportunity-block:nth-child(3) .opportunity-description {
      order: 1;
  }
  
  .opportunity-block:nth-child(3) .opportunity-visual {
      order: 2;
  }

.opportunity-block:last-child {
      margin-bottom: 0;
  }
  
  .opportunity-visual {
      position: relative;
  }

.opportunity-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.4s ease, filter 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.opportunity-visual:hover .opportunity-img {
    transform: scale(1.02);
    filter: brightness(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.opportunity-description {
    padding: 20px;
}

.opportunity-text {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        min-height: 70vh;
    }
    
    .hero-header {
        padding: 12px 0;
    }
    
    .hero-content {
        padding: 20px 15px;
        min-height: calc(70vh - 70px);
    }
    
    .loop-text {
        justify-content: center;
        gap: 2px;
    }
    
    .eye-container {
        margin: 0 2px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .cta-buttons {
        justify-content: center;
        align-items: center;
    }
    
    .btn-primary {
        max-width: 300px;
    }
    
    /* Features Section - Tablet */
    .features-section {
        padding: 30px 0;
    }
    
    .features-container {
        gap: 40px;
        padding: 0 30px;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    /* Opportunities Showcase - Tablet */
    .opportunities-showcase {
        padding: 40px 20px;
    }
    
    .opportunities-main-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .opportunity-block {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .opportunity-visual {
        text-align: center;
    }
    
    .opportunity-img {
        width: calc(100% - 40px);
        max-width: 400px;
    }
    
    .opportunity-description {
          padding: 0 20px;
      }
      
      .opportunity-text {
          font-size: 16px;
          text-align: left;
      }
      
      /* No Sector Section - Tablet */
      .no-sector-section {
          padding: 60px 0;
      }
      
      .no-sector-title {
          font-size: 1.8rem;
          line-height: 1.4;
          margin-bottom: 25px;
      }
      
      .no-sector-subtitle {
          font-size: 0.85rem;
      }
}

@media (max-width: 480px) {
      /* No Sector Section - Mobile */
      .no-sector-section {
          padding: 50px 0;
      }
      
      .no-sector-wrapper {
          padding: 0 15px;
      }
      
      .no-sector-title {
          font-size: 1.5rem;
          line-height: 1.4;
          margin-bottom: 20px;
      }
      
      .no-sector-subtitle {
          font-size: 0.8rem;
          line-height: 1.5;
      }
    
    .nav-menu {
        gap: 15px;
    }
    
    .infinity-symbol {
        width: 150px;
        height: 75px;
    }
}

/* Categories Section */
.categories-section {
    background-color: #000000;
    padding: 80px 0;
    text-align: center;
}

.categories-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
}

.category-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.category-image {
    width: 100%;
    max-width: 280px;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 50px;
    aspect-ratio: 3/4;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-title {
    color: #FFFFFF;
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.category-text {
    color: #CCCCCC;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}

/* Tablet Styles for Categories */
@media (max-width: 1024px) {
    .categories-section {
        padding: 60px 0;
    }
    
    .categories-grid {
        gap: 35px;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .category-text {
        font-size: 0.95rem;
    }
}

/* Mobile Styles for Categories */
@media (max-width: 768px) {
    .categories-section {
        padding: 50px 0;
    }
    
    .categories-wrapper {
        padding: 0 15px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .category-image {
        max-width: 250px;
        margin-bottom: 20px;
    }
    
    .category-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .category-text {
        font-size: 0.9rem;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        min-height: 65vh;
    }
    
    .hero-header {
        padding: 10px 0;
    }
    
    .hero-content {
        padding: 15px 15px;
        min-height: calc(65vh - 60px);
    }
    
    .hero-title {
        text-align: center;
    }
    
    .loop-text {
        justify-content: center;
        gap: 1px;
        flex-wrap: nowrap;
    }
    
    .eye-container {
        margin: 0 1px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .cta-buttons {
        justify-content: center;
        align-items: center;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 280px;
    }
    
    /* Features Section - Mobile */
    .features-section {
        padding: 20px 0;
    }
    
    .features-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    .feature-card {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .feature-image-wrapper {
        margin-bottom: 15px;
        width: calc(100% - 40px);
        max-width: 400px;
    }
    
    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    /* Opportunities Showcase - Mobile */
    .opportunities-showcase {
        padding: 30px 0;
    }
    
    .opportunities-wrapper {
        padding: 0 15px;
    }
    
    .opportunities-main-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .opportunity-block {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .opportunity-reverse {
        direction: ltr;
    }
    
    .opportunity-reverse .opportunity-visual {
        order: 2;
    }
    
    .opportunity-reverse .opportunity-description {
        order: 1;
    }
    
    .opportunity-description {
        padding: 10px 0;
    }
    
    .opportunity-text {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .opportunity-img {
        width: calc(100% - 40px);
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }
}

/* Section Clients Carrousel */
.taxi-loop-clients-showcase {
    background: #000000;
    padding: 80px 0;
    overflow: hidden;
}

.taxi-loop-clients-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.taxi-loop-clients-main-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
    font-family: 'Orbitron', sans-serif;
}

.taxi-loop-clients-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.taxi-loop-clients-carousel-track {
    display: flex;
    width: calc(200% + 40px);
    animation: taxi-loop-scroll-infinite 20s linear infinite;
    gap: 40px;
}

.taxi-loop-client-logo-item {
    flex: 0 0 auto;
    width: 280px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
    text-decoration: none;
    cursor: pointer;
}

.taxi-loop-client-logo-link {
    text-decoration: none;
    color: inherit;
}

.taxi-loop-client-logo-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
}

.taxi-loop-client-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.3s ease;
}

.taxi-loop-client-logo-item:hover .taxi-loop-client-logo-img {
    filter: brightness(1.1) contrast(1.2);
}

@keyframes taxi-loop-scroll-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 20px));
    }
}

/* Responsive Design pour le carrousel clients */
@media (max-width: 768px) {
    .taxi-loop-clients-showcase {
        padding: 60px 0;
    }
    
    .taxi-loop-clients-wrapper {
        padding: 0 15px;
    }
    
    .taxi-loop-clients-main-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .taxi-loop-clients-carousel-track {
        gap: 25px;
        animation-duration: 15s;
    }
    
    .taxi-loop-client-logo-item {
        width: 220px;
        height: 150px;
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .taxi-loop-clients-showcase {
        padding: 40px 0;
    }
    
    .taxi-loop-clients-main-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .taxi-loop-clients-carousel-track {
        gap: 20px;
        animation-duration: 12s;
    }
    
    .taxi-loop-client-logo-item {
        width: 180px;
        height: 120px;
        padding: 22px;
    }
    
    .taxi-loop-clients-carousel-container {
        mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
        -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    }
}

/* Contact Form Styles */
.taxi-loop-contact-form-section {
    background-color: #000;
    padding: 80px 0;
    position: relative;
}

.taxi-loop-contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.taxi-loop-contact-form-wrapper {
    background-color: #000;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.taxi-loop-form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.taxi-loop-form-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid #28a745;
}

.taxi-loop-form-error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

.taxi-loop-contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.taxi-loop-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.taxi-loop-form-label {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.taxi-loop-custom-select {
    position: relative;
    display: inline-block;
    width: 100%;
}

.taxi-loop-select {
    width: 100%;
    padding: 15px 45px 15px 15px;
    background-color: #FFD700;
    border: 2px solid #FFD700;
    border-radius: 8px;
    font-size: 16px;
    color: #000;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.taxi-loop-select:focus {
    outline: none;
    border-color: #FFA500;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.taxi-loop-select-arrow {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none;
    width: 20px;
    height: 20px;
    color: #000;
}

.taxi-loop-select-arrow svg {
    width: 100%;
    height: 100%;
}

.taxi-loop-form-input,
.taxi-loop-form-textarea {
    width: 100%;
    padding: 15px;
    background-color: #FFD700;
    border: 2px solid #FFD700;
    border-radius: 8px;
    font-size: 16px;
    color: #000;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.taxi-loop-form-input:focus,
.taxi-loop-form-textarea:focus {
    outline: none;
    border-color: #FFA500;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.taxi-loop-form-input::placeholder,
.taxi-loop-form-textarea::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

.taxi-loop-form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.taxi-loop-form-submit {
    background-color: #fff;
    color: #000;
    border: 2px solid #FFD700;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    align-self: center;
}

.taxi-loop-form-submit:hover {
    background-color: #FFD700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.taxi-loop-form-submit:active {
    transform: translateY(0);
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .taxi-loop-contact-form-section {
        padding: 60px 0;
    }
    
    .taxi-loop-contact-form-wrapper {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .taxi-loop-form-label {
        font-size: 14px;
    }
    
    .taxi-loop-select,
    .taxi-loop-form-input,
    .taxi-loop-form-textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .taxi-loop-form-submit {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .taxi-loop-contact-form-section {
        padding: 40px 0;
    }
    
    .taxi-loop-contact-form-wrapper {
        padding: 25px 15px;
        border-radius: 10px;
    }
    
    .taxi-loop-contact-form {
        gap: 20px;
    }
    
    .taxi-loop-select,
    .taxi-loop-form-input,
    .taxi-loop-form-textarea {
        padding: 10px;
        font-size: 14px;
    }
    
    .taxi-loop-form-textarea {
        min-height: 100px;
    }
}

/* Section Footer Contact */
.taxi-loop-footer-contact {
    background: #000000;
    padding: 80px 0 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.taxi-loop-footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.taxi-loop-footer-logo {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.taxi-loop-footer-logo-img {
    width: 240px;
    height: auto;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.taxi-loop-footer-logo:hover .taxi-loop-footer-logo-img {
    filter: brightness(1.3) contrast(1.2);
    transform: scale(1.05);
}

.taxi-loop-footer-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    font-family: 'Orbitron', sans-serif;
}

.taxi-loop-footer-email {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 60px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.taxi-loop-footer-email:hover {
    color: var(--primary-yellow);
}

.taxi-loop-footer-social {
    margin-top: 40px;
}

.taxi-loop-footer-social-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    font-family: 'Orbitron', sans-serif;
}

.taxi-loop-footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.taxi-loop-footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.taxi-loop-footer-social-link:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.2);
    color: var(--primary-yellow);
}

.taxi-loop-footer-social-icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

/* Responsive Design pour le footer */
@media (max-width: 768px) {
    .taxi-loop-footer-contact {
        padding: 60px 0 40px 0;
    }
    
    .taxi-loop-footer-wrapper {
        padding: 0 15px;
    }
    
    .taxi-loop-footer-logo-img {
        width: 180px;
    }
    
    .taxi-loop-footer-title {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }
    
    .taxi-loop-footer-email {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .taxi-loop-footer-social-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .taxi-loop-footer-social-icons {
        gap: 20px;
    }
    
    .taxi-loop-footer-social-link {
        width: 50px;
        height: 50px;
    }
    
    .taxi-loop-footer-social-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .taxi-loop-footer-contact {
        padding: 40px 0 30px 0;
    }
    
    .taxi-loop-footer-logo-img {
        width: 150px;
    }
    
    .taxi-loop-footer-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .taxi-loop-footer-email {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .taxi-loop-footer-social-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .taxi-loop-footer-social-icons {
        gap: 15px;
    }
    
    .taxi-loop-footer-social-link {
        width: 45px;
        height: 45px;
    }
    
    .taxi-loop-footer-social-icon {
        width: 18px;
        height: 18px;
    }
}