/* ----------------------------------------------------
   DESIGN SYSTEM & VARIABLES
---------------------------------------------------- */
:root {
    /* Color Palette */
    --primary-hsl: 210, 100%, 50%;
    --primary: hsl(var(--primary-hsl));
    --primary-glow: hsla(var(--primary-hsl), 0.35);
    --primary-dark: hsl(210, 100%, 35%);

    --secondary-hsl: 195, 100%, 45%;
    --secondary: hsl(var(--secondary-hsl));

    --dark-bg: #0b0f19;
    --card-bg: rgba(20, 28, 47, 0.7);
    --card-border: rgba(255, 255, 255, 0.08);
    
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    
    /* Brand specific accents */
    --carrier-color: #004b87;
    --carrier-glow: rgba(0, 75, 135, 0.4);
    
    --fresh-color: #4caf50;
    --fresh-glow: rgba(76, 175, 80, 0.4);
    
    --ideal-color: #e28743;
    --ideal-glow: rgba(226, 135, 67, 0.4);

    --accent-red: #ff3366;

    /* Shadows & Transitions */
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px var(--primary-glow);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Light Theme Variables & Overrides --- */
body.light-theme {
    --dark-bg: #fafaf7; /* Off-white */
    --card-bg: #ffffff; /* White */
    --card-border: rgba(14, 165, 233, 0.12); /* Sky blue subtle border */
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --shadow-soft: 0 10px 30px -10px rgba(14, 165, 233, 0.12);
    
    /* Design palette colors */
    --primary-hsl: 199, 89%, 48%; /* Sky Blue */
    --primary: #0ea5e9;
    --primary-glow: rgba(14, 165, 233, 0.25);
    --primary-dark: #0284c7;

    --secondary-hsl: 45, 93%, 47%; /* Yellow */
    --secondary: #eab308;

    --accent-red: #ef4444; /* Red */
}

body.light-theme .main-header {
    background: rgba(248, 250, 252, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}body.light-theme .hero-section {
    background: #fafaf7;
    background-image: radial-gradient(at 10% 20%, rgba(14, 165, 233, 0.07) 0px, transparent 50%),
                      radial-gradient(at 90% 80%, rgba(234, 179, 8, 0.07) 0px, transparent 50%);
}

body.light-theme .hero-overlay {
    display: none;
}

body.light-theme .hero-title {
    color: #0f172a;
}

body.light-theme .hero-subtitle {
    color: #334155;
}

body.light-theme .hero-badge {
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.15);
    color: #0284c7;
}

body.light-theme .quick-stat-card {
    background: #ffffff;
    border: 1px solid rgba(14, 165, 233, 0.12);
    box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.05);
}

body.light-theme .quick-stat-card .stat-info h4 {
    color: #0f172a;
}

body.light-theme .quick-stat-card .stat-info p {
    color: #64748b;
}

body.light-theme .quick-stat-card .stat-icon {
    color: #0ea5e9;
}

body.light-theme .logo .logo-text {
    color: #0f172a;
}

body.light-theme .navbar .nav-link {
    color: #475569;
}
body.light-theme .navbar .nav-link:hover,
body.light-theme .navbar .nav-link.active {
    color: var(--primary);
}

body.light-theme .dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-theme .dropdown-item {
    color: #475569;
}
body.light-theme .dropdown-item:hover {
    background: rgba(0, 0, 0, 0.02);
    color: var(--primary);
}

body.light-theme .menu-toggle {
    color: #0f172a;
}

body.light-theme .why-us-section {
    background: #f1f5f9;
}

body.light-theme .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    color: #64748b;
}

body.light-theme .about-section {
    background: #ffffff;
}

body.light-theme .brands-section {
    background: #f8fafc;
}

body.light-theme .seo-directory-section {
    background: #f1f5f9;
}

body.light-theme .main-footer {
    background: #0f172a;
    color: #cbd5e1;
}
body.light-theme .main-footer .logo-text {
    color: #ffffff;
}
body.light-theme .main-footer a {
    color: #94a3b8;
}
body.light-theme .main-footer a:hover {
    color: #ffffff;
}
body.light-theme .main-footer h4 {
    color: #ffffff;
}
body.light-theme .main-footer .footer-bottom p {
    color: #94a3b8;
}

/* ----------------------------------------------------
   BASE STYLES & RESET
   ---------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-primary);
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.highlight {
    color: var(--secondary);
    background: linear-gradient(120deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ----------------------------------------------------
   HEADER & NAVBAR
---------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--card-border);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 8px 0;
    background: rgba(11, 15, 25, 0.95);
    box-shadow: var(--shadow-soft);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    height: 65px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.cooling-icon {
    color: var(--secondary);
    font-size: 26px;
    animation: spin 8s linear infinite;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-btn-mobile {
    display: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px hsla(var(--primary-hsl), 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--card-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */
