/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #3182ce;
    color: white;
}

.btn-primary:hover {
    background: #2c5282;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #011c35;
    border: 2px solid #3182ce;
}

.btn-secondary:hover {
    background: #3182ce;
    color: white;
    transform: translateY(-2px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a365d;
    color: white;
    padding: 20px;
    z-index: 1000;
    display: block;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-buttons button:first-child {
    background: #3182ce;
    color: white;
}

.cookie-buttons button:first-child:hover {
    background: #2c5282;
}

.cookie-buttons button:nth-child(2) {
    background: #68d391;
    color: #1a365d;
}

.cookie-buttons button:nth-child(2):hover {
    background: #48bb78;
}

.cookie-buttons button:last-child {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-buttons button:last-child:hover {
    background: white;
    color: #1a365d;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.brand-name {
    font-size: 24px;
    font-weight: bold;
    color: #1a365d;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #3182ce;
}

/* Hero Banner */
.hero-banner {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 15px;
}

/* About Section */
.about-section {
    background: #f7fafc;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #4a5568;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #1a365d;
}

/* Services Section */
.services-section {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a365d;
}

.service-card p {
    color: #4a5568;
    line-height: 1.6;
}

.services-link {
    text-align: center;
}

/* Fleet Section */
.fleet-section {
    background: #f7fafc;
}

.fleet-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.fleet-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 40px;
}

.fleet-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.fleet-category {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fleet-category h3 {
    color: #1a365d;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.fleet-category p {
    color: #4a5568;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 10px;
}

.faq-question {
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #3182ce;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #1a365d 0%, #3182ce 100%);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-icon {
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 12px 16px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 12px 24px;
    background: #68d391;
    color: #1a365d;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #48bb78;
}

/* Contact Section */
.contact-section {
    background: #f7fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-item h3 {
    color: #1a365d;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.6;
}

.social-media {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.social-media h3 {
    color: #1a365d;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: #1a365d;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #90cdf4;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
    color: #cbd5e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-features {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        min-width: auto;
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .fleet-categories {
        grid-template-columns: 1fr;
    }
}

/* Legal Pages Styles */
.legal-section {
    padding: 120px 0 80px 0;
    background: #f7fafc;
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.legal-intro {
    text-align: center;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.legal-text h2 {
    color: #1a365d;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    border-left: 4px solid #3182ce;
    padding-left: 15px;
}

.legal-text h3 {
    color: #2d3748;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-text p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 15px;
}

.legal-text ul, .legal-text ol {
    color: #4a5568;
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-text li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info {
    background: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3182ce;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 10px;
}

/* Services Detail Pages */
.services-hero {
    background: linear-gradient(135deg, #1a365d 0%, #3182ce 100%);
    color: white;
    padding: 150px 0 80px 0;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.hero-icon {
    margin-bottom: 30px;
}

.services-detail-section {
    padding: 80px 0;
    background: #f7fafc;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.service-detail-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-detail-icon {
    margin-bottom: 25px;
}

.service-detail-card h2 {
    color: #1a365d;
    font-size: 2rem;
    margin-bottom: 15px;
}

.service-summary {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 25px;
    font-weight: 500;
}

.service-features {
    margin-bottom: 25px;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 8px 0;
    color: #4a5568;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3182ce;
    font-weight: bold;
}

.service-pricing {
    background: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: center;
}

.service-pricing p {
    margin-bottom: 5px;
    color: #4a5568;
}

.service-pricing p:first-child {
    color: #1a365d;
    font-size: 1.2rem;
}

.services-cta {
    background: linear-gradient(135deg, #3182ce 0%, #1a365d 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Thank You Page */
.thank-you-section {
    padding: 150px 0 80px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #e6f3ff 100%);
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 30px;
    animation: checkmark 0.8s ease-in-out;
}

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

.thank-you-content h1 {
    color: #1a365d;
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.7;
}

.subscription-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.benefit-item span {
    color: #1a365d;
    font-weight: 600;
}

.next-steps {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.next-steps h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.next-steps p {
    color: #4a5568;
    line-height: 1.6;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thank-you-contact {
    padding: 60px 0;
    background: white;
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: #f7fafc;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-card h3 {
    color: #1a365d;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-card p {
    color: #4a5568;
    margin-bottom: 25px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #1a365d;
    font-weight: 600;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-table th {
    background: #3182ce;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.cookie-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:nth-child(even) {
    background: #f7fafc;
}

.cookie-management {
    background: #e6f3ff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    margin: 30px 0;
    border: 2px solid #3182ce;
}

.cookie-management h4 {
    color: #1a365d;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Active nav states */
.nav-menu a.active {
    color: #3182ce;
    font-weight: 600;
}

.footer-links a.active {
    color: #90cdf4;
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
    .legal-content {
        padding: 40px 20px;
    }
    
    .services-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card {
        padding: 30px 20px;
    }
    
    .thank-you-content h1 {
        font-size: 2.2rem;
    }
    
    .subscription-benefits {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        align-items: flex-start;
    }
    
    .contact-detail {
        justify-content: flex-start;
        text-align: left;
    }
    
    .cookie-table {
        font-size: 14px;
    }
    
    .cookie-table th, .cookie-table td {
        padding: 10px 8px;
    }
}

/* Individual Service Page Styles */
.service-overview {
    padding: 80px 0;
    background: white;
}

.overview-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.overview-content h2 {
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.overview-intro {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.highlight-item {
    background: #f7fafc;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-item h3 {
    color: #1a365d;
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 20px;
}

.highlight-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #f7fafc;
}

.pricing-section h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border: 3px solid #3182ce;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: "POPULAR";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #3182ce;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-card h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price {
    color: #3182ce;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-subtitle {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 25px;
    font-style: italic;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-card li {
    padding: 8px 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 25px;
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #68d391;
    font-weight: bold;
}

/* Booking Process Steps */
.booking-process-section {
    padding: 80px 0;
    background: white;
}

.booking-process-section h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3182ce;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px auto;
}

.step-item h3 {
    color: #1a365d;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.step-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Duration Benefits Timeline */
.duration-benefits-section {
    padding: 80px 0;
    background: white;
}

.duration-benefits-section h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.benefits-comparison {
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.timeline-item {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
}

.timeline-item.featured {
    border: 3px solid #3182ce;
    background: #e6f3ff;
}

.timeline-marker {
    position: absolute;
    top: -15px;
    left: 30px;
    background: #3182ce;
    color: white;
    width: 50px;
    height: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.timeline-item h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 10px;
}

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

.timeline-item li {
    padding: 8px 0;
    color: #4a5568;
    position: relative;
    padding-left: 25px;
}

.timeline-item li:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #3182ce;
    font-size: 0.8rem;
}

/* Fleet Showcase (Wedding) */
.wedding-fleet-section {
    padding: 80px 0;
    background: #f7fafc;
}

.wedding-fleet-section h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.fleet-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.fleet-item {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.fleet-item:hover {
    transform: translateY(-5px);
}

.fleet-icon {
    margin-bottom: 25px;
}

.fleet-item h3 {
    color: #1a365d;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.fleet-item p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.fleet-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fleet-features span {
    color: #3182ce;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Airport Coverage */
.airport-coverage-section {
    padding: 80px 0;
    background: #f7fafc;
}

.airport-coverage-section h2 {
    text-align: center;
    color: #1a365d;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.airports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.airport-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.airport-item:hover {
    transform: translateY(-5px);
}

.airport-icon {
    margin-bottom: 20px;
}

.airport-item h3 {
    color: #1a365d;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.airport-item p {
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 8px;
}

.airport-item p strong {
    color: #3182ce;
    font-size: 1.1rem;
}

/* Cookie Modal Styles */
.cookie-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

.cookie-modal-content {
    background-color: white;
    margin: 3% auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px 30px;
    border-bottom: 2px solid #e2e8f0;
}

.cookie-modal-header h2 {
    color: #1a365d;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #4a5568;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.cookie-modal-close:hover {
    background: #f7fafc;
    color: #1a365d;
}

.cookie-modal-body {
    padding: 30px;
}

.cookie-modal-body > p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cookie-category {
    margin-bottom: 25px;
    padding: 25px;
    background: #f7fafc;
    border-radius: 10px;
    border-left: 4px solid #3182ce;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cookie-category h3 {
    color: #1a365d;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.cookie-category p {
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 28px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e0;
    transition: 0.3s;
    border-radius: 28px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-slider {
    background-color: #3182ce;
}

.cookie-toggle input:focus + .cookie-slider {
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.3);
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(27px);
}

.cookie-toggle input:disabled + .cookie-slider {
    background-color: #68d391;
    cursor: not-allowed;
}

.cookie-toggle input:disabled + .cookie-slider:before {
    background-color: #f0fff4;
}

.cookie-modal-footer {
    padding: 20px 30px 30px 30px;
    border-top: 2px solid #e2e8f0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-modal-footer .btn {
    min-width: 120px;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.cookie-modal-footer .btn-primary {
    background: #3182ce;
    color: white;
    border-color: #3182ce;
}

.cookie-modal-footer .btn-primary:hover {
    background: #2c5aa0;
    border-color: #2c5aa0;
    transform: translateY(-1px);
}

.cookie-modal-footer .btn-secondary {
    background: #4a5568;
    color: white;
    border-color: #4a5568;
}

.cookie-modal-footer .btn-secondary:hover {
    background: #2d3748;
    border-color: #2d3748;
    transform: translateY(-1px);
}

.cookie-modal-footer .btn-outline {
    background: transparent;
    color: #4a5568;
    border-color: #cbd5e0;
}

.cookie-modal-footer .btn-outline:hover {
    background: #f7fafc;
    border-color: #a0aec0;
    transform: translateY(-1px);
}

/* Additional responsive styles */
@media (max-width: 768px) {
    .pricing-card.featured {
        transform: none;
    }
    
    .benefit-timeline {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .fleet-showcase {
        grid-template-columns: 1fr;
    }
    
    .airports-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-intro {
        font-size: 1.1rem;
    }
    
    .service-highlights {
        grid-template-columns: 1fr;
    }
    
    .cookie-modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .cookie-modal-header,
    .cookie-modal-body {
        padding: 20px;
    }
    
    .cookie-modal-footer {
        padding: 15px 20px 20px 20px;
        flex-direction: column;
    }
    
    .cookie-modal-footer .btn {
        width: 100%;
        min-width: auto;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}