:root {
    --primary-color: #1f8ed6;
    --primary-color-dark: #0f5ea8;
    --primary-color-light: #44b8ef;
    --secondary-color: #1d4f9c;
    --accent-color: #7fd9ff;
    --dark-color: #0b1220;
    --dark-soft: #111a2b;
    --dark-card: rgba(17, 26, 43, 0.88);
    --text-color: #f5f7fb;
    --text-muted: #aab7cf;
    --white-color: #ffffff;
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-lg: 0 20px 60px rgba(5, 18, 38, 0.35);
    --shadow-md: 0 12px 30px rgba(8, 20, 40, 0.22);
    --shadow-sm: 0 8px 20px rgba(12, 25, 45, 0.16);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --transition: all 0.35s ease;
    --section-padding: 110px 0;
    --section-padding-sm: 80px 0;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body.homepage-body {
    font-family: "Cairo", sans-serif;
    background: linear-gradient(180deg, #07101d 0%, #0b1220 35%, #0d1728 100%);
    color: var(--text-color);
    overflow-x: hidden !important;
    line-height: 1.7;
    width: 100%;
    max-width: 100%;
}

img,
video,
iframe,
svg,
canvas {
    max-width: 100%;
    display: block;
}

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

button,
input,
textarea,
select {
    font-family: "Cairo", sans-serif;
}

section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section-padding {
    padding: var(--section-padding);
}

.section-padding-sm {
    padding: var(--section-padding-sm);
}

.container,
.container-fluid {
    position: relative;
    z-index: 2;
}

.section-heading {
    max-width: 780px;
}

.section-heading.text-center {
    margin-right: auto;
    margin-left: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(68, 184, 239, 0.12);
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 700;
    border: 1px solid rgba(127, 217, 255, 0.18);
    letter-spacing: 0.2px;
    margin-bottom: 15px;
    max-width: 100%;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    color: var(--white-color);
    line-height: 1.3;
    margin-bottom: 16px;
    overflow-wrap: break-word;
}

.section-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 0;
    overflow-wrap: break-word;
}

.btn-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color-dark), var(--primary-color-light));
    color: var(--white-color);
    border: none;
    box-shadow: 0 12px 26px rgba(31, 142, 214, 0.22);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-gradient-primary:hover,
.btn-gradient-primary:focus {
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(31, 142, 214, 0.32);
}

.btn-gradient-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color-light), var(--primary-color-dark));
    opacity: 0;
    transition: var(--transition);
}

.btn-gradient-primary:hover::before,
.btn-gradient-primary:focus::before {
    opacity: 1;
}

.btn-gradient-primary span,
.btn-gradient-primary i,
.btn-gradient-primary {
    position: relative;
    z-index: 2;
}

.btn-outline-light {
    border-width: 1.5px;
}

#preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, #08111d 0%, #0b1220 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-wrapper {
    max-width: 320px;
    padding: 30px;
}

.loader-logo {
    width: 130px;
    margin: 0 auto;
    filter: drop-shadow(0 10px 25px rgba(68, 184, 239, 0.18));
}

.loader-spinner {
    width: 54px;
    height: 54px;
    border: 3px solid rgba(255, 255, 255, 0.18);
    border-top-color: var(--primary-color-light);
    border-radius: 50%;
    margin: 0 auto;
    animation: spinLoader 1s linear infinite;
}

.loader-text {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 600;
}

@keyframes spinLoader {
    to {
        transform: rotate(360deg);
    }
}

.custom-navbar {
    padding: 16px 0;
    transition: var(--transition);
    background: rgba(5, 10, 18, 0.18);
    backdrop-filter: blur(10px);
}

.custom-navbar.navbar-scrolled {
    background: rgba(7, 14, 26, 0.92);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    padding: 4px;
    flex-shrink: 0;
}

.brand-title {
    display: block;
    font-size: 1.08rem;
    font-weight: 900;
    color: var(--white-color);
    line-height: 1.1;
}

