/* ========================================
   رحلة النور للسفر والسياحة
   Rehlat Alnour Travel & Tourism
   Glassmorphism Dark Mode Premium Design
======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Dark Mode Colors - رحلة النور */
    --bg-primary: #3b383a;
    --bg-secondary: #0e6d57;
    --bg-card: #0d3025;
    --primary: #1B7B5A;
    --primary-light: #25a676;
    --primary-dark: #0f5840;
    --accent: #2ecc71;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.7);

    /* Glassmorphism Variables */
    --glass-bg: rgba(27, 123, 90, 0.08);
    --glass-bg-hover: rgba(27, 123, 90, 0.15);
    --glass-border: rgba(27, 123, 90, 0.2);
    --glass-border-hover: rgba(27, 123, 90, 0.4);
    --glass-blur: blur(20px);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);

    --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(27, 123, 90, 0.1) 0%, rgba(27, 123, 90, 0.05) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(59, 56, 58, 0.92) 0%, rgba(14, 109, 87, 0.88) 100%);
    --gradient-page: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, var(--bg-primary) 100%);
    --glow-primary: 0 0 50px rgba(27, 123, 90, 0.4);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

a {
    text-decoration: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.8;
}

/* ========== Glass Card Mixin ========== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
}

.glass:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
}

/* ========== Scrollbar ========== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}



/* ========== Navbar - Glassmorphism ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    display: flex;
    align-items: center;
    min-height: var(--header-height, 100px);
}

.navbar.scrolled {
    background: rgba(59, 56, 58, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    min-height: var(--sticky-height, 80px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.navbar-brand {
    background: #ffffff;
    padding: 8px 15px 18px;
    border-radius: 0 0 40px 40px;
    margin-top: -20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.navbar.scrolled .navbar-brand {
    padding: 5px 12px 15px;
    margin-top: -10px;
}

.navbar-brand img {
    height: 70px !important;
    max-height: none !important;
    transition: var(--transition);
    object-fit: contain;
    filter: none !important;
}

.navbar.scrolled .navbar-brand img {
    height: 50px !important;
    filter: none !important;
}

.nav-links {
    display: flex;
    gap: 45px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 10px 0;
    transition: var(--transition);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-light);
    text-shadow: 0 0 30px rgba(37, 166, 118, 0.5);
}

/* Font Awesome Fixes */
.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400;
}

.fas,
.fa {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}

.far {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 400;
}

/* Glass CTA Button */
.nav-cta {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid var(--glass-border) !important;
    color: var(--text-primary) !important;
    padding: 12px 30px !important;
    border-radius: 50px;
    font-weight: 700 !important;
    box-shadow: var(--shadow-glass);
    position: relative !important;
    overflow: hidden !important;
}

.nav-cta:hover {
    background: var(--gradient-primary) !important;
    border-color: var(--primary) !important;
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}

/* Shine Effect */
.nav-cta::before {
    content: '' !important;
    display: block !important;
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: 0s;
    pointer-events: none;
}

.nav-cta:hover::before {
    left: 200%;
    transition: 0.6s ease-in-out;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========== Hero Section ========== */
.hero {
    min-height: 100vh;
    background: url('images/hero-bg.webp') center/cover no-repeat fixed;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(15, 15, 15, 0.9) 50%, rgba(25, 25, 25, 0.85) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
}

/* Animated Grid */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 60px 60px;
    }
}

/* Glowing Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(60, 60, 60, 0.5);
    top: 5%;
    right: 5%;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(40, 40, 40, 0.5);
    bottom: 10%;
    left: 5%;
    animation-delay: -6s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, -40px) scale(1.15);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 160px 30px 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease forwards;
}

.hero-text h1 {
    font-size: 4.2rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.15;
}

.hero-text h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(27, 123, 90, 0.5));
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 2;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========== Buttons - Glassmorphism ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition-bounce);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
}

.btn:hover::before {
    left: 150%;
    transition: 0.7s ease-in-out;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(27, 123, 90, 0.5);
}

.btn-outline {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    background: var(--glass-bg-hover);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--glow-primary);
}

/* ========== Hero Service Cards - Glass ========== */
.hero-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-service-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 35px 20px;
    text-align: center;
    transition: var(--transition-bounce);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--shadow-glass);
}