.hero-section {
    position: relative;
    padding: 130px 0 70px 0;
    min-height: auto;
    display: flex;
    align-items: center;
    background-image: url('assets/images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.7) 0%, rgba(11, 15, 25, 0.95) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.hero-phone-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 10px;
}

.cta-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
}

.btn-call-pulse {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    color: #ffffff !important;
    font-size: 17px !important;
    padding: 16px 36px !important;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4) !important;
    animation: btn-pulse 2s infinite ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-call-pulse:hover {
    background: linear-gradient(135deg, #f87171, #ef4444) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.6) !important;
}

.btn-whatsapp-sub {
    background: linear-gradient(135deg, #25d366, #16a34a);
    color: #ffffff;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.btn-whatsapp-sub:hover {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

.online-indicator-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
}

.pulsing-dot {
    width: 10px;
    height: 10px;
    background-color: #22c55e;
    border-radius: 50%;
    animation: dot-pulse-green 1.5s infinite ease-in-out;
}

.indicator-text {
    font-size: 14px;
    font-weight: 700;
    color: #15803d;
}

@keyframes btn-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(239, 68, 68, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

@keyframes dot-pulse-green {
    0% {
        transform: scale(0.85);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1.15);
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.85);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.hero-badge-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.quick-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 36px;
    color: var(--secondary);
}

.stat-info h4 {
    font-size: 18px;
    font-weight: 700;
}

.stat-info p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ----------------------------------------------------
   SECTION GLOBAL STYLES
---------------------------------------------------- */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* ----------------------------------------------------
   ABOUT SECTION
---------------------------------------------------- */
.about-section {
    padding: 100px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-soft);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-size: 28px;
    color: var(--secondary);
    transition: var(--transition-smooth);
}

.about-card:hover .card-icon {
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.about-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

/* ----------------------------------------------------
   SERVICES / BRANDS SECTION
---------------------------------------------------- */
.services-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.01);
}

.brand-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.brand-row:last-child {
    margin-bottom: 0;
}

.brand-row-reverse {
    direction: ltr;
}

.brand-row-reverse .brand-info {
    direction: rtl;
}

.brand-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--card-border);
    transition: var(--transition-smooth);
}

.brand-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11, 15, 25, 0.8) 100%);
    pointer-events: none;
}

.brand-image:hover {
    transform: scale(1.02);
}

.brand-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-logo-container {
    margin-bottom: 16px;
}

.brand-badge {
    padding: 6px 16px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
}

.carrier-badge {
    background: var(--carrier-color);
    color: #fff;
    box-shadow: 0 0 15px var(--carrier-glow);
}

.fresh-badge {
    background: var(--fresh-color);
    color: #fff;
    box-shadow: 0 0 15px var(--fresh-glow);
}

.ideal-badge {
    background: var(--ideal-color);
    color: #fff;
    box-shadow: 0 0 15px var(--ideal-glow);
}

.brand-info h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.brand-info p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.brand-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.brand-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 15px;
}

.brand-features li i {
    color: var(--secondary);
}

.book-for-brand {
    font-weight: 700;
}

/* ----------------------------------------------------
   WHY CHOOSE US & STATS
---------------------------------------------------- */
.why-us-section {
    position: relative;
    padding: 120px 0;
    background: radial-gradient(circle at 10% 20%, rgba(20, 28, 47, 0.4) 0%, transparent 80%);
}

.why-us-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.why-us-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-lead {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 40px;
}

.why-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--secondary);
    flex-shrink: 0;
}

.why-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-info p {
    color: var(--text-secondary);
    font-size: 14px;
}

.why-us-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-box:hover {
    transform: scale(1.03);
    border-color: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    margin-bottom: 8px;
}

.stat-box p {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ----------------------------------------------------
   BOOKING SECTION & FORM
---------------------------------------------------- */
.booking-section {
    padding: 100px 0;
}

.booking-card-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 32px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.booking-info-panel {
    background: linear-gradient(135deg, var(--primary-dark) 0%, rgba(20, 28, 47, 0.95) 100%);
    padding: 50px 40px;
    border-left: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-info-panel h3 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 16px;
}

.booking-info-panel p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 15px;
}

.contact-quick-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.quick-link-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: 600;
}