.brand-subtitle {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.custom-navbar .nav-link {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
    font-weight: 700;
    padding: 12px 16px !important;
    position: relative;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: var(--white-color);
}

.custom-navbar .nav-link::after {
    content: "";
    position: absolute;
    right: 16px;
    bottom: 6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color-light), var(--primary-color-dark));
    transition: var(--transition);
    border-radius: 10px;
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
    width: calc(100% - 32px);
}

.custom-toggler {
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none !important;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 110px;
    background: radial-gradient(circle at top left, rgba(31, 142, 214, 0.14) 0%, rgba(8, 15, 27, 0) 30%),
                radial-gradient(circle at bottom right, rgba(68, 184, 239, 0.12) 0%, rgba(8, 15, 27, 0) 35%);
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 9, 19, 0.88) 0%, rgba(7, 12, 22, 0.72) 40%, rgba(7, 12, 22, 0.58) 100%),
        linear-gradient(180deg, rgba(6, 12, 22, 0.30) 0%, rgba(6, 12, 22, 0.82) 100%);
}

.hero-shapes .hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(3px);
    z-index: 1;
}

.shape-1 {
    top: 16%;
    right: 6%;
    width: 180px;
    height: 180px;
    background: rgba(68, 184, 239, 0.08);
    animation: floating 8s ease-in-out infinite;
}

.shape-2 {
    bottom: 15%;
    left: 4%;
    width: 280px;
    height: 280px;
    background: rgba(15, 94, 168, 0.08);
    animation: floating 10s ease-in-out infinite reverse;
}

.shape-3 {
    top: 48%;
    right: 42%;
    width: 90px;
    height: 90px;
    background: rgba(127, 217, 255, 0.08);
    animation: floating 7s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-14px) translateX(10px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-color);
    border: 1px solid rgba(255, 255, 255, 0.09);
    font-weight: 700;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    max-width: 100%;
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 4.7rem);
    font-weight: 900;
    line-height: 1.22;
    margin-bottom: 20px;
    color: var(--white-color);
    overflow-wrap: break-word;
}

.hero-title span,
.hero-title strong {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color-light), var(--primary-color-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1.08rem;
    color: rgba(245, 247, 251, 0.86);
    max-width: 700px;
    margin-bottom: 30px;
}

.hero-actions .btn {
    min-width: 200px;
    min-height: 58px;
    font-weight: 800;
}

.hero-stats {
    max-width: 700px;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    text-align: center;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.hero-stat-card h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white-color);
    margin-bottom: 6px;
}

.hero-stat-card p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-weight: 700;
}

.hero-image-box {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.hero-main-card {
    background: linear-gradient(180deg, rgba(15, 24, 39, 0.92) 0%, rgba(18, 32, 54, 0.84) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 34px;
    padding: 38px 32px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(14px);
    position: relative;
    overflow: hidden;
}

.hero-main-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(68, 184, 239, 0.25) 0%, rgba(68, 184, 239, 0) 70%);
    top: -40px;
    left: -40px;
}

.hero-logo-main {
    width: 220px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 14px 32px rgba(15, 94, 168, 0.22));
}

.hero-card-text h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.hero-card-text p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 1rem;
}

.hero-floating-card {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(12, 23, 40, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white-color);
    box-shadow: var(--shadow-md);
    font-weight: 700;
    backdrop-filter: blur(10px);
    animation: floatCard 5.5s ease-in-out infinite;
    max-width: calc(100vw - 40px);
}

.hero-floating-card i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.floating-card-1 {
    top: 60px;
    right: -10px;
}

.floating-card-2 {
    bottom: 90px;
    left: -15px;
    animation-delay: 1s;
}

