/* ================================================== */
/* RentDrive Pro Enhanced Styles - FlySE Inspired
/* Professional dark teal/navy design with gold accent
/* ================================================== */
/* ROOT VARIABLES: See css-variables.css */

/* ================================================== */
/* Dark Teal/Navy Gradient Sections - FlySE Style */
/* ================================================== */

.section-dark-blue,
.section-dark-teal {
    background: linear-gradient(135deg, #0a2540 0%, #0d3156 50%, #0a2540 100%);
    position: relative;
    color: #ffffff;
    padding: 60px 0;
}

.section-dark-navy {
    background: linear-gradient(180deg, #1a3a4a 0%, #0d2833 100%);
    color: #ffffff;
    padding: 60px 0;
}

.section-gradient-teal {
    background: linear-gradient(135deg, #0f4c4c 0%, #1a5f5f 50%, #0f4c4c 100%);
    color: #ffffff;
    padding: 60px 0;
}

.section-dark-blue::before,
.section-dark-teal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.section-dark-blue h1,
.section-dark-blue h2,
.section-dark-blue h3,
.section-dark-blue h4,
.section-dark-blue h5,
.section-dark-blue h6 {
    color: #ffffff;
}

.section-dark-blue p {
    color: rgba(255, 255, 255, 0.9);
}

.section-teal-accent {
    background: linear-gradient(135deg, #004d66 0%, #006680 50%, #008080 100%);
    color: #ffffff;
}

/* ================================================== */
/* Compact Spacing - Reduce White Space */
/* ================================================== */

.compact-section {
    padding: 30px 0 !important;
}

.compact-container {
    padding: 20px;
}

.compact-margin {
    margin: 15px 0;
}

.compact-grid {
    gap: 20px !important;
}

/* Reduce default spacers */
.spacer-compact {
    height: 20px;
}

.spacer-compact-double {
    height: 40px;
}

/* ================================================== */
/* Enhanced Button Animations */
/* ================================================== */

.btn-main,
.btn-primary,
button[type="submit"],
.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.btn-main:hover,
.btn-primary:hover,
button[type="submit"]:hover,
.cta-button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    background-color: #007BFF !important;
}

.btn-main:active,
.btn-primary:active,
button[type="submit"]:active,
.cta-button:active {
    transform: scale(0.98);
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ================================================== */
/* Scroll Fade-In Animations */
/* ================================================== */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    will-change: opacity, transform;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animation delays */
.fade-in-up:nth-child(1) { transition-delay: 0.1s; }
.fade-in-up:nth-child(2) { transition-delay: 0.2s; }
.fade-in-up:nth-child(3) { transition-delay: 0.3s; }
.fade-in-up:nth-child(4) { transition-delay: 0.4s; }
.fade-in-up:nth-child(5) { transition-delay: 0.5s; }
.fade-in-up:nth-child(6) { transition-delay: 0.6s; }

/* ================================================== */
/* Card Hover Effects */
/* ================================================== */

.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.hover-zoom img {
    transition: transform 0.4s ease;
    will-change: transform;
}

.hover-zoom:hover img {
    transform: scale(1.1);
}

/* ================================================== */
/* Icon Features Grid (Compact) */
/* ================================================== */

.feature-icon-box {
    text-align: center;
    padding: 25px 15px;
    background: #ffffff;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.feature-icon-box:hover {
    box-shadow: 0 8px 20px rgba(0, 31, 63, 0.1);
    transform: translateY(-3px);
}

.feature-icon-box i {
    font-size: 48px;
    color: #007BFF;
    margin-bottom: 15px;
    display: block;
}

.feature-icon-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.feature-icon-box p {
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* ================================================== */
/* Testimonials Slider Styles */
/* ================================================== */

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    margin: 20px 10px;
}

.testimonial-card::before {
    content: '"';
    font-size: 80px;
    color: rgba(0, 123, 255, 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info h5 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.testimonial-author-info span {
    font-size: 13px;
    color: #999;
}

.testimonial-stars {
    color: #FFB400;
    margin-top: 5px;
}

/* ================================================== */
/* How It Works Steps */
/* ================================================== */

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step-item {
    text-align: center;
    position: relative;
    padding: 30px 20px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007BFF, #0056b3);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.step-item h4 {
    margin-bottom: 10px;
    font-size: 20px;
}

.step-item p {
    font-size: 14px;
    line-height: 1.6;
}

/* ================================================== */
/* Newsletter/CTA Section */
/* ================================================== */

.newsletter-box {
    background: linear-gradient(135deg, #001F3F, #0A2540);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

.newsletter-box h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

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

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 12px 30px;
    background: #007BFF;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* ================================================== */
/* Featured Vehicles Grid */
/* ================================================== */

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

.vehicle-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.vehicle-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

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

.vehicle-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #007BFF;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.vehicle-card-content {
    padding: 20px;
}

.vehicle-card-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.vehicle-specs {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    font-size: 13px;
    color: #666;
}

.vehicle-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.vehicle-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e8e8e8;
}

.price-tag {
    font-size: 24px;
    font-weight: bold;
    color: #007BFF;
}

.price-tag span {
    font-size: 14px;
    color: #999;
    font-weight: normal;
}

.vehicle-card-content .btn-main {
    padding: 8px 20px;
    font-size: 14px;
}

/* ================================================== */
/* Filter Tabs/Buttons */
/* ================================================== */

.filter-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab {
    padding: 10px 25px;
    background: #f4f4f4;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #333;
}

.filter-tab:hover,
.filter-tab.active {
    background: #007BFF;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ================================================== */
/* FAQ Accordion */
/* ================================================== */

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: #333;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question.active {
    background: #f0f8ff;
    color: #007BFF;
}

.faq-icon {
    transition: transform 0.3s ease;
    font-size: 20px;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-answer.active {
    max-height: 500px;
    padding: 0 20px 20px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.8;
    color: #666;
}

/* ================================================== */
/* Parallax Effect */
/* ================================================== */

.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ================================================== */
/* Loading Spinner */
/* ================================================== */

.spinner {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 3px solid #007BFF;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ================================================== */
/* Responsive Optimizations */
/* ================================================== */

@media (max-width: 768px) {
    .section-dark-blue,
    .compact-section {
        padding: 25px 0 !important;
    }

    .feature-icon-box {
        padding: 20px 10px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vehicle-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="email"] {
        min-width: 100%;
    }
}

/* ================================================== */
/* Accessibility - Reduced Motion */
/* ================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ================================================== */
/* Smooth Scrolling */
/* ================================================== */

html {
    scroll-behavior: smooth;
}

/* ================================================== */
/* Utility Classes */
/* ================================================== */

.text-white {
    color: #ffffff !important;
}

.bg-white {
    background-color: #ffffff !important;
}

.text-center {
    text-align: center !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.p-20 {
    padding: 20px !important;
}

.hidden {
    display: none !important;
}

.overflow-hidden {
    overflow: hidden;
}

/* ================================================== */
/* FlySE-Style Experience Cards */
/* ================================================== */

.experience-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 420px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

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

.experience-card:hover img {
    transform: scale(1.08);
}

.experience-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

.experience-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-orange);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.experience-badge.teal {
    background: var(--accent-teal);
}

.experience-badge.coral {
    background: #ff6b6b;
}

.experience-card h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 700;
}

.experience-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.experience-features {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.experience-features li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.experience-features li::before {
    content: '✓';
    color: var(--accent-teal);
    font-weight: bold;
}

.experience-location {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.experience-location i {
    color: var(--accent-teal);
}

/* ================================================== */
/* FlySE-Style Icon Feature Boxes */
/* ================================================== */

.flyse-feature-box {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.flyse-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.flyse-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.flyse-feature-icon.blue {
    background: #e3f2fd;
    color: #1976d2;
}

.flyse-feature-icon.green {
    background: #e8f5e9;
    color: #388e3c;
}

.flyse-feature-icon.teal {
    background: #e0f2f1;
    color: #00897b;
}

.flyse-feature-icon.orange {
    background: #fff3e0;
    color: #f57c00;
}

.flyse-feature-box h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.flyse-feature-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ================================================== */
/* Section Headers - FlySE Style */
/* ================================================== */

.section-subtitle {
    color: var(--accent-teal);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent-teal);
}

.section-title-fancy {
    font-size: 42px;
    font-weight: 400;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.section-title-fancy span {
    font-style: italic;
    color: var(--accent-teal);
}

.section-dark-teal .section-subtitle {
    color: var(--accent-teal);
}

.section-dark-teal .section-subtitle::before,
.section-dark-teal .section-subtitle::after {
    background: var(--accent-teal);
}

.section-dark-teal .section-title-fancy {
    color: #fff;
}

/* ================================================== */
/* Image Grid Gallery - FlySE Style */
/* ================================================== */

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.image-grid-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}

.image-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-grid-item:hover img {
    transform: scale(1.1);
}

.image-grid-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

/* ================================================== */
/* Floating CTA Button - FlySE Style */
/* ================================================== */

.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background: var(--accent-teal);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(23, 162, 184, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-cta:hover {
    background: #138496;
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 12px 40px rgba(23, 162, 184, 0.5);
    color: #fff;
}

.floating-cta i {
    font-size: 18px;
}

/* ================================================== */
/* Scroll to Top Button */
/* ================================================== */

.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-teal);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 20px rgba(23, 162, 184, 0.3);
    transition: all 0.3s ease;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: #138496;
    transform: translateY(-3px);
}

/* ================================================== */
/* Trust Banner - FlySE Style */
/* ================================================== */

.trust-banner {
    background: linear-gradient(90deg, var(--accent-teal) 0%, #20c997 100%);
    padding: 20px 0;
    color: #fff;
}

.trust-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 15px;
    font-weight: 500;
}

.trust-banner-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-banner-item i {
    font-size: 18px;
}

/* ================================================== */
/* Card with Badge - FlySE Style */
/* ================================================== */

.badge-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.badge-card .badge-label {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-label.gold {
    background: var(--accent-gold);
    color: #1a1a2e;
}

.badge-label.teal {
    background: var(--accent-teal);
    color: #fff;
}

.badge-label.coral {
    background: #ff6b6b;
    color: #fff;
}

/* ================================================== */
/* Pricing Cards */
/* ================================================== */

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    color: #fff;
    transform: scale(1.05);
}

.pricing-card.featured h3,
.pricing-card.featured .pricing-price,
.pricing-card.featured p {
    color: #fff;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 30px;
    background: var(--accent-orange);
    color: #fff;
    padding: 8px 20px;
    border-radius: 0 0 10px 10px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 20px 0;
}

.pricing-price span {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--accent-teal);
}

/* ================================================== */
/* Counter Stats - Compact */
/* ================================================== */

.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 30px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-teal);
    line-height: 1;
}

.stat-label {
    font-size: 15px;
    color: #666;
    margin-top: 8px;
}

.section-dark-teal .stat-number {
    color: #fff;
}

.section-dark-teal .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

/* ================================================== */
/* Blog Cards - Compact */
/* ================================================== */

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 25px;
}

.blog-card-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
    display: flex;
    gap: 15px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-title a:hover {
    color: var(--accent-teal);
}

.blog-card-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ================================================== */
/* Gallery Grid */
/* ================================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 61, 62, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    font-size: 30px;
    color: #fff;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience-card {
        height: 350px;
    }
    
    .section-title-fancy {
        font-size: 32px;
    }
    
    .stats-row {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .floating-cta {
        bottom: 20px;
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* ================================================== */
/* Legal Pages - Privacy, Terms */
/* ================================================== */

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-content h2 {
    font-size: 24px;
    color: var(--primary-dark);
    margin: 35px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-teal);
}

.legal-content h3 {
    font-size: 18px;
    color: #333;
    margin: 25px 0 12px;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.legal-content .last-updated {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}
