/* CSS Variables for Premium Theme */
:root {
    --primary: #319A64;
    --primary-dark: #1e6540;
    --primary-light: #e6f6ee;
    --secondary: #111827;
    --accent-gold: #d4af37;
    --accent-gold-dark: #b8962d;
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #f0f1f3;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Layout */
    --max-width: 1200px;
    --border-radius-sm: 10px;
    --border-radius-md: 20px;
    --border-radius-lg: 30px;
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 25px 50px -12px rgba(49, 154, 100, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

p {
    margin-bottom: 1rem;
    color: #374151;
}

/* Premium Section Patterns */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 120px 24px;
    width: 100%;
    position: relative;
}

.pattern-bg {
    position: relative;
}

.pattern-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: repeat;
    pointer-events: none;
    z-index: 1;
}

/* Geometric Watermark */
.pattern-geom::before {
    background-image: url('assets/pattern-geometric.jpg');
    background-size: 250px;
    opacity: 0.025;
}

/* Calligraphy Watermark */
.pattern-callig::before {
    background-image: url('assets/pattern-calligraphy.jpg');
    background-size: 350px;
    opacity: 0.015;
}

.section-container > * {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    line-height: 1.25;
}

.section-header p {
    color: var(--text-muted);
    font-size: 17px;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-whatsapp-header {
    background-color: #25d366;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}

.btn-whatsapp-header:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.btn-card-booking {
    background-color: var(--secondary);
    color: white;
    width: 100%;
    margin-top: 15px;
    border-radius: var(--border-radius-sm);
}

.btn-card-booking:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(49, 154, 100, 0.2);
}

.btn-featured {
    background-color: var(--primary);
    box-shadow: 0 4px 12px rgba(49, 154, 100, 0.2);
}

.btn-featured:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 8px 20px rgba(49, 154, 100, 0.35);
}

.btn-whatsapp-cta {
    background-color: #25d366;
    color: white;
    font-size: 18px;
    padding: 18px 40px;
    border-radius: 50px;
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-cta:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.35);
}

.btn-secondary-hero {
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 16px;
    padding: 16px 32px;
}

.btn-secondary-hero:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--secondary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    padding: 14px 32px;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    height: 85px;
    display: flex;
    align-items: center;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
}

.logo-img {
    height: 48px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .logo-img {
        height: 38px;
    }
}

.main-nav {
    display: flex;
    gap: 36px;
    align-items: center;
}

.main-nav a {
    font-weight: 600;
    font-size: 15px;
    color: var(--secondary);
    position: relative;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
}

.main-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(49, 154, 100, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    color: white;
    font-size: 54px;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-subheadline {
    font-size: 20px;
    color: #e2e8f0;
    margin-bottom: 30px;
    max-width: 600px;
    font-weight: 500;
}

.gold-gradient {
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(49, 154, 100, 0.15);
    border: 1px solid rgba(49, 154, 100, 0.3);
    color: #6ee7b7;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 35px;
    font-size: 14px;
    color: #94a3b8;
}

.trust-bar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.trust-bar i {
    color: var(--accent-gold);
}

.aeo-direct-answer {
    background-color: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--accent-gold);
    padding: 24px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 40px;
    max-width: 680px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.aeo-direct-answer h4 {
    color: white;
    font-size: 17px;
    margin-bottom: 8px;
}

.aeo-direct-answer p {
    font-size: 14.5px;
    color: #cbd5e1;
    margin-bottom: 0;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Booking Card */
.booking-wizard-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 40px;
    color: var(--secondary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wizard-header h3 {
    font-size: 26px;
    margin-bottom: 4px;
}

.wizard-header p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.wizard-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: var(--primary);
}

.form-group select {
    padding: 14px 18px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    background-color: #fcfcfc;
    transition: var(--transition);
}

.form-group select:focus {
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(49, 154, 100, 0.1);
}

.form-row {
    display: flex;
    gap: 16px;
}

.half-width {
    width: 50%;
}

.btn-primary-wizard {
    background-color: var(--primary);
    color: white;
    font-size: 16px;
    padding: 16px;
    border-radius: var(--border-radius-sm);
    margin-top: 10px;
}

.btn-primary-wizard:hover {
    background-color: var(--primary-dark);
}

/* Price Box */
.price-output-box {
    background-color: var(--primary-light);
    border: 1px solid rgba(49, 154, 100, 0.2);
    border-radius: var(--border-radius-sm);
    padding: 18px;
    margin-top: 10px;
    animation: slideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.price-output-box.hidden {
    display: none;
}

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

.price-estimate span:first-child {
    font-weight: 700;
    color: var(--primary-dark);
}

.price-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-dark);
    font-family: var(--font-heading);
}

.price-disclaimer {
    font-size: 11px;
    color: var(--primary-dark);
    opacity: 0.8;
}

/* Pricing Snapshot Section */
.pricing-snapshot-section {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 120px 0;
}

.pricing-container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
    position: relative;
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pricing-table th, .pricing-table td {
    padding: 20px 24px;
    border-bottom: 1.5px solid var(--border-color);
}

.pricing-table th {
    background-color: var(--bg-light);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary);
    font-size: 15px;
}

