:root {
    --primary: #1a1c1e; /* Black */
    --secondary: #333;
    --accent: #857d5e; /* Gold */
    --surface: #ffffff;
    --background: #ffffff;
    --text-main: #1a1c1e;
    --text-muted: #666;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.08);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a { text-decoration: none; color: inherit; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Nav */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--primary);
}

.logo i { font-size: 1.5rem; color: var(--accent); }


.nav-links {
    display: flex;
    gap: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-links a {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    transition: color 0.3s;
    position: relative;
    padding: 10px 15px;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 1.2rem;
    color: var(--text-main);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 2100;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.desktop-only { display: block; }

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .desktop-only { display: none; }
    .nav-icons i:not(.fa-heart), .nav-icons .fa-globe { display: none; }
    .logo span { font-size: 0.9rem; }
    .logo i { font-size: 1.2rem; }
}


/* Ticker Strip */
.ticker-wrap {
    width: 100%;
    background: #000;
    color: #fff;
    overflow: hidden;
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 700;
    border-bottom: 2px solid var(--accent);
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker span {
    padding: 0 40px;
}

.ticker span i { color: var(--accent); margin-left: 8px; }

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


.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(133, 125, 94, 0.3);
    background: var(--secondary);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary); /* Black background for premium feel */
    z-index: 2000;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--accent);
    cursor: pointer;
}

.mobile-menu.active { right: 0; }

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.mobile-menu-content a {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mobile-menu-content a:hover {
    color: var(--accent);
}

.desktop-only { display: block; }
@media (max-width: 768px) {
    .desktop-only { display: none; }
}


/* Hero Carousel */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.carousel {
    height: 100%;
    width: 100%;
    position: relative;
}

.carousel-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.carousel-item.active { opacity: 1; z-index: 1; }

.carousel-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.carousel-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
    color: #fff;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease both;
}

.hero p {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 40px;
}

.neon-btn {
    background: transparent;
    border: 2px solid var(--accent);
    color: #fff;
    padding: 15px 40px;
    border-radius: 4px;
    font-size: 1.5rem;
    font-weight: 900;
    text-shadow: 0 0 15px var(--accent);
    box-shadow: inset 0 0 10px var(--accent), 0 0 20px var(--accent);
    transition: all 0.3s ease;
    display: inline-block;
}

.neon-btn:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 40px var(--accent);
}

/* Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 60px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.indicator.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--accent);
    animation: progress 5s linear forwards;
}


@keyframes progress {
    from { width: 0; }
    to { width: 100%; }
}


/* Sections */
section:not(.hero) { padding: 80px 0; }
.hero { padding: 0; }

.page-header {
    padding: 120px 0 60px;
    background: #f8fafc;
    border-bottom: 1px solid #eee;
}

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

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-muted);
    font-weight: 500;
}


@media (max-width: 768px) {
    section:not(.hero) { padding: 50px 0; }
    .page-header { padding: 100px 0 40px; }
}


/* Grid Layouts */
.grid {
    display: grid;
    gap: 32px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

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

@media (max-width: 768px) {
    .grid-4, .grid-3, .grid-2 { 
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    
    .section-header-alt {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    
    .header-left {
        width: 100%;
        justify-content: center;
    }
    
    section:not(.hero) { padding: 60px 0; }
    .hero { min-height: 500px; }
}



.route-banner {
    position: relative;
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: block;
}

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

.route-banner:hover img { transform: scale(1.05); }

.route-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px 20px;
    color: #fff;
    text-align: right;
}

.route-banner-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

/* Routes Slider */
.routes-slider-wrap {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    padding: 10px 0 30px;
}

.routes-slider-wrap.active {
    cursor: grabbing;
}

.routes-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.1s ease;
    will-change: transform;
    user-select: none;
    -webkit-user-drag: none;
}

.slider-item {
    flex: 0 0 350px; /* Fixed width for slider items */
    max-width: 350px;
}

@media (max-width: 768px) {
    .slider-item {
        flex: 0 0 280px;
        max-width: 280px;
    }
    
    .routes-slider-wrap {
        overflow-x: auto; /* Allow touch scroll on mobile */
        -webkit-overflow-scrolling: touch;
        cursor: default;
    }
}


.route-banner-content p {
    font-size: 0.85rem;
    opacity: 0.9;
    color: var(--accent);
    font-weight: 700;
}

.card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.02);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card-body { padding: 28px; }