.quick-link-item i {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.working-hours {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
}

.booking-form-panel {
    padding: 50px;
    position: relative;
}

.booking-form {
    transition: var(--transition-smooth);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.required {
    color: var(--accent-red);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    background: rgba(11, 15, 25, 0.6);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 14px 18px;
    color: #fff;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
    background: rgba(11, 15, 25, 0.8);
}

.form-group select option {
    background: var(--dark-bg);
    color: #fff;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

/* Form success message */
.form-message {
    text-align: center;
    padding: 40px 20px;
}

.success-message i {
    font-size: 60px;
    color: var(--fresh-color);
    margin-bottom: 20px;
    animation: scaleUp 0.5s ease-out;
}

.success-message h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.success-message p {
    color: var(--text-secondary);
}

.hide {
    display: none;
}

/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
.main-footer {
    background: #070a12;
    border-top: 1px solid var(--card-border);
    padding: 80px 0 30px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.social-links a:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.footer-container h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-container h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.footer-links ul, .footer-services-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a, .footer-services-links a {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links a:hover, .footer-services-links a:hover {
    color: #fff;
    padding-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ----------------------------------------------------
   FLOATING ACTIONS
---------------------------------------------------- */
.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: var(--transition-smooth);
}

.float-call {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #0b0f19 !important;
}
.float-call i {
    color: #0b0f19 !important;
}

.float-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.float-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(11, 15, 25, 0.95);
    border: 1px solid var(--card-border);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.floating-btn:hover .float-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ----------------------------------------------------
   ANIMATIONS
---------------------------------------------------- */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.appear {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------------------------------
   RESPONSIVE MEDIA QUERIES
---------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    .hero-actions-btns {
        justify-content: center;
    }
    .hero-badge-container {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    .quick-stat-card {
        flex: 1 1 250px;
    }
    .brand-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .brand-row-reverse {
        direction: rtl;
    }
    .brand-image {
        max-width: 600px;
        margin: 0 auto;
    }
    .why-us-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .booking-card-wrapper {
        grid-template-columns: 1fr;
    }
    .booking-info-panel {
        border-left: none;
        border-bottom: 1px solid var(--card-border);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .navbar {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: rgba(11, 15, 25, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        gap: 24px;
        border-left: 1px solid var(--card-border);
        transition: var(--transition-smooth);
    }
    .main-header.scrolled .navbar {
        top: 65px;
        height: calc(100vh - 65px);
    }
    .navbar.active {
        right: 0;
    }
    .nav-btn-desktop {
        display: none;
    }
    .nav-btn-mobile {
        display: inline-flex;
        width: 100%;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: #fff;
        padding: 12px;
        border-radius: 30px;
        text-align: center;
        justify-content: center;
        font-weight: 700;
        margin-top: 20px;
    }
    .hero-section {
        padding: 100px 0 30px 0 !important;
        min-height: auto !important;
    }
    .hero-badge {
        margin-bottom: 12px !important;
        font-size: 11.5px !important;
        padding: 6px 12px !important;
    }
    .hero-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }
    .hero-subtitle {
        font-size: 15px !important;
        margin-bottom: 20px !important;
        line-height: 1.6 !important;
    }
    .hero-badge-container {
        gap: 15px !important;
    }
    .quick-stat-card {
        padding: 12px !important;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ----------------------------------------------------
   SUBPAGES STYLES (Carrier, Fresh, Ideal)
---------------------------------------------------- */
.subpage-hero {
    position: relative;
    padding: 150px 0 80px 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--card-border);
}

.subpage-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.6) 0%, var(--dark-bg) 100%);
    z-index: 1;
}

.carrier-bg-tint {
    background-image: linear-gradient(180deg, rgba(0, 75, 135, 0.25), rgba(11, 15, 25, 0.95)), url('assets/images/hero_bg.png');
}

.fresh-bg-tint {
    background-image: linear-gradient(180deg, rgba(76, 175, 80, 0.15), rgba(11, 15, 25, 0.95)), url('assets/images/hero_bg.png');
}

.ideal-bg-tint {
    background-image: linear-gradient(180deg, rgba(226, 135, 67, 0.15), rgba(11, 15, 25, 0.95)), url('assets/images/hero_bg.png');
}

.subpage-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.subpage-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.subpage-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}

.subpage-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 12px;
}

.subpage-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.brand-details-section {
    padding: 80px 0;
}

.brand-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.brand-intro-text h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 16px;
}

.brand-intro-text p {
    color: var(--text-secondary);
    font-size: 16px;
}

.service-segment {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.service-segment:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.segment-reverse {
    direction: ltr;
}

.segment-reverse .segment-info {
    direction: rtl;
}

.segment-info h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.segment-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 15px;
}

.segment-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.segment-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.segment-list li i {
    color: var(--secondary);
}

.segment-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--card-border);
}

.action-buttons-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