.pricing-table tr:hover td {
    background-color: #fafbfc;
}

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

.price-td {
    font-weight: 700;
    color: var(--primary-dark);
    font-family: var(--font-heading);
}

.pricing-note {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 35px;
}

/* Pain Points Section */
.pain-points-section {
    background-color: var(--bg-light);
}

.pain-points-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: start;
    margin-bottom: 40px;
}

.narrative p {
    font-size: 16.5px;
    color: #4b5563;
    margin-bottom: 24px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.features-horizontal-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
    margin-bottom: 40px;
    width: 100%;
}

.features-horizontal-row .feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(49, 154, 100, 0.2);
}

@media (max-width: 991px) {
    .features-horizontal-row {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    display: flex;
    gap: 24px;
    background-color: var(--bg-white);
    padding: 28px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateX(5px);
    border-color: rgba(49, 154, 100, 0.2);
}

.feature-card .icon {
    font-size: 26px;
    color: var(--primary);
    background-color: var(--primary-light);
    width: 52px;
    height: 52px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card h4 {
    font-size: 19px;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Who We Serve Section */
.who-we-serve-section {
    background-color: var(--bg-white);
}

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

.audience-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    border: 1.5px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.audience-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: transparent;
    transition: var(--transition);
}

.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(49, 154, 100, 0.25);
}

.audience-card:hover::after {
    background-color: var(--primary);
}

.audience-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
    box-shadow: 0 4px 10px rgba(49, 154, 100, 0.1);
}

.audience-card h4 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.audience-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

.info-block-premium {
    background-color: var(--bg-light);
    border: 1.5px solid var(--border-color);
    border-left: 5px solid var(--accent-gold);
    padding: 30px;
    border-radius: var(--border-radius-md);
    margin-top: 50px;
    display: flex;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow);
}

.info-block-icon {
    width: 52px;
    height: 52px;
    border-radius: 50px;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.info-block-text h4 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 6px;
}

.info-block-text p {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background-color: var(--bg-light);
}

.service-group {
    margin-top: 80px;
}

.service-group:first-of-type {
    margin-top: 40px;
}

.service-group h3 {
    font-size: 28px;
    margin-bottom: 35px;
    border-left: 4px solid var(--primary);
    padding-left: 16px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.service-grid-wide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-md);
    border: 1.5px solid var(--border-color);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(49, 154, 100, 0.2);
}

.service-card h4 {
    font-size: 21px;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 28px;
    flex-grow: 1;
}

.aeo-nested-note {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 28px;
    border-left: 4px solid var(--accent-gold);
}

.aeo-nested-note h5 {
    font-size: 15px;
    margin-bottom: 6px;
    color: var(--secondary);
}

.aeo-nested-note p {
    font-size: 13.5px;
    margin-bottom: 0;
}