.floating-card-3 {
    bottom: 15px;
    right: 40px;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.scroll-down-indicator {
    position: absolute;
    bottom: 26px;
    right: 50%;
    transform: translateX(50%);
    color: rgba(255, 255, 255, 0.72);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    font-weight: 700;
    font-size: 0.92rem;
}

.scroll-down-indicator i {
    font-size: 1.15rem;
    animation: bounceDown 1.8s infinite;
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

.about-section,
.vision-section,
.testimonials-section,
.location-section {
    background: linear-gradient(180deg, rgba(11, 18, 32, 0.98) 0%, rgba(12, 21, 36, 0.98) 100%);
}

.features-section,
.hours-section,
.gallery-section,
.faq-section,
.contact-section {
    background: linear-gradient(180deg, rgba(8, 15, 27, 0.98) 0%, rgba(10, 18, 31, 0.98) 100%);
}

.about-main-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-main-image img {
    min-height: 500px;
    object-fit: cover;
    width: 100%;
}

.about-experience-card {
    position: absolute;
    left: -10px;
    bottom: 30px;
    background: linear-gradient(135deg, rgba(15, 94, 168, 0.95), rgba(68, 184, 239, 0.95));
    color: var(--white-color);
    padding: 24px 20px;
    border-radius: 24px;
    max-width: 210px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.about-experience-card h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 6px;
}

.about-experience-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    font-weight: 700;
}

.info-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 22px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.info-card:hover {
    transform: translateY(-6px);
    border-color: rgba(127, 217, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
}

.info-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(15, 94, 168, 0.18), rgba(68, 184, 239, 0.16));
    color: var(--accent-color);
    font-size: 1.3rem;
}

.info-card h5 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white-color);
    margin-bottom: 6px;
}

.info-card p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.96rem;
}

.feature-box {
    background: linear-gradient(180deg, rgba(14, 24, 40, 0.88), rgba(10, 17, 29, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 28px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    height: 100%;
}

.feature-box::before {
    content: "";
    position: absolute;
    inset: auto -30px -30px auto;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(68, 184, 239, 0.10) 0%, rgba(68, 184, 239, 0) 70%);
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: rgba(127, 217, 255, 0.18);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 94, 168, 0.18), rgba(68, 184, 239, 0.16));
    color: var(--accent-color);
    font-size: 1.8rem;
}

.feature-box h4 {
    font-size: 1.25rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--white-color);
}

.feature-box p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.glass-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 36px 30px;
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: rgba(127, 217, 255, 0.24);
}

.glass-icon {
    width: 78px;
    height: 78px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 94, 168, 0.20), rgba(68, 184, 239, 0.16));
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 22px;
}

.glass-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 14px;
    color: var(--white-color);
}

.glass-card p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 1rem;
}

.hours-side-card {
    background: linear-gradient(180deg, rgba(17, 28, 47, 0.92), rgba(12, 20, 34, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 26px;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

.hours-side-card h4 {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white-color);
    margin-bottom: 10px;
}

.hours-side-card p {
    color: var(--text-muted);
    margin-bottom: 18px;
}

.hours-table-wrap {
    background: linear-gradient(180deg, rgba(14, 23, 39, 0.92), rgba(10, 17, 29, 0.98));
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
}

.hours-row:hover,
.hours-row.active {
    background: linear-gradient(135deg, rgba(15, 94, 168, 0.14), rgba(68, 184, 239, 0.10));
    border-color: rgba(127, 217, 255, 0.16);
}

.hours-row span {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white-color);
}

.hours-row strong {
    font-size: 0.98rem;
    color: var(--text-muted);
    font-weight: 700;
}

.gallerySwiper {
    padding-bottom: 50px;
}

.gallery-card {
    position: relative;
    display: block;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 420px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 15, 27, 0.08), rgba(8, 15, 27, 0.70));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

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

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color-light);
}

.video-box {
    border-radius: 34px;
    min-height: 520px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}

.video-cover-image {
    min-height: 520px;
    object-fit: cover;
    filter: saturate(1.05);
    width: 100%;
}

.video-dark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 14, 23, 0.35), rgba(7, 12, 22, 0.84));
}

.video-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 2;
    text-align: center;
}

.video-content h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 900;
}

