/* Variables de couleurs et de style */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #c5a47e;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --transition: all 0.3s ease;
    --font-primary: 'Raleway', sans-serif;
}

/* Style de base */
body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
}

/* En-tête et navigation */
.header {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

.nav-links {
    display: flex;
    gap: 0rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Section héro */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.4) 100%
    );
}

.hero-content-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    width:80%;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: absolute;
    text-align: center;
    color: white;
    transition: opacity 1s ease;
    padding: 0 2rem;
}

.video-controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 20;
    display:none;
}

.control-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.control-btn i {
    font-size: 1.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
    z-index: 20;
}

.scroll-indicator i {
    font-size: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.hero-content h1 {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

/* Boutons */
.btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

/* Cartes de services et caractéristiques */
.service-card, .feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-card:hover, .feature-card:hover {
    transform: translateY(-10px);
}

/* Section tarifs */
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.05);
}

/* Formulaire */
.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.social-links {
    margin-bottom: 2rem;
}

.social-links a {
    color: white;
    margin: 0 15px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
}

.testimonials-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 2rem auto;
    max-width: 800px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.client-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
}

.client-info {
    flex-grow: 1;
}

.client-name {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.client-title {
    color: var(--secondary-color);
    margin: 0.25rem 0 0 0;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 1.5rem 0;
    font-style: italic;
}

.rating {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.rating .fas {
    margin-right: 0.25rem;
}

/* Structure générale des sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 600;
}

/* Grille pour les caractéristiques */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 5%;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Grille pour les véhicules */
.vehicle-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.vehicle-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

.vehicle-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.overlay-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.vehicle-card:hover img {
    transform: scale(1.05);
}

/* Responsive design */
@media (max-width: 992px) {
    .vehicle-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Grille pour les services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

/* Grille pour les tarifs */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

/* Grille pour le formulaire */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Grille pour les équipements */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.equipment-block {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reservation-section {
    padding: 4rem 0;
    background-color: #fff;
}

.reservation-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--font-primary); 
}

.grecaptcha-badge {
    display: none;
}

.reservation-form {
    max-width: 1200px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

.btn-reserver {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-reserver:hover {
    background-color: darken(var(--secondary-color), 10%);
}

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

.service-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.service-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.service-card {
    text-align: left;
    padding: 2rem;
}

.service-card > i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: var(--font-primary);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.activities-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.activity-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.activity-card h3 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.activity-card p {
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Burger menu styles moved to style.css to avoid conflicts */

/* Navigation responsive styles moved to style.css to avoid conflicts */

.advantages-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.advantages-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-card {
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advantages-list h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.advantages-list ul {
    list-style: none;
    padding: 0;
}

.advantages-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.advantages-list i {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.advantages-list h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.advantages-list p {
    color: var(--text-color);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .advantages-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-card {
        height: 400px;
    }
}

.youtube-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.youtube-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

.youtube-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

.youtube-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.youtube-overlay h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.youtube-overlay p {
    font-size: 1.5rem;
    max-width: 800px;
    margin-bottom: 2rem;
}

.why-us-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-us-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-10px);
}

.why-us-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.why-us-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.why-us-card p {
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Styles pour le bouton de sélection de limousine */
.choose-limo-btn {
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    z-index: 1000;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.choose-limo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.choose-limo-btn.active {
    background: var(--primary-color);
}

.choose-limo-btn i {
    transition: transform 0.3s ease;
}

.choose-limo-btn.active i {
    transform: rotate(180deg);
}

/* Styles pour le menu des limousines */
.limo-menu {
    background: rgba(255, 255, 255, 0.98);
    padding: 2rem 0;
    position: fixed;
    width: 100%;
    z-index: 999;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    top: -100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.limo-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    top: 80px; /* Ajustez selon la hauteur de votre header */
}

/* Style pour l'overlay */
.limo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.limo-overlay.active {
    opacity: 1;
    visibility: visible;
}
.reason-card,
.activity-card {
    text-align: center;
}
.limo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.limo-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid rgba(197, 164, 126, 0.1);
}

.limo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, var(--secondary-color), #e2c4a4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.limo-item:hover::before {
    transform: scaleX(1);
}

.limo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(197, 164, 126, 0.2);
    border-color: var(--secondary-color);
}

.limo-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--secondary-color), #e2c4a4);
    -webkit-text-fill-color: transparent;
}

.limo-item:hover i {
    transform: scale(1.1) translateY(-5px);
}

.limo-item span {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: var(--primary-color);
}

.limo-item small {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.limo-item:hover small {
    color: var(--secondary-color);
}

/* Badge de statut */
.limo-item .status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    background: #e8f5e9;
    color: #2e7d32;
}

/* Prix indicatif */
.limo-item .price-indicator {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Bouton découvrir */
.limo-item .discover-btn {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.limo-item:hover .discover-btn {
    opacity: 1;
    transform: translateY(0);
}

.limo-item .discover-btn:hover {
    background: var(--secondary-color);
    color: white;
}

/* Media queries */
@media (max-width: 1024px) {
    .limo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .limo-grid {
        grid-template-columns: 1fr;
    }
    
    .limo-item {
        padding: 1.5rem;
    }
}

/* Style pour le titre du menu des limousines */
.menu-title {
    text-align: center;
    margin-bottom: 2rem;
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.menu-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

/* Styles pour le logo et le nom de l'entreprise */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.company-name {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.service-name {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Ajustement du header pour le nouveau logo */
.header .logo a {
    padding: 0.5rem 0;
}

/* Style pour le nom de l'entreprise dans le footer */
.footer .contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

/* Media queries pour la responsivité */
@media (max-width: 768px) {
    .company-name {
        font-size: 1.5rem;
    }
    
    .service-name {
        font-size: 0.9rem;
    }
}

/* Section Partenaires */
.partners-section {
    padding: 4rem 0;
    background: var(--light-bg);
    position: relative;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(197, 164, 126, 0.3),
        transparent
    );
}

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

.partner-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 16/9;
}

.partner-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logo img {
    max-width: 80%;
    max-height: 60%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(197, 164, 126, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.partner-name {
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
}

.partner-hover i {
    color: white;
    font-size: 1.2rem;
}

/* Effets au survol */
.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(197, 164, 126, 0.2);
}

.partner-item:hover .partner-logo img {
    filter: grayscale(0);
    opacity: 1;
}

.partner-item:hover .partner-hover {
    opacity: 1;
    transform: translateY(0);
}

/* Animation des logos */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partner-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.partner-item:nth-child(2) { animation-delay: 0.2s; }
.partner-item:nth-child(3) { animation-delay: 0.4s; }
.partner-item:nth-child(4) { animation-delay: 0.6s; }
.partner-item:nth-child(5) { animation-delay: 0.8s; }

/* Media Queries */
@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .hero-content h1 {
        line-height:1em;
    
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-item {
        aspect-ratio: 2/1;
    }
}