.service-link {
    font-weight: 700;
    color: var(--primary);
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* Fleet Showcase */
.fleet-section {
    background-color: var(--bg-white);
}

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

.fleet-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    border: 1.5px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(49, 154, 100, 0.2);
}

.fleet-img-placeholder {
    height: 160px;
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.font-car-icon i {
    font-size: 56px;
    color: var(--text-muted);
    opacity: 0.45;
}

.fleet-info {
    padding: 20px;
}

.fleet-tier {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.fleet-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.fleet-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
    height: 54px;
    line-height: 1.5;
}

.fleet-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1.5px solid var(--border-color);
}

.fleet-specs span {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fleet-specs i {
    color: var(--primary);
}

.btn-card-booking {
    padding: 10px 20px !important;
    font-size: 14px !important;
}

/* Featured Card Style */
.featured-card {
    position: relative;
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(49, 154, 100, 0.1);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* Process Section */
.process-section {
    background-color: var(--bg-light);
}

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

.process-step {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    border: 1.5px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.step-num {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin: 0 auto 24px;
    box-shadow: 0 4px 10px rgba(49, 154, 100, 0.25);
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* EEAT Trust Section */
.eeat-trust-section {
    background-color: var(--bg-white);
}

.eeat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.eeat-card {
    background-color: var(--bg-light);
    padding: 36px;
    border-radius: var(--border-radius-md);
    border: 1.5px solid var(--border-color);
    transition: var(--transition);
}

.eeat-card:hover {
    border-color: rgba(49, 154, 100, 0.25);
}

.eeat-card h4 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 14px;
}

.eeat-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.review-quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-quote-card {
    background-color: var(--primary-light);
    border-radius: var(--border-radius-md);
    padding: 28px;
    border: 1.5px solid rgba(49, 154, 100, 0.1);
    box-shadow: var(--shadow);
}

.review-quote-card p {
    font-style: italic;
    font-size: 14.5px;
    color: var(--primary-dark);
    margin-bottom: 16px;
    line-height: 1.6;
}

.review-quote-card h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Testimonials */
.testimonials-section {
    background-color: var(--secondary);
    color: white;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-slide {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 40px 32px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-slide p {
    font-size: 15.5px;
    color: #e2e8f0;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-slide span {
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 13.5px;
}

/* Hyperlocal Section */
.hyperlocal-section {
    background-color: var(--bg-light);
}

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

.location-col h4 {
    font-size: 22px;
    margin-bottom: 24px;
    color: var(--primary-dark);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

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

.location-col li {
    font-size: 14.5px;
    margin-bottom: 14px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-col li::before {
    content: "\f041";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent-gold);
    font-size: 12px;
}

/* Seasonal Section */
.seasonal-section {
    background-color: var(--bg-white);
}

.weather-table-wrapper {
    overflow-x: auto;
    margin-bottom: 24px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius-md);
}

.weather-table {
    width: 100%;
    border-collapse: collapse;
}

.weather-table th, .weather-table td {
    padding: 16px 20px;
    border-bottom: 1.5px solid var(--border-color);
    font-size: 14.5px;
}

.weather-table th {
    background-color: var(--bg-light);
    font-weight: 700;
    color: var(--secondary);
}

.weather-table tr:hover td {
    background-color: #fafbfc;
}

.seasonal-alert {
    background-color: #fef3c7;
    border-left: 4px solid #d97706;
    padding: 18px 24px;
    border-radius: var(--border-radius-sm);
    color: #92400e;
    font-size: 14.5px;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(49, 154, 100, 0.2);
}

.faq-question {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-question h4 {
    font-size: 17px;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 28px 24px;
    max-height: 250px;
    overflow-y: auto;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
    padding: 120px 24px;
}

.cta-container h2 {
    color: white;
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-container p {
    color: #94a3b8;
    margin-bottom: 36px;
    font-size: 17px;
}

.cta-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
}

.cta-links a {
    font-size: 15px;
    color: var(--accent-gold);
    font-weight: 700;
    text-decoration: underline;
}

.cta-links a:hover {
    color: white;
}

/* Footer */
.main-footer {
    background-color: #0b0f19;
    color: #94a3b8;
    padding: 100px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 14.5px;
}

.footer-brand .logo .logo-text {
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links h4 {
    color: white;
    font-size: 17px;
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 14.5px;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 13.5px;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .pain-points-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .hero-content h1 {
        font-size: 38px;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
    .service-grid-wide, .service-grid, .destination-grid {
        grid-template-columns: 1fr !important;
    }
    .service-card {
        padding: 30px 20px !important;
    }
}
/* Destination Guide Polish */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.destination-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    border: 1.5px solid var(--border-color);
    border-top: 4px solid var(--accent-gold);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(49, 154, 100, 0.2);
}

.destination-header-img {
    height: 140px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(49, 154, 100, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.destination-header-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/pattern-geometric.jpg');
    background-size: 120px;
    opacity: 0.06;
}

.destination-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 50px;
    background-color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 2px solid var(--accent-gold);
}

.destination-icon-wrap i {
    font-size: 28px;
    color: var(--primary);
}

.destination-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.destination-body h3 {
    font-size: 22px;
    margin-bottom: 24px;
    text-align: center;
    color: var(--secondary);
}

.destination-subsection {
    margin-bottom: 20px;
}

.destination-subsection h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.destination-subsection h4 i {
    color: var(--primary);
}

.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.location-badge {
    background-color: var(--bg-light);
    color: var(--text-main);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.location-badge:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-color: rgba(49, 154, 100, 0.2);
}

.dest-list {
    list-style: none;
}

.dest-list-item {
    font-size: 13.5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
}

.dest-list-item i {
    color: var(--accent-gold);
    font-size: 12px;
}

/* Navigation Dropdown styling */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bg-white);
    min-width: 240px;
    box-shadow: var(--shadow-hover);
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    padding: 12px 0;
    z-index: 1001;
    top: 100%;
    left: 0;
    margin-top: 0;
    animation: slideDown 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Transparent hover bridge to keep dropdown open */
.dropdown-content::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    height: 25px;
    background-color: transparent;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--secondary) !important;
    padding: 12px 24px !important;
    display: block;
    font-size: 14.5px;
    font-weight: 500;
    text-align: left;
    border: none !important;
    transition: var(--transition);
}

.dropdown-content a:hover {
    background-color: var(--primary-light) !important;
    color: var(--primary-dark) !important;
    padding-left: 28px !important;
}

/* Premium Booking Card Redesign Styles */
.booking-card {
    background: #ffffff;
    border-radius: var(--border-radius-md);
    padding: 45px 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.booking-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent-gold));
}

.booking-card:hover {
    box-shadow: 0 30px 60px rgba(49, 154, 100, 0.12);
    border-color: rgba(49, 154, 100, 0.3);
}

.booking-card-header {
    margin-bottom: 30px;
    text-align: center;
}

.booking-card-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.booking-card-header h3 i {
    color: var(--primary);
}

.booking-card-header p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.booking-form .form-group label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-form .form-group label i {
    color: var(--primary);
    font-size: 13px;
}

.booking-form .form-group input[type="text"],
.booking-form .form-group input[type="number"],
.booking-form .form-group select {
    padding: 14px 18px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--secondary);
    background-color: #fafbfc;
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.booking-form .form-group input::placeholder {
    color: #a0aec0;
}

.booking-form .form-group input:hover,
.booking-form .form-group select:hover {
    border-color: rgba(49, 154, 100, 0.4);
    background-color: #ffffff;
}

.booking-form .form-group input:focus,
.booking-form .form-group select:focus {
    border-color: var(--primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(49, 154, 100, 0.1);
}

.booking-form button[type="submit"] {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(49, 154, 100, 0.25);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.booking-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(49, 154, 100, 0.35);
    background: linear-gradient(135deg, var(--primary-dark) 0%, #174b30 100%);
}

.booking-form button[type="submit"] i {
    font-size: 18px;
}

/* Fleet Section Premium Green Calligraphy Background */
.fleet-section-green-callig {
    background-image: linear-gradient(rgba(17, 24, 39, 0.93), rgba(17, 24, 39, 0.93)), url('assets/pattern-calligraphy-green.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.fleet-section-green-callig .section-header h2 {
    color: #ffffff !important;
}

.fleet-section-green-callig .section-header p {
    color: #94a3b8 !important;
}

/* Mobile Navigation Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--secondary);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    color: var(--primary);
}

/* Mobile Menu Drawer */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background-color: var(--bg-white);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 1010;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 30px 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

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

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

.drawer-close {
    background: none;
    border: none;
    color: var(--secondary);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.drawer-close:hover {
    color: var(--primary);
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-nav a, .drawer-dropdown-trigger {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.drawer-nav a:hover, .drawer-dropdown-trigger:hover {
    color: var(--primary);
}

.drawer-dropdown-content {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 10px 0 10px 15px;
    border-left: 2px solid var(--border-color);
    margin-top: 5px;
}

.drawer-dropdown.active .drawer-dropdown-content {
    display: flex;
}

.drawer-dropdown.active .drawer-dropdown-trigger i {
    transform: rotate(180deg);
}

.drawer-dropdown-trigger i {
    font-size: 12px;
    transition: var(--transition);
}

.drawer-dropdown-content a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-muted) !important;
}

/* Drawer Overlay */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1009;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    .header-cta {
        display: none; /* Hide top CTA on mobile/tablet */
    }
    .section-container {
        padding: 60px 16px;
    }
    .hero-section {
        padding: 130px 0 80px;
    }
}

/* Miqat Section Side Pattern Layout */
.miqat-section-side-pattern {
    position: relative;
    overflow: hidden;
    background-color: #faf9f6; /* Clean warm off-white background matching mockup */
    color: var(--text-main);
    padding: 100px 0;
}

.miqat-section-side-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 100%;
    background-image: url('assets/pattern-geometric.jpg');
    background-size: cover;
    background-position: left center;
    opacity: 0.15; /* Elegant subtle opacity */
    pointer-events: none;
    z-index: 1;
    mask-image: radial-gradient(ellipse at left, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at left, black 40%, transparent 80%);
}

.miqat-section-side-pattern::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 100%;
    background-image: url('assets/pattern-geometric.jpg');
    background-size: cover;
    background-position: right center;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    mask-image: radial-gradient(ellipse at right, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at right, black 40%, transparent 80%);
}

.miqat-section-side-pattern .section-container {
    position: relative;
    z-index: 2;
}

.miqat-section-side-pattern h2, .miqat-section-side-pattern h3, .miqat-section-side-pattern h4 {
    color: var(--secondary) !important;
}

.miqat-section-side-pattern p {
    color: var(--text-muted) !important;
}

/* Pilgrim Route Visual Element */
.pilgrim-route-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 80px;
    height: 350px;
    flex-shrink: 0;
}

.route-pin {
    color: var(--primary);
    font-size: 24px;
    z-index: 2;
    transition: var(--transition);
}

.route-pin:hover {
    transform: scale(1.1);
    color: var(--accent-gold);
}

.kaaba-icon-glow {
    position: absolute;
    top: 150px;
    width: 46px;
    height: 46px;
    background: #ffffff;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
    z-index: 3;
    transition: var(--transition);
}

.kaaba-icon-glow:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
}

@media (max-width: 991px) {
    .pilgrim-route-wrapper {
        display: none !important;
    }
}

/* Premium Statistics Bar Background */
.stats-bar-premium {
    background-color: #064e3b; /* Deep emerald green */
    background-image: linear-gradient(rgba(6, 78, 59, 0.94), rgba(6, 78, 59, 0.94)), url('assets/pattern-geometric.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 2.5px solid var(--accent-gold);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-bar-premium h3 {
    color: var(--accent-gold) !important;
}

.stats-bar-premium p {
    color: #e2e8f0 !important; /* Elegant light-silver contrast text */
}

/* Premium Floating WhatsApp Widget styling */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: var(--font-heading);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    pointer-events: none;
}

.whatsapp-popup {
    width: 320px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(17, 24, 39, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    pointer-events: auto;
}

.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

#whatsapp-popup-close {
    position: absolute !important;
    top: 12px !important;
    right: 15px !important;
    background: none !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 24px !important;
    cursor: pointer !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    z-index: 99999 !important;
    line-height: 1 !important;
    transition: all 0.2s ease !important;
}

#whatsapp-popup-close:hover {
    color: var(--accent-gold) !important;
}