.video-play-btn {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary-color-dark), var(--primary-color-light));
    color: var(--white-color);
    font-size: 2.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 34px rgba(31, 142, 214, 0.28);
    transition: var(--transition);
    animation: pulsePlay 2s infinite;
    flex-shrink: 0;
}

.video-play-btn:hover {
    transform: scale(1.08);
}

@keyframes pulsePlay {
    0% {
        box-shadow: 0 0 0 0 rgba(68, 184, 239, 0.40);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(68, 184, 239, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(68, 184, 239, 0);
    }
}

.testimonial-card {
    background: linear-gradient(180deg, rgba(16, 27, 44, 0.92), rgba(10, 18, 31, 0.98));
    border-radius: 28px;
    padding: 30px 26px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

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

.testimonial-stars i {
    color: #ffd15c;
    margin-left: 2px;
}

.testimonial-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color-dark), var(--primary-color-light));
    color: var(--white-color);
    font-weight: 900;
    font-size: 1.2rem;
}

.testimonial-user h6 {
    margin-bottom: 4px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--white-color);
}

.testimonial-user small {
    color: var(--text-muted);
}

.custom-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 22px !important;
    overflow: hidden;
    margin-bottom: 18px;
}

.custom-accordion .accordion-button {
    background: transparent;
    color: var(--white-color);
    font-weight: 800;
    box-shadow: none !important;
    padding: 22px 24px;
    border-radius: 22px !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--accent-color);
    background: rgba(68, 184, 239, 0.06);
}

.custom-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
    flex-shrink: 0;
    margin-right: auto;
    margin-left: 0;
}

.custom-accordion .accordion-body {
    color: var(--text-muted);
    padding: 0 24px 22px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(15, 94, 168, 0.95), rgba(68, 184, 239, 0.90));
    border-radius: 34px;
    padding: 54px 28px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-box::before,
.cta-box::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cta-box::before {
    width: 170px;
    height: 170px;
    top: -40px;
    left: -30px;
}

.cta-box::after {
    width: 130px;
    height: 130px;
    bottom: -25px;
    right: -20px;
}

.cta-box h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 900;
    color: var(--white-color);
    margin-bottom: 14px;
}

.cta-box p {
    max-width: 740px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.04rem;
}

.location-info-card,
.contact-info-box,
.contact-form-box {
    background: linear-gradient(180deg, rgba(16, 27, 44, 0.92), rgba(10, 18, 31, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 30px;
    padding: 30px 26px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.location-item,
.contact-mini-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.location-item:last-child,
.contact-mini-card:last-child {
    border-bottom: none;
}

.location-icon,
.contact-mini-card i {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 94, 168, 0.18), rgba(68, 184, 239, 0.16));
    color: var(--accent-color);
    font-size: 1.2rem;
}

.location-item h5,
.contact-mini-card h5 {
    font-size: 1.02rem;
    font-weight: 900;
    color: var(--white-color);
    margin-bottom: 5px;
}

.location-item p,
.contact-mini-card a {
    margin-bottom: 0;
    color: var(--text-muted);
    word-break: break-word;
}

.map-box {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.custom-input {
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white-color);
    padding: 14px 18px;
    box-shadow: none !important;
    transition: var(--transition);
    width: 100%;
}

textarea.custom-input {
    min-height: 140px;
    resize: vertical;
}

.custom-input::placeholder {
    color: #8ea1c0;
}

.custom-input:focus {
    border-color: rgba(127, 217, 255, 0.40);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white-color);
}

.form-label {
    color: var(--white-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.form-select.custom-input {
    color: #cbd7eb;
}

.form-select.custom-input option {
    color: #111827;
}

.custom-alert {
    border-radius: 16px;
    border: none;
    font-weight: 700;
}

.footer-section {
    background: #070d17;
    padding: 80px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.footer-logo {
    width: 74px;
    height: 74px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    padding: 4px;
    flex-shrink: 0;
}

.footer-brand h4,
.footer-links h5 {
    color: var(--white-color);
    font-weight: 900;
}

.footer-text,
.footer-links ul li,
.footer-links ul li span {
    color: var(--text-muted);
}

.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-right: 4px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color-dark), var(--primary-color-light));
    transform: translateY(-4px);
}