.hero-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.hero-service-card:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(27, 123, 90, 0.2);
    border-color: var(--glass-border-hover);
}

.hero-service-card i {
    font-size: 45px;
    color: var(--primary-light);
    margin-bottom: 18px;
    display: block;
    transition: var(--transition);
    opacity: 0.8;
}

.hero-service-card:hover i {
    transform: scale(1.15);
    opacity: 1;
    filter: drop-shadow(0 0 25px rgba(37, 166, 118, 0.6));
}

.hero-service-card h3 {
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 700;
    opacity: 0.9;
}

.hero-service-card:hover h3 {
    opacity: 1;
}

/* ========== Section Styles ========== */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.section-alt {
    background: var(--bg-secondary);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-header h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 25px auto 0;
}

/* ========== About Section - Glass ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
}

.about-image::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-primary);
    border-radius: 34px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(25px);
}

.about-badge {
    position: absolute;
    bottom: -25px;
    left: -25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 255, 250, 0.9));
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(27, 123, 90, 0.3);
    color: var(--primary-dark);
    padding: 25px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-badge h3 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-badge span {
    font-size: 14px;
    font-weight: 600;
}

.about-content h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    /* White base */
    margin-bottom: 25px;
}

.about-content h2 span {
    background: linear-gradient(to bottom, #ffffff, #e0e0e0);
    /* White gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 2;
}

/* About Features - Glass Cards */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 35px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    /* Increased opacity */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

/* About Button High Contrast Style - White Gradient */
.about-btn {
    background: linear-gradient(135deg, #ffffff, #f0f0f0) !important;
    color: #1a1a1a !important;
    /* Dark text for contrast */
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.5);
    font-weight: 800;
}

.about-btn:hover {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.25) !important;
}

.about-feature:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-feature::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
}

.about-feature:hover::after {
    left: 200%;
    transition: 0.7s ease-in-out;
}

.about-feature i {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(27, 123, 90, 0.2), rgba(27, 123, 90, 0.1));
    color: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    border: 1px solid rgba(27, 123, 90, 0.2);
    transition: 0.3s;
}

.about-feature:hover i {
    background: var(--gradient-primary);
    color: var(--text-primary);
    transform: rotateY(180deg);
}

.about-feature span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
}

/* Values Grid - About Page */
.values-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important;
}

@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* Service Cards - New Layout */
.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 520px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 80%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(27, 123, 90, 0.2);
    border-color: rgba(27, 123, 90, 0.3);
}

/* Service Card Shine Effect */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
    z-index: 2;
}

.service-card:hover::after {
    left: 200%;
    transition: 0.7s ease-in-out;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-overlay {
    position: relative;
    inset: auto;
    background: transparent;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
    z-index: 2;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.service-card:hover .service-card-overlay {
    background: transparent;
    backdrop-filter: none;
    padding-bottom: 30px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
    transform: none;
    text-shadow: none;
}

.service-card:hover h3 {
    color: var(--primary-light);
    transform: none;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 1;
    transform: none;
    max-height: none;
    overflow: visible;
    flex-grow: 1;
}

.service-card:hover p {
    transform: none;
    max-height: none;
}

.service-card .btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    opacity: 1;
    transform: none;
    text-decoration: none;
    width: fit-content;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(27, 123, 90, 0.3);
    border: none;
}

.service-card:hover .btn-link {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 123, 90, 0.5);
}

.service-card .btn-link i {
    transition: transform 0.3s ease;
}

.service-card .btn-link:hover i {
    transform: translateX(-5px);
}

.service-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

