* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    overflow-x: hidden;
}

:root {
    --red: #DC2626;
    --black: #0a0a0a;
    --yellow: #FCD34D;
    --light-gray: #f5f5f5;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 5%;
    box-shadow: 0 2px 20px rgba(220, 38, 38, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo span {
    color: var(--red);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.cta-button {
    background: var(--red);
    color: white;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--red);
}

.cta-button:hover {
    background: transparent;
    color: var(--red);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--red) 0%, #991b1b 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content h1 .highlight {
    color: var(--yellow);
}

.hero-content p {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    background: var(--red);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--red);
    font-size: 1.05rem;
}

.btn-primary:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--yellow);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--yellow);
    font-size: 1.05rem;
}

.btn-secondary:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logistics-graphic {
    position: relative;
    width: 100%;
    max-width: 600px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.graphic-element {
    position: absolute;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.plane-icon {
    position: absolute;
    top: 10%;
    right: -10%;
    animation: fly 8s linear infinite;
}

@keyframes fly {
    0% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(30px) translateY(-30px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

.ship-icon {
    position: absolute;
    bottom: 15%;
    left: -5%;
    animation: wave 4s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    50% {
        transform: translateX(10px) rotate(2deg);
    }
}

.box-icon {
    position: absolute;
    top: 50%;
    left: 10%;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.circle-decoration {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--yellow));
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -30px;
    left: -30px;
    animation-direction: reverse;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(252, 211, 77, 0.2);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--yellow);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #d1d5db;
    font-size: 0.95rem;
}

/* Services Section */
.services {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

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

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--black) 0%, var(--red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--red), var(--yellow));
    transition: height 0.3s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
    transition: all 0.4s ease;
    opacity: 0;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(220, 38, 38, 0.15);
    border-color: var(--red);
}

.service-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--red), #991b1b);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 3rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.service-card:hover .service-icon::before {
    left: 100%;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.2rem;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--red);
}

.service-card p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.8rem 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-features li::before {
    content: '✓';
    color: var(--red);
    font-weight: bold;
    font-size: 1.3rem;
    width: 25px;
    height: 25px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-card:hover .service-features li {
    color: var(--black);
    transform: translateX(5px);
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--red), #991b1b);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: absolute;
    top: 2rem;
    right: 2rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

/* Specific Service Card Styles */
.service-card.air-cargo .service-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.service-card.air-cargo:hover {
    border-color: #3b82f6;
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.15);
}

.service-card.air-cargo .service-badge {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.service-card.sea-cargo .service-icon {
    background: linear-gradient(135deg, #0891b2, #0e7490);
}

.service-card.sea-cargo:hover {
    border-color: #0891b2;
    box-shadow: 0 25px 60px rgba(8, 145, 178, 0.15);
}

.service-card.sea-cargo .service-badge {
    background: linear-gradient(135deg, #0891b2, #0e7490);
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
}

.service-card.frozen-shipment .service-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.service-card.frozen-shipment:hover {
    border-color: #06b6d4;
    box-shadow: 0 25px 60px rgba(6, 182, 212, 0.15);
}

.service-card.frozen-shipment .service-badge {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.service-card.dhl-express .service-icon {
    background: linear-gradient(135deg, #eab308, #ca8a04);
}

.service-card.dhl-express:hover {
    border-color: #eab308;
    box-shadow: 0 25px 60px rgba(234, 179, 8, 0.15);
}

.service-card.dhl-express .service-badge {
    background: linear-gradient(135deg, #eab308, #ca8a04);
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
}

.service-card.fedex-service .service-icon {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

.service-card.fedex-service:hover {
    border-color: #7c3aed;
    box-shadow: 0 25px 60px rgba(124, 58, 237, 0.15);
}

.service-card.fedex-service .service-badge {
    background: linear-gradient(135deg, #7c3aed, #5b21b6);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 5%;
    background: white;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
    padding: 1rem 0;
}

.testimonials-wrapper {
    display: flex;
    gap: 2rem;
    animation: slideTestimonials 30s linear infinite;
    width: fit-content;
}

.testimonials-wrapper:hover {
    animation-play-state: paused;
}

@keyframes slideTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    width: 350px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    flex-shrink: 0;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--yellow);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: var(--red);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    min-height: 100px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.author-info p {
    color: #6b7280;
    font-size: 0.85rem;
}

.rating {
    margin-top: 1rem;
    color: var(--yellow);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* Why Choose Us */
.why-choose {
    padding: 6rem 5%;
    background: var(--black);
    color: white;
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--yellow);
}

.why-content p {
    font-size: 1.1rem;
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features-list {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.feature-text p {
    color: #9ca3af;
    font-size: 0.95rem;
}

/* Our Offices Section */
.offices-section {
    padding: 6rem 5%;
    background: white;
}

.offices-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.office-card {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--red), var(--yellow));
}

.office-card:hover {
    border-color: var(--red);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
}

.office-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--red), #991b1b);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.office-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.office-location {
    color: var(--red);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office-address {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.office-contact {
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.office-contact p {
    color: #4b5563;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office-contact a {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.office-contact a:hover {
    color: #991b1b;
}

.office-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 1rem;
}

/* Footer */
footer {
    background: var(--black);
    color: white;
    padding: 4rem 5% 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    font-size: 1.8rem;
    color: var(--yellow);
    margin-bottom: 1rem;
    font-weight: 800;
}

.footer-about p {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--yellow);
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #6b7280;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: white;
    color: #0a0a0a;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    white-space: nowrap;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .service-card {
        padding: 2.5rem 2rem;
    }
    
    .section-header h2 {
        font-size: 2.8rem;
    }
    
    .why-container {
        grid-template-columns: 1fr;
    }
    
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-card {
        width: 320px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .services {
        padding: 4rem 3%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    .service-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        padding: 4rem 5%;
    }
    
    .testimonials-slider {
        margin-top: 2rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .testimonials-slider::-webkit-scrollbar {
        display: none;
    }
    
    .testimonials-wrapper {
        animation: slideTestimonials 25s linear infinite;
    }
    
    .testimonial-card {
        width: 280px;
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        min-height: auto;
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: 0.8rem;
        left: 1rem;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .author-info h4 {
        font-size: 0.95rem;
    }
    
    .author-info p {
        font-size: 0.8rem;
    }
    
    .rating {
        font-size: 1rem;
        margin-top: 0.8rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .testimonials {
        padding: 3rem 3%;
    }
    
    .testimonials-wrapper {
        animation: slideTestimonials 20s linear infinite;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        width: 260px;
        padding: 1.5rem 1.25rem;
    }
    
    .testimonial-card::before {
        font-size: 2.5rem;
        top: 0.5rem;
        left: 0.8rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .author-info h4 {
        font-size: 0.9rem;
    }
    
    .author-info p {
        font-size: 0.75rem;
    }
    
    .rating {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .testimonial-card {
        width: 240px;
        padding: 1.25rem 1rem;
    }
    
    .testimonial-text {
        font-size: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
}