.footer-bottom {
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    color: var(--text-muted);
}

.video-modal .modal-content {
    box-shadow: var(--shadow-lg);
}

.floating-actions {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.02);
    color: var(--white-color);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #1ebc61, #17a34a);
}

.phone-btn {
    background: linear-gradient(135deg, var(--primary-color-dark), var(--primary-color-light));
}

.top-btn {
    background: linear-gradient(135deg, #202c41, #101827);
    opacity: 0;
    visibility: hidden;
}

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

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #08101b;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color-dark), var(--primary-color-light));
    border-radius: 999px;
}

::selection {
    background: rgba(68, 184, 239, 0.25);
    color: var(--white-color);
}

@media (max-width: 1399.98px) {
    .hero-title {
        font-size: clamp(2.4rem, 4vw, 4rem);
    }

    .hero-image-box {
        min-height: 500px;
    }
}

@media (max-width: 1199.98px) {
    .section-padding {
        padding: 90px 0;
    }

    .hero-section {
        padding-top: 120px;
    }

    .hero-main-card {
        max-width: 390px;
    }

    .gallery-card {
        height: 370px;
    }

    .hero-floating-card {
        max-width: 260px;
        white-space: normal;
    }
}

@media (max-width: 991.98px) {
    .custom-navbar {
        background: rgba(8, 14, 26, 0.96);
    }

    .custom-navbar .navbar-collapse {
        background: rgba(8, 14, 26, 0.98);
        margin-top: 14px;
        border-radius: 20px;
        padding: 18px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        overflow: hidden;
    }

    .custom-navbar .nav-link {
        padding: 10px 8px !important;
    }

    .hero-section {
        padding-top: 130px;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
    }

    .hero-text,
    .hero-stats,
    .section-heading {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-image-box {
        min-height: 420px;
        margin-top: 30px;
    }

    .hero-main-card {
        margin: 0 auto;
    }

    .floating-card-1 {
        top: 24px;
        right: 0;
    }

    .floating-card-2 {
        left: 0;
        bottom: 80px;
    }

    .floating-card-3 {
        right: 25px;
        bottom: 5px;
    }

    .about-main-image img,
    .video-box,
    .video-cover-image {
        min-height: 420px;
    }

    .hours-row {
        gap: 16px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 72px 0;
        --section-padding-sm: 56px 0;
    }

    .container,
    .container-fluid {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .row {
        --bs-gutter-x: 1.25rem;
    }

    body.homepage-body {
        font-size: 15px;
    }

    .section-title {
        font-size: 1.9rem;
        line-height: 1.35;
    }

    .section-text {
        font-size: 0.98rem;
    }

    .hero-section {
        padding-top: 100px;
        text-align: center;
        min-height: auto;
    }

    .hero-shapes {
        display: none;
    }

    .hero-badge {
        font-size: 0.84rem;
        padding: 8px 14px;
        margin-bottom: 18px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.35;
        margin-bottom: 14px;
    }

    .hero-text {
        font-size: 0.98rem;
        margin-bottom: 22px;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        min-width: unset;
        min-height: 52px;
    }

    .hero-stats {
        margin-top: 8px;
    }

    .hero-stat-card {
        padding: 18px 14px;
    }

    .hero-stat-card h3 {
        font-size: 1.65rem;
    }

    .hero-image-box {
        min-height: auto;
        margin-top: 28px;
        display: block;
    }

    .hero-main-card {
        padding: 28px 18px;
        border-radius: 26px;
        max-width: 100%;
    }

    .hero-logo-main {
        width: 180px;
    }

    .hero-card-text h3 {
        font-size: 1.65rem;
    }

    .hero-card-text p {
        font-size: 0.95rem;
    }

    .hero-floating-card {
        display: none;
    }

    .scroll-down-indicator {
        display: none;
    }

    .about-main-image img {
        min-height: 320px;
    }

    .about-experience-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 18px;
        max-width: 100%;
        border-radius: 20px;
    }

    .info-card,
    .feature-box,
    .glass-card,
    .location-info-card,
    .contact-info-box,
    .contact-form-box,
    .hours-table-wrap,
    .testimonial-card,
    .cta-box {
        border-radius: 24px;
    }

    .feature-box {
        padding: 28px 20px;
    }

    .glass-card {
        padding: 28px 22px;
    }

    .hours-table-wrap {
        padding: 18px;
    }

    .hours-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .hours-row strong {
        font-size: 0.94rem;
    }

    .gallery-card {
        height: 300px;
    }

    .video-box,
    .video-cover-image {
        min-height: 320px;
    }

    .video-content {
        padding: 20px 16px;
    }

    .video-content h2 {
        font-size: 1.65rem;
        line-height: 1.35;
        margin-bottom: 10px !important;
    }

    .video-content p {
        font-size: 0.92rem;
        margin-bottom: 18px !important;
    }

    .video-play-btn {
        width: 72px;
        height: 72px;
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 24px 20px;
    }

    .testimonial-card p {
        font-size: 0.95rem;
    }

    .custom-accordion .accordion-button {
        padding: 18px 18px;
        font-size: 0.96rem;
        line-height: 1.5;
    }

    .custom-accordion .accordion-body {
        padding: 0 18px 18px;
        font-size: 0.94rem;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-box h2 {
        font-size: 1.7rem;
        line-height: 1.35;
    }

    .cta-box p {
        font-size: 0.95rem;
    }

    .location-info-card,
    .contact-info-box,
    .contact-form-box {
        padding: 24px 18px;
    }

    .location-item,
    .contact-mini-card {
        gap: 12px;
        padding: 14px 0;
    }

    .location-icon,
    .contact-mini-card i {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 14px;
        font-size: 1rem;
    }

    .map-box iframe {
        min-height: 300px;
    }

    .custom-input {
        min-height: 50px;
        padding: 12px 14px;
        border-radius: 14px;
    }

    textarea.custom-input {
        min-height: 120px;
    }

    .footer-section {
        padding: 60px 0 20px;
    }

    .footer-logo {
        width: 64px;
        height: 64px;
    }

    .floating-actions {
        left: 12px;
        bottom: 12px;
        gap: 10px;
    }

    .floating-btn {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .container,
    .container-fluid {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .row {
        --bs-gutter-x: 1rem;
    }

    .brand-logo {
        width: 48px;
        height: 48px;
    }

    .brand-title {
        font-size: 0.95rem;
    }

    .brand-subtitle {
        font-size: 0.7rem;
    }

    .hero-badge,
    .section-badge {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 1.78rem;
    }

    .hero-text {
        font-size: 0.93rem;
    }

    .hero-stat-card {
        padding: 16px 12px;
    }

    .hero-stat-card h3 {
        font-size: 1.5rem;
    }

    .hero-logo-main {
        width: 150px;
    }

    .hero-card-text h3 {
        font-size: 1.45rem;
    }

    .feature-icon,
    .glass-icon {
        width: 68px;
        height: 68px;
        font-size: 1.5rem;
    }

    .gallery-card {
        height: 260px;
        border-radius: 20px;
    }

    .video-box,
    .video-cover-image {
        min-height: 280px;
        border-radius: 22px;
    }

    .video-content h2 {
        font-size: 1.45rem;
    }

    .video-play-btn {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    .testimonial-user {
        gap: 10px;
    }

    .testimonial-avatar {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 1rem;
    }

    .hours-row {
        padding: 14px;
    }

    .cta-box {
        padding: 34px 16px;
        border-radius: 22px;
    }

    .cta-box h2 {
        font-size: 1.45rem;
    }

    .cta-box p {
        font-size: 0.9rem;
    }

    .map-box iframe {
        min-height: 260px;
    }

    .footer-bottom {
        margin-top: 28px;
        padding-top: 16px;
    }
}