.whatsapp-floating-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(18, 140, 126, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    outline: none;
    pointer-events: auto;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 10px 30px rgba(18, 140, 126, 0.4);
}

.whatsapp-floating-btn:active {
    transform: scale(0.96) translateY(0);
}

.whatsapp-notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 14px;
    height: 14px;
    background: #ff3b30;
    border-radius: 50%;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); }
    70% { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(255, 59, 48, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

@media (max-width: 480px) {
    .whatsapp-widget {
        right: 20px !important;
        bottom: 20px !important;
    }
    .whatsapp-popup {
        width: 290px !important;
    }
}

/* Premium Fleet Showcase Slider Styles */
.fleet-showcase-slider {
    position: relative;
    background: linear-gradient(135deg, #0b2416 0%, #153823 100%);
    border-radius: 16px;
    overflow: hidden;
    padding: 60px;
    box-shadow: 0 25px 60px rgba(11, 36, 22, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.15);
    margin-bottom: 40px;
    height: 580px;
    box-sizing: border-box;
}
.fleet-showcase-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('assets/pattern-geometric.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
}
.fleet-showcase-slides-container {
    position: relative;
    z-index: 2;
    height: 100%;
}
.fleet-showcase-slide {
    display: none;
    align-items: center;
    gap: 50px;
    transition: opacity 0.5s ease;
    height: 100%;
}
.fleet-showcase-slide.active {
    display: flex;
}
.fleet-showcase-content {
    flex: 1.1;
    color: #ffffff;
    text-align: left;
}
.fleet-showcase-tier {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.fleet-showcase-name {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px;
    font-family: var(--font-heading);
}
.fleet-showcase-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 30px;
}
.fleet-showcase-specs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}
.fleet-showcase-spec-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 16px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}
.fleet-showcase-spec-item .spec-icon {
    font-size: 16px;
    color: var(--accent-gold);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.fleet-showcase-spec-item .spec-info {
    display: flex;
    flex-direction: column;
}
.fleet-showcase-spec-item .spec-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.fleet-showcase-spec-item .spec-value {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}
.btn-showcase-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(49, 154, 100, 0.2);
}
.btn-showcase-whatsapp:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(49, 154, 100, 0.3);
}
.fleet-showcase-visual {
    flex: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.fleet-showcase-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6));
}
.fleet-showcase-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 25;
}
.fleet-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 26;
}
.fleet-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
}
.fleet-showcase-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 25;
}
.fleet-showcase-pagination .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition);
}
.fleet-showcase-pagination .dot.active {
    background: var(--accent-gold);
    transform: scale(1.3);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 991px) {
    .fleet-showcase-slider {
        padding: 40px;
    }
    .fleet-showcase-slide {
        gap: 30px;
    }
    .fleet-showcase-name {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .fleet-showcase-slider {
        height: auto !important;
        padding: 40px 20px !important;
    }
    .fleet-showcase-slide {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
        height: auto !important;
    }
    .fleet-showcase-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .fleet-showcase-specs {
        width: 100%;
        max-width: 400px;
    }
    .fleet-showcase-spec-item {
        text-align: left;
    }
    .fleet-showcase-controls {
        position: relative;
        bottom: 0;
        right: 0;
        justify-content: center;
        margin-top: 30px;
    }
    .fleet-showcase-pagination {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        justify-content: center;
        margin-top: 20px;
    }
    .fleet-showcase-visual {
        height: auto !important;
    }
}

@media (max-width: 991px) {
    .miqat-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .miqat-grid .pilgrim-route-vertical {
        display: none !important;
    }
}