/* ========== Stats Section - Glass ========== */
/* ========== Stats Section - Glass ========== */
.stats-section.glass-section {
    background: transparent;
    padding: 60px 0 100px;
    position: relative;
    border: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item.glass-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: 0.5s;
}

.stat-item.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-item.glass-card:hover::before {
    opacity: 1;
}

.stat-icon-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

.stat-item.glass-card:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(27, 123, 90, 0.5);
}

.stat-item.glass-card i {
    font-size: 28px;
    color: var(--primary-light);
    transition: 0.3s;
}

.stat-item.glass-card:hover i {
    color: white;
}

.stat-content h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stat-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Animation trigger class */
.animate-glass {
    opacity: 0;
    transform: translateY(40px);
    animation: glassFloat 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes glassFloat {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Contact Section - Glass ========== */
/* ========== Contact Section - Glass ========== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 35px;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
    position: relative;
}

.contact-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
    z-index: 10;
}

.contact-wrapper:hover::after {
    left: 200%;
    transition: 0.8s ease-in-out;
}

.contact-info {
    background: linear-gradient(135deg, rgba(27, 123, 90, 0.9), rgba(18, 140, 126, 0.8));
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
}

.contact-info>p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.8;
    position: relative;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(-8px);
}

.contact-item i {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--text-primary);
    transition: var(--transition);
}

.contact-item:hover i {
    background: rgba(255, 255, 255, 0.2);
}

.contact-item span,
.contact-item a {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    position: relative;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 20px;
    transition: var(--transition-bounce);
}

.social-links a:hover {
    background: var(--text-primary);
    color: var(--primary);
    transform: translateY(-6px);
}

/* Section Layout */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-form {
    padding: 50px;
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.form-group label i {
    margin-left: 8px;
    color: var(--primary-light);
}

/* Glass Form Controls */
.form-control {
    width: 100%;
    padding: 16px 22px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--glass-bg-hover);
    box-shadow: 0 0 0 4px rgba(27, 123, 90, 0.15);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* ========== Page Header - Glass ========== */
.page-header {
    background: var(--gradient-page);
    padding: 130px 0 45px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--glass-border);
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.webp') center/cover;
    opacity: 0.06;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.page-header h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.breadcrumb a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--text-primary);
}

.breadcrumb i {
    color: var(--text-muted);
    font-size: 11px;
}

.breadcrumb span {
    color: var(--text-muted);
}

/* ========== Footer - Glass ========== */
.footer {
    background: var(--bg-secondary);
    padding: 80px 0 0;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--glass-border);
}

.footer-brand img {
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.9;
    font-size: 14px;
}

.footer h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-right: 8px;
}

.footer-links li {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    color: #fff;
    font-size: 14px;
    background-color: #3b383a;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========== Animations ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* WhatsApp Group CTA */
.whatsapp-group-cta {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.whatsapp-group-card {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.whatsapp-group-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
}

.wa-cta-content {
    flex: 1;
}

.wa-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 800;
}

.wa-cta-content h2 span {
    background: linear-gradient(to right, #25d366, #128c7e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wa-cta-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 500px;
}

.wa-cta-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff !important;
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: var(--transition-bounce);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    text-align: center;
}

.wa-cta-btn:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.wa-cta-btn i {
    font-size: 2rem;
}

@media (max-width: 992px) {
    .whatsapp-group-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
        border-radius: 30px;
    }

    .wa-cta-content h2 {
        font-size: 2.2rem;
    }

    .wa-cta-content p {
        margin: 0 auto 30px;
    }

    .wa-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .wa-cta-btn {
        flex-direction: column;
        gap: 8px;
        padding: 20px 30px;
        font-size: 0.95rem;
    }

    .wa-cta-btn i {
        font-size: 2.5rem;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ========== WhatsApp - Glass ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition-bounce);
    z-index: 999;
}