@media (max-width: 900px) {
    .service-segment {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    .segment-reverse {
        direction: rtl;
    }
    .segment-reverse .segment-info {
        direction: rtl;
    }
    .segment-img {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ----------------------------------------------------
   BRANDS GRID STYLES
---------------------------------------------------- */
/* ----------------------------------------------------
   CATEGORIES GRID STYLES
---------------------------------------------------- */
.categories-section {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 30px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-height: 420px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15), 0 0 25px rgba(14, 165, 233, 0.2);
}

.category-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 36px;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.category-card:hover .category-icon-box {
    background: var(--primary);
    color: #ffffff;
    transform: rotateY(180deg);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.category-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.category-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.category-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-bottom: 24px;
    padding: 15px;
    background: rgba(14, 165, 233, 0.02);
    border-radius: 16px;
    border: 1px dashed var(--card-border);
}

.category-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: right;
}

.category-features span i {
    color: var(--primary);
    font-size: 11px;
}

.category-card-btns {
    display: flex;
    gap: 12px;
    width: 100%;
}

.category-card-btns .btn-card-phone {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    background: var(--primary);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.category-card-btns .btn-card-phone:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.35);
}

.category-card-btns .btn-card-wa {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.category-card-btns .btn-card-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    filter: brightness(1.1);
}

/* ----------------------------------------------------
   DROPDOWN MENU STYLES
---------------------------------------------------- */
.nav-item-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: var(--transition-smooth);
}

.nav-item-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 680px;
    background: rgba(11, 15, 25, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    z-index: 100;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.dropdown-item svg {
    flex-shrink: 0;
    max-height: 25px;
    max-width: 50px;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    padding-right: 18px;
}

/* Mobile Dropdown styles */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 16px 0 0;
        display: none;
        margin-top: 10px;
    }
    
    .nav-item-dropdown.active .dropdown-menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

/* ----------------------------------------------------
   SUBPAGE HERO LARGER LOGO
---------------------------------------------------- */
.subpage-hero .subpage-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    padding: 16px 30px;
    border-radius: 24px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.subpage-hero .subpage-badge:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow);
}

.subpage-hero .subpage-badge svg {
    width: 140px;
    height: 70px;
}

/* Copied feedback style */
.copy-phone.copied {
    color: #28a745 !important;
}
.copy-phone.copied span {
    color: #28a745 !important;
}
.copy-phone.copied i {
    color: #28a745 !important;
}






/* --- Mobile Menu Indicator & SEO Styling (Word-by-word Animated) --- */
.menu-indicator {
    display: none;
}

@media (max-width: 991px) {
    .menu-indicator {
        display: flex;
        align-items: center;
        gap: 5px;
        position: absolute;
        left: 50px;
        top: 50%;
        transform: translateY(-50%);
        background: #007bff;
        color: #ffffff;
        padding: 6px 12px;
        border-radius: 8px;
        font-size: 11px;
        font-weight: 700;
        z-index: 999;
        pointer-events: none;
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
        white-space: nowrap;
        animation: indicator-cycle 5.5s infinite ease-in-out;
    }
    
    .menu-indicator::after {
        content: '';
        position: absolute;
        left: -6px;
        top: 50%;
        transform: translateY(-50%);
        border-width: 6px 6px 6px 0;
        border-style: solid;
        border-color: transparent #007bff transparent transparent;
    }
    
    .menu-indicator .word {
        opacity: 0;
        display: inline-block;
        animation: word-fade-in 5.5s infinite ease-in-out;
    }
    
    /* Synchronized delays for word-by-word appearance */
    .menu-indicator .w1 {
        animation-delay: 0.1s;
    }
    .menu-indicator .w2 {
        animation-delay: 0.5s;
    }
    .menu-indicator .w3 {
        animation-delay: 0.9s;
    }
    .menu-indicator .w4 {
        animation-delay: 1.3s;
    }
    .menu-indicator .w5 {
        animation-delay: 1.7s;
    }
    
    .arrow-bounce {
        display: inline-block;
        opacity: 0;
        animation: arrow-cycle 5.5s infinite ease-in-out;
        animation-delay: 2.1s;
    }
}

@keyframes word-fade-in {
    0% { opacity: 0; transform: translateY(3px); }
    8% { opacity: 1; transform: translateY(0); } /* Appears quickly after delay */
    82% { opacity: 1; transform: translateY(0); } /* Stays visible */
    90%, 100% { opacity: 0; } /* Fades out at end of cycle */
}

@keyframes arrow-cycle {
    0% { opacity: 0; transform: translateX(0); }
    8% { opacity: 1; transform: translateX(0); }
    18%, 38%, 58%, 78% { opacity: 1; transform: translateX(-4px); }
    28%, 48%, 68% { opacity: 1; transform: translateX(0); }
    90%, 100% { opacity: 0; }
}

@keyframes indicator-cycle {
    0%, 82% { opacity: 1; }
    92%, 100% { opacity: 0; }
}

.seo-technical-block {
    background: rgba(255, 255, 255, 0.01);
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    border: 1px solid var(--card-border);
}