.card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-main);
}

.card-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
}

.card-features span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-features i { color: var(--primary); font-size: 0.9rem; }

/* Vehicles specific */
.vehicle-card .card-img { 
    height: 200px; 
    background: #fdfdfd;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(0,0,0,0.02);
}

.vehicle-card .card-img img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.vehicle-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.price-tag {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: -2px;
}

.price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-main);
}

.price span { font-size: 0.8rem; font-weight: 700; margin-right: 4px; }

.book-link {
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.book-link:hover { gap: 12px; }

/* Vehicle Details Page */
.vehicle-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.breadcrumb {
    margin-bottom: 24px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.vehicle-gallery-main {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 24px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vehicle-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vehicle-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 16px;
}

.thumb-item {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 90px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumb-item:hover { border-color: var(--primary); }
.thumb-item img { width: 100%; height: 100%; object-fit: cover; }

.sidebar-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.02);
    position: sticky;
    top: 120px;
}

.status-pill {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent);
    color: #fff;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.sidebar-card h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 8px; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    background: #f8fafc;
    padding: 16px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.feature-item i { color: var(--primary); font-size: 1.2rem; margin-bottom: 4px; }
.feature-item .label { font-size: 0.65rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; }
.feature-item .value { font-size: 0.95rem; font-weight: 900; }

.details-section { margin-top: 32px; }
.details-section h4 { font-weight: 900; margin-bottom: 12px; border-bottom: 2px solid var(--accent); display: inline-block; padding-bottom: 4px; }
.details-content { color: #555; font-size: 0.9rem; line-height: 1.7; }

.booking-card {
    margin-top: 40px;
    background: var(--text-main);
    color: #fff;
    padding: 30px;
    border-radius: var(--radius-md);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.price-value { font-size: 1.8rem; font-weight: 900; color: var(--accent); }
.full-width { display: block; text-align: center; width: 100%; }

@media (max-width: 1024px) {
    .vehicle-grid { grid-template-columns: 1fr; }
    .sidebar-card { position: static; }
    .vehicle-gallery-main { height: 400px; }
}

@media (max-width: 768px) {
    .vehicle-gallery-main { height: 300px; padding: 10px; }
    .sidebar-card { padding: 30px 20px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
}


/* Reviews */
.reviews-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.reviews-grid::-webkit-scrollbar { display: none; }

.review-card {
    min-width: 350px;
    scroll-snap-align: center;
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.stars { color: #fbbf24; margin-bottom: 16px; }

/* Section Header Alt */
.section-header-alt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.header-title-alt {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.view-all-btn {
    padding: 8px 24px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #444;
}

.slider-arrows {
    display: flex;
    gap: 10px;
    color: #aaa;
    font-size: 0.8rem;
}

/* Vehicle Card Hada Style */
.vehicle-card-hada {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.vehicle-card-hada:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.card-img-hada {
    position: relative;
    height: 200px;
    background: #fdfdfd;
}

.card-img-hada img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.floating-icons {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.icon-circle {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: #444;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.icon-circle:hover { background: var(--accent); color: #fff; }

.card-body-hada {
    padding: 20px;
    text-align: center;
}

.card-body-hada h3 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
}

.price-tag-hada {
    font-size: 1.1rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 20px;
}

.price-tag-hada span { color: var(--accent); }

.card-btns-hada {
    display: flex;
    gap: 10px;
}

.btn-book, .btn-details {
    flex: 1;
    padding: 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-book {
    background: var(--primary);
    color: #fff;
}

.btn-details {
    background: #fff;
    border: 1px solid #ddd;
    color: #444;
}

.btn-book:hover { background: var(--accent); }
.btn-details:hover { border-color: var(--primary); color: var(--primary); }


/* Footer */
footer {
    background: #f8f9fa;
    color: #333;
    padding: 80px 0 40px;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

.footer-col h4 {
    font-weight: 800;
    margin-bottom: 24px;
    color: #003d73;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    color: #666;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover { color: var(--primary); }

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #eee;
    text-align: center;
    color: #999;
    font-size: 0.8rem;
    font-weight: 700;
}


/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1200px) {
    .nav-links, .desktop-only { display: none !important; }
    .menu-toggle { display: flex !important; }
    .header-right { flex: 1; justify-content: flex-end; }
    .nav-icons { gap: 15px; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .section-title h2 { font-size: 2rem; }
    .hero { min-height: 500px; height: 80vh; }
}

/* Route Details Page */
.route-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.route-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 32px;
    color: var(--primary);
}

.description {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
}

.route-features-box {
    margin-top: 40px;
    padding: 32px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #eee;
}

.route-features-box h3 {
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.route-features-box ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.route-features-box li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
}

.route-features-box i { color: var(--accent); }

.route-image-sticky {
    position: sticky;
    top: 120px;
}

.image-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.related-fleet { margin-top: 100px; }

@media (max-width: 768px) {
    .route-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .route-title { font-size: 2rem; }
    
    .route-features-box ul {
        grid-template-columns: 1fr;
    }
    
    .route-image-sticky { position: static; }
    
    .related-fleet { margin-top: 60px; }
}

@media (max-width: 768px) {
    .vehicle-details, .route-details { padding-top: 100px !important; }
}

/* Fixed Mobile Footer */
.fixed-footer-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    border-top: 1px solid #eee;
}

.action-btn-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    gap: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.action-btn-mobile:first-child { border-left: 1px solid #eee; }

.action-btn-mobile i { font-size: 1.2rem; color: var(--accent); }
.action-btn-mobile span { font-size: 0.75rem; font-weight: 700; color: var(--text-main); }

.action-btn-mobile:active { background: #f8fafc; }

/* Contact Modal */
.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: flex-end;
}

.contact-modal.active { display: flex; }

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}

.modal-body {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 24px 24px 0 0;
    padding: 30px;
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.modal-header h3 { font-size: 1.2rem; font-weight: 900; }
.modal-close { font-size: 1.5rem; color: var(--text-muted); cursor: pointer; }

.modal-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-opt-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s;
}

.wa-opt { background: #25D366; color: #fff; }
.call-opt { background: var(--primary); color: #fff; }

.modal-opt-btn:active { transform: scale(0.98); }

@media (max-width: 768px) {
    .fixed-footer-mobile { display: grid; }
    body { padding-bottom: 70px; } /* Space for footer */
}

/* Footer Styles */
footer {
    background: #0d0d0d;
    color: #fff;
    padding: 80px 0 30px;
    border-top: 3px solid var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    color: var(--accent);
    font-size: 1.8rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 350px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--accent);
}

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

.footer-col ul li { margin-bottom: 15px; }

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--accent);
    transform: translateX(-5px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

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

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 0 auto 30px; }
    .footer-col h4::after { right: 50%; transform: translateX(50%); }
    .footer-col ul li a { justify-content: center; }
}

/* Articles Section */
.article-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.article-img {
    height: 220px;
    overflow: hidden;
}

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

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

.article-body { padding: 25px; }

.article-date {
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.article-body h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-main);
    line-height: 1.4;
}

.article-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    transition: gap 0.3s;
}

.read-more:hover { gap: 12px; }

/* Articles Slider */
.articles-slider-wrap {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    padding: 20px 0 40px;
}

.articles-slider-wrap.active {
    cursor: grabbing;
}

.articles-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.1s ease;
    will-change: transform;
    user-select: none;
    -webkit-user-drag: none;
}

/* Reviews Slider */
.reviews-slider-wrap {
    width: 100%;
    overflow: hidden;
    cursor: grab;
    padding: 20px 0 40px;
}

.reviews-slider-wrap.active {
    cursor: grabbing;
}

.reviews-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.1s ease;
    will-change: transform;
    user-select: none;
    -webkit-user-drag: none;
}

/* Premium Section Styles */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(184, 134, 11, 0.1);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 20px;
    border: 1px solid rgba(184, 134, 11, 0.2);
}

.review-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--accent);
}

.stars {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .section-header-alt {
        flex-direction: column-reverse;
        align-items: flex-start;
        text-align: right;
    }
    
    .header-left { margin-top: 20px; }
}

/* Logo & Navigation Enhancements */
.site-logo-img {
    height: 55px;
    width: auto;
    margin-left: 10px;
    mix-blend-mode: multiply; /* Removes white background */
    transition: transform 0.3s ease;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    margin-bottom: 15px;
    mix-blend-mode: lighten; /* Removes black background on dark footer */
}

.nav-btn-whatsapp {
    background: #25D366;
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800 !important;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s, background 0.3s;
}

.nav-btn-whatsapp:hover {
    transform: scale(1.05);
    background: #128C7E;
    color: #fff !important;
}

.nav-links {
    align-items: center;
    display: flex;
}