.whatsapp-float:hover {
    transform: scale(1.12) rotate(8deg);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

/* ========== Back to Top - Glass ========== */
#backToTop {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-bounce);
    z-index: 999;
    font-size: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

/* ========== Responsive ========== */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-services {
        max-width: 450px;
        margin: 0 auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-text p {
        margin: 0 auto 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(59, 56, 58, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        padding: 30px;
        gap: 25px;
    }

    .nav-links.active {
        display: flex;
    }

    .navbar-brand {
        padding: 5px 12px 20px;
        border-radius: 0 0 35px 35px;
        margin-top: -10px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }

    .navbar-brand img {
        height: 40px !important;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-services {
        grid-template-columns: 1fr;
        max-width: 280px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .about-feature,
    .stat-item.glass-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 10px;
        gap: 10px;
        margin-bottom: 0 !important;
    }

    .about-feature i,
    .stat-item.glass-card i {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin: 0 auto;
    }

    .about-feature span,
    .stat-item.glass-card p {
        font-size: 13px;
    }

    .stat-item.glass-card h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .about-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 25px;
        padding: 15px 25px;
    }

    .about-badge h3 {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 80px;
        /* Space for bottom nav */
    }

    .footer h4::after {
        right: 50%;
        transform: translateX(50%);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form {
        padding: 25px 20px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header {
        padding: 100px 0 30px;
        text-align: center;
    }

    /* Service Cards Mobile */
    .service-card {
        border-radius: 18px;
    }

    .service-card-image {
        height: 180px;
    }

    .service-card-overlay {
        padding: 20px 18px;
    }

    .service-card h3 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 15px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .service-card .btn-link {
        padding: 10px 20px;
        font-size: 13px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Service Details Page Mobile */
    .service-detail-container {
        padding: 15px;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-detail-image {
        max-height: 250px;
        border-radius: 18px;
    }

    .service-detail-content h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .service-detail-content p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .service-features {
        gap: 12px;
    }

    .service-feature-item {
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    .booking-form-card {
        padding: 20px;
        border-radius: 18px;
    }

    .booking-form-card h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .booking-form-card .form-group {
        margin-bottom: 12px;
    }

    .booking-form-card input,
    .booking-form-card textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .booking-form-card .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    /* Professional Mobile App-like Bottom Nav */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 70px;
        background: rgba(14, 109, 87, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid var(--glass-border);
        z-index: 2000;
        justify-content: space-around;
        align-items: center;
        padding: 0 10px;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    }

    .mobile-bottom-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        text-decoration: none;
        font-size: 11px;
        font-weight: 600;
        transition: var(--transition);
        width: 20%;
        height: 100%;
        gap: 5px;
    }

    .mobile-bottom-nav a i {
        font-size: 20px;
        transition: var(--transition);
    }

    .mobile-bottom-nav a.active {
        color: var(--primary-light);
    }

    .mobile-bottom-nav a.active i {
        transform: translateY(-5px);
        text-shadow: 0 0 15px var(--primary-light);
    }

    .mobile-bottom-nav a.nav-center {
        position: relative;
        top: -15px;
        background: var(--gradient-primary);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        color: white;
        box-shadow: 0 10px 20px rgba(27, 123, 90, 0.4);
        border: 4px solid var(--bg-primary);
    }

    .mobile-bottom-nav a.nav-center i {
        font-size: 22px;
        margin-bottom: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(59, 56, 58, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition-slow);
        z-index: 999;
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 120px 20px 60px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-services {
        margin-top: 40px;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hero-service-card {
        padding: 20px 15px;
    }

    /* Make the last card span 2 columns if odd number of cards */
    .hero-service-card:last-child:nth-child(odd) {
        grid-column: span 2;
    }

    .hero-service-card i {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .hero-service-card h3 {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .service-card {
        min-height: 480px;
    }

    /* WhatsApp Float Adjustment */
    .whatsapp-float {
        bottom: 85px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    #backToTop {
        bottom: 85px;
        left: 20px;
    }
}

/* ========== Service Details Page Styles ========== */

.service-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    /* Increased gap from 40px */
    align-items: start;
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .service-details-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.service-info.glass-card {
    padding: 60px;
    /* Increased padding */
    text-align: right;
    align-items: flex-start;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.info-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
    width: 100%;
}

.requirements-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.requirements-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-primary);
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.requirements-list li i {
    color: var(--accent);
    font-size: 1.2rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {

    .requirements-list,
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

.spec-item {
    text-align: center;
    padding: 25px 15px;
    background: rgba(27, 123, 90, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(27, 123, 90, 0.2);
}

.spec-item i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 15px;
    display: block;
}

.spec-item h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.spec-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Sidebar & Booking Card */
.booking-card {
    padding: 35px;
    position: sticky;
    top: 100px;
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(27, 123, 90, 0.15);
}

.booking-card h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
    text-align: center;
}

.booking-card>p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 600;
}

.form-group label i {
    color: var(--primary-light);
    margin-left: 8px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgba(27, 123, 90, 0.3);
}

.btn-block {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 18px;
}

.support-contact {
    margin-top: 25px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.support-contact span {
    display: block;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.support-contact a {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
}

.support-contact a:hover {
    color: var(--primary-light);
}

/* ========== Service Details Enhancements ========== */

/* Service Main Image */
.service-title-main {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 15px;
}

.service-title-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.service-main-image {
    width: 100%;
    height: 400px;
    /* Fixed height for consistency */
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.service-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-main-image:hover img {
    transform: scale(1.05);
}

.service-main-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(59, 56, 58, 0.4), transparent);
    pointer-events: none;
}

/* Enhanced Booking Card */
.booking-card {
    padding: 35px;
    position: sticky;
    top: 120px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border-radius: 30px;
    /* Added prominent border-radius */
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.booking-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-primary);
    text-align: center;
}

.booking-card>p {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.booking-card .form-group label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.booking-card .form-control {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 50px;
    border-radius: 12px;
}

.booking-card .form-control:focus {
    background: rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(27, 123, 90, 0.1);
}

.booking-card .btn-primary {
    width: 100%;
    justify-content: center;
    height: 55px;
    font-size: 1.1rem;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(27, 123, 90, 0.4);
}

.booking-card .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(27, 123, 90, 0.6);
    transform: translateY(-2px);
}

.support-contact {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.support-contact span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.support-contact a {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    direction: ltr;
    display: inline-block;
    transition: 0.3s;
}

.support-contact a:hover {
    color: var(--primary-light);
}

/* Price Box Styles */
.service-price-box {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.price-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.price-item.sar {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(39, 174, 96, 0.2));
    border-color: rgba(39, 174, 96, 0.3);
}

.price-item.sdg {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(243, 156, 18, 0.2));
    border-color: rgba(243, 156, 18, 0.3);
}

.price-item .currency {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.price-item .amount {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--text-light);
}

.price-item.sar .amount {
    color: #2ecc71;
}

.price-item.sdg .amount {
    color: #f39c12;
}

/* Professional Dynamic Content Styling */
.dynamic-content {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.dynamic-content p {
    margin-bottom: 15px;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.85);
}

/* Headings Styling */
.dynamic-content h1,
.dynamic-content h2,
.dynamic-content h3 {
    color: var(--text-primary);
    margin-top: 35px;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 800;
    position: relative;
    padding-right: 15px;
    border-right: 4px solid var(--primary);
    /* Accent line */
}

.dynamic-content h4,
.dynamic-content h5,
.dynamic-content h6 {
    color: var(--text-primary);
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Lists Styling - Auto-formatted */
.dynamic-content ul {
    list-style: none;
    /* Remove default bullets */
    padding: 0;
    margin-bottom: 25px;
    display: grid;
    gap: 10px;
}

.dynamic-content ul li {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    position: relative;
    padding-right: 45px;
    /* Space for icon */
    transition: 0.3s;
}

.dynamic-content ul li:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.dynamic-content ul li::before {
    content: '\f00c';
    /* FontAwesome Check Icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #2ecc71;
    /* Green check */
    font-size: 0.9rem;
    background: rgba(46, 204, 113, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.dynamic-content ol {
    padding-right: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* --- Professional Content Styling (Pure CSS) --- */

/* Section Titles (h3 in content) */
.dynamic-content h3,
.dynamic-content h4 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(27, 123, 90, 0.3);
    font-size: 1.4rem;
    color: #fff;
    position: relative;
    padding-right: 20px;
}

.dynamic-content h3::before,
.dynamic-content h4::before {
    content: '';
    position: absolute;
    right: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 5px;
    top: 0;
}

/* Stylish Lists */
.dynamic-content ul {
    list-style: none;
    /* Reset default style */
    padding: 0;
    display: grid !important;
    /* Force grid layout */
    gap: 12px !important;
    margin-bottom: 25px;
}

.dynamic-content ul li {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    /* Align top for long text */
    gap: 15px;
    transition: 0.3s;
    position: relative;
}

.dynamic-content ul li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Add Check Icon to LI */
.dynamic-content ul li::before {
    content: '\f058';
    /* Check Circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #2ecc71;
    font-size: 1.2rem;
    margin-top: 3px;
    /* Align with text */
    flex-shrink: 0;
    /* Reset previous styles if any */
    background: none;
    width: auto;
    height: auto;
    position: static;
    transform: none;
}

/* Paragraphs */
.dynamic-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* Strong Text */
.dynamic-content strong {
    color: var(--primary);
    font-weight: 700;
}

/* Fix for empty paragraphs */
.dynamic-content p:empty {
    display: none;
}

/* --- Advanced Dynamic Content Additions --- */

/* Blockquotes */
.dynamic-content blockquote {
    background: linear-gradient(135deg, rgba(27, 123, 90, 0.1), rgba(27, 123, 90, 0.05));
    border-right: 5px solid var(--primary);
    margin: 30px 0;
    padding: 25px 30px;
    border-radius: 15px;
    position: relative;
    font-style: italic;
    color: #fff;
}

.dynamic-content blockquote::before {
    content: '\f10e';
    /* Quote Icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
}

/* Images inside content */
.dynamic-content img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 25px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.dynamic-content img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Links inside content */
.dynamic-content a {
    color: var(--primary-light);
    text-decoration: none;
    border-bottom: 2px solid rgba(27, 123, 90, 0.3);
    transition: 0.3s;
    font-weight: 600;
}

.dynamic-content a:hover {
    color: var(--secondary);
    border-color: var(--secondary);
}

/* Separator Line */
.dynamic-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    margin-top: 15px;
    border-radius: 10px;
}

.dynamic-content ul,
.dynamic-content ol {
    margin-bottom: 10px;
    padding-right: 20px;
    margin-top: 0;
}

.dynamic-content li {
    margin-bottom: 5px;
}

/* Fix for empty paragraphs sometimes created by editors */
.dynamic-content p:empty {
    display: none;
}

/* Shine Effects for Stats and WhatsApp Section */

/* 1. Stats Items Shine */
.stat-item {
    position: relative;
    overflow: hidden;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
}

.stat-item:hover::after {
    left: 200%;
    transition: 0.7s ease-in-out;
}

/* 2. WhatsApp Card Shine */
.whatsapp-group-card {
    position: relative;
    overflow: hidden;
}

.whatsapp-group-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
}

.whatsapp-group-card:hover::after {
    left: 200%;
    transition: 0.8s ease-in-out;
}

/* 3. WhatsApp Button Shine */
.wa-cta-btn {
    position: relative;
    overflow: hidden;
}

.wa-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
}

/* Professional Form Input Styles - Focus & Shine */
.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-input:focus,
.form-textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(27, 123, 90, 0.15);
    transform: translateY(-2px);
}

/* Add specialized shine for primary form button if not covered */
.contact-form button[type="submit"] {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    font-size: 1.1rem;
    padding: 18px;
}