/* ==========================================
   DESIGN SYSTEM & CSS VARIABLES
   ========================================== */
:root {
    /* Colors */
    --bg-primary: #08080a;
    --bg-secondary: #101115;
    --bg-glass: rgba(16, 17, 21, 0.65);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-active: rgba(0, 240, 255, 0.35);
    
    --accent-purple: #7a00df;
    --accent-purple-light: #a020f0;
    --accent-cyan: #00f0ff;
    --accent-teal: #00bfa5;
    
    --text-primary: #ffffff;
    --text-secondary: #8a8f98;
    --text-muted: #60646c;
    
    --gradient-purple: linear-gradient(135deg, #6f00ff 0%, #ab1dfe 100%);
    --gradient-cyan: linear-gradient(135deg, #00f0ff 0%, #00bfa5 100%);
    --gradient-dark: linear-gradient(180deg, rgba(8, 8, 10, 0) 0%, #08080a 100%);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================
   BASE STYLES & RESET
   ========================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #20222a;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}

/* ==========================================
   REUSABLE COMPONENTS (Buttons, Layout)
   ========================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

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

.section-tag {
    font-family: var(--font-heading);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 18px;
    font-weight: 300;
}

.gradient-text {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-purple);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(111, 0, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(111, 0, 255, 0.5);
    background: linear-gradient(135deg, #801aff 0%, #b833ff 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

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

.hero-section .btn-secondary {
    background: #00f0ff !important;
    color: #08080a !important;
    border-color: #00f0ff !important;
    font-weight: 600;
}

.hero-section .btn-secondary:hover {
    background: #00bfa5 !important;
    border-color: #00bfa5 !important;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--accent-purple);
}

.btn-outline:hover {
    background: var(--accent-purple);
    box-shadow: 0 4px 15px rgba(122, 0, 223, 0.4);
}

.btn-outline-alt {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn-outline-alt:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Glassmorphic Panel */
.glass-panel {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--border-radius-md);
    padding: 32px;
}

/* ==========================================
   HEADER NAVIGATION
   ========================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002; /* Ensure header is always on top of drawer overlay */
    padding: 24px 0;
    transition: background-color 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

header.transparent-header {
    background-color: transparent;
}

header.scrolled {
    background-color: rgba(8, 8, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    position: relative;
    height: 42px;
    width: 128px; /* Width of the horizontal full logo */
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

header.scrolled .logo {
    width: 27px; /* Width of the icon logo when scrolled */
}

.brand-logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.logo-full {
    left: 0;
    width: 128px;
    height: 42px;
    opacity: 1;
    transform: translateY(-50%) scale(1);
    pointer-events: auto;
}

header.scrolled .logo-full {
    opacity: 0;
    transform: translateY(-50%) scale(0.85) translateX(-20px);
    pointer-events: none;
}

.logo-icon {
    left: 0;
    width: 27px;
    height: 42px;
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
    pointer-events: none;
}

header.scrolled .logo-icon {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    pointer-events: auto;
}

/* Color Mapping for SVG Logo Paths */
.logo-accent-cyan {
    fill: var(--accent-cyan) !important;
    transition: fill 0.3s ease;
}

.logo-text-white {
    fill: #ffffff !important;
    transition: fill 0.3s ease;
}

header.scrolled .logo-text-white {
    fill: var(--text-primary) !important;
}

html.light-theme header.scrolled .logo-text-white {
    fill: var(--text-primary) !important;
}

.nav-links {
    display: none; /* Combined into right-hand slider drawer on all screen sizes */
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 6px 0;
}

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

.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-purple);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-link i {
    color: var(--accent-cyan);
}

.phone-link:hover {
    color: var(--accent-cyan);
}

.mobile-nav-toggle {
    display: block; /* Show hamburger toggle on all screen sizes */
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    z-index: 1003; /* Keep toggle icon on top of the slide drawer */
    transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-nav-toggle:hover {
    color: var(--accent-cyan);
    transform: scale(1.1);
}

/* Mobile / Side Menu Drawer (Slides in from the right) */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px; /* Hidden offscreen to the right */
    width: 320px;
    height: 100vh;
    background: rgba(8, 8, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1001; /* Sits below header (1002) but above page content */
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid var(--border-glass);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 100px 24px 40px 24px; /* Space for the header */
}

.mobile-menu.open {
    right: 0; /* Slide in! */
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    width: 100%;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mobile-nav-links a:hover {
    color: var(--accent-cyan);
    padding-left: 8px; /* Subtle indent effect on hover */
}

.mobile-phone-link {
    color: var(--text-primary) !important;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600 !important;
    margin-top: 12px;
}

.mobile-phone-link i {
    color: var(--accent-cyan);
}

/* Background Blur Overlay for Menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================
   HERO SECTION (with Parallax Overlay)
   ========================================== */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 8, 10, 0.4) 0%, rgba(8, 8, 10, 0.85) 70%, #08080a 100%);
    z-index: 1;
}

.hero-overlay-text {
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    width: 90%;
    max-width: 850px;
    z-index: 2;
    will-change: transform;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 7vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-description {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto 20px;
}

.hero-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 8px 18px;
    margin: 0 auto 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-rating-badge .rating-stars {
    display: flex;
    gap: 3px;
    color: #ffb300;
    font-size: 14px;
}

.hero-rating-badge span {
    font-size: 14px;
    color: var(--text-primary);
    font-family: var(--font-body);
}

.hero-rating-badge strong {
    color: var(--accent-cyan);
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ==========================================
   SERVICES / PACKAGES SECTION
   ========================================== */
.services-section {
    padding: 100px 0;
    position: relative;
    z-index: 5;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.package-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-md);
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: rgba(111, 0, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(111, 0, 255, 0.1);
}

.package-card.popular {
    border-color: var(--accent-purple);
    background: linear-gradient(180deg, rgba(20, 15, 30, 0.8) 0%, rgba(16, 17, 21, 0.75) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.package-card.popular:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(111, 0, 255, 0.2);
}

.card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-purple);
    color: var(--text-primary);
    padding: 4px 16px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-header h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
    min-height: 44px;
}

.price-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
}

.price-from {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 800;
    color: var(--text-primary);
}

.card-body {
    flex-grow: 1;
    margin-bottom: 40px;
}

.inclusions-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.inclusions-list li {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.inclusions-list li i {
    color: var(--accent-cyan);
    margin-top: 4px;
}

.lead-inclusion {
    font-weight: 600;
    color: var(--text-primary) !important;
}

.lead-inclusion i {
    color: var(--accent-purple-light) !important;
}

.card-footer .btn {
    width: 100%;
}

/* ==========================================
   BEFORE & AFTER SECTION
   ========================================== */
.before-after-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.slider-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border-subtle);
}

.comparison-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
}

.comparison-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-before {
    z-index: 1;
}

.image-after-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%; /* JS will update this width */
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.image-after {
    width: 100% !important; /* Ensure image scales correctly */
    max-width: none !important;
}

/* Slider Handle */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%; /* JS will update this left */
    width: 4px;
    height: 100%;
    background: var(--accent-cyan);
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.handle-line {
    width: 4px;
    height: 100%;
    background: var(--accent-cyan);
}

.handle-arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--bg-primary);
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: var(--transition-fast);
}

.handle-arrow.left {
    transform: translateX(-24px);
}

.handle-arrow.right {
    transform: translateX(24px);
}

.slider-handle:hover .handle-arrow {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
}

/* ==========================================
   PRICING ESTIMATOR SECTION
   ========================================== */
.calculator-section {
    padding: 100px 0;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 32px;
    align-items: start;
}

.calc-subtitle {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.calc-subtitle i {
    color: var(--accent-cyan);
}

.input-group {
    margin-bottom: 32px;
}

.input-group:last-child {
    margin-bottom: 0;
}

.input-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

/* Vehicle Size Radio Tiles */
.radio-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.tile-label {
    cursor: pointer;
}

.tile-label input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.tile-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--border-radius-sm);
    padding: 18px 12px;
    text-align: center;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 100%;
}

.tile-content i {
    font-size: 24px;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.tile-content span {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.tile-content small {
    color: var(--text-muted);
    font-size: 11px;
}

.tile-label input:checked + .tile-content {
    background: rgba(122, 0, 223, 0.08);
    border-color: var(--accent-purple);
    box-shadow: 0 0 15px rgba(122, 0, 223, 0.2);
}

.tile-label input:checked + .tile-content i {
    color: var(--accent-cyan);
}

/* Package select buttons */
.select-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.package-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--border-radius-sm);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
    color: var(--text-primary);
}

.package-btn .btn-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
}

.package-btn .btn-price {
    font-weight: 700;
    color: var(--accent-cyan);
}

.package-btn:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.package-btn.active {
    background: rgba(122, 0, 223, 0.08);
    border-color: var(--accent-purple);
    box-shadow: 0 0 15px rgba(122, 0, 223, 0.2);
}

/* Addons list checkbox grid */
.addons-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.addon-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-secondary);
    user-select: none;
    min-height: 24px;
}

.addon-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    transition: var(--transition-fast);
}

.addon-checkbox:hover input ~ .checkmark {
    border-color: rgba(255, 255, 255, 0.2);
}

.addon-checkbox input:checked ~ .checkmark {
    background-color: var(--accent-purple);
    border-color: var(--accent-purple);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.addon-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.addon-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.addon-name {
    flex-grow: 1;
}

.addon-price {
    font-weight: 600;
    color: var(--accent-cyan);
    margin-left: 8px;
    white-space: nowrap;
}

/* Calculator Summary Panel */
.calc-results.highlight {
    position: sticky;
    top: 100px;
    border-color: rgba(0, 240, 255, 0.15);
    background: linear-gradient(180deg, rgba(16, 17, 21, 0.75) 0%, rgba(10, 15, 25, 0.8) 100%);
    box-shadow: 0 15px 30px rgba(0, 240, 255, 0.03);
}

.summary-breakdown {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-secondary);
}

.summary-item strong {
    color: var(--text-primary);
}

.summary-divider {
    border: none;
    border-top: 1px solid var(--border-subtle);
    margin: 8px 0;
}

.discount-banner {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: var(--border-radius-sm);
    padding: 10px 14px;
    font-size: 13px;
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    gap: 8px;
}

.total-display {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin: 12px 0 24px;
}

.total-label {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
}

.total-amount {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--accent-cyan);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.price-disclaimer {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 24px;
}

/* ==========================================
   REVIEWS SECTION
   ========================================== */
.reviews-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.reviews-slider-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px;
}

.reviews-wrapper {
    display: flex;
    gap: 24px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 10px 0;
}

.review-card {
    min-width: calc(50% - 12px);
    width: calc(50% - 12px);
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--border-radius-md);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 18px;
}

.reviewer-info h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.review-stars {
    display: flex;
    gap: 4px;
    color: #ffb300;
    font-size: 12px;
}

.review-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.source-tag {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.source-tag i {
    color: #4285f4; /* Google blue */
}

/* Review Slider Controls */
.slider-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition-fast);
}

.control-btn:hover {
    background: var(--accent-purple);
    border-color: var(--accent-purple);
    box-shadow: 0 4px 15px rgba(111, 0, 255, 0.3);
}

/* ==========================================
   BOOKING / CONTACT SECTION
   ========================================== */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    align-items: start;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-desc {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background: rgba(122, 0, 223, 0.08);
    border: 1px solid rgba(122, 0, 223, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 20px;
}

.info-text span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.info-text strong {
    font-size: 16px;
    color: var(--text-primary);
}

/* Booking Form Elements */
.form-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition-fast);
    width: 100%;
}

.booking-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%2712%27%20height%3D%2712%27%20fill%3D%27white%27%20viewBox%3D%270%200%2016%2016%27%3E%3Cpath%20d%3D%27M7.247%2011.14%202.451%205.658C1.885%205.013%202.345%204%203.204%204h9.592a1%201%200%200%201%20.753%201.659l-4.796%205.48a1%201%200%200%201-1.506%200z%27%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.booking-form select::-ms-expand {
    display: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--accent-purple);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(122, 0, 223, 0.2);
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.form-pricing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-subtle);
    padding-top: 24px;
    margin-top: 10px;
}

.form-price-est span {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
}

.form-price-est strong {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    color: var(--accent-cyan);
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    background: #050507;
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 5fr 3fr 4fr;
    gap: 64px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background: var(--accent-cyan);
    color: var(--bg-primary);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
}

.footer-links h3,
.footer-legal h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

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

.footer-links ul a {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-links ul a:hover {
    color: var(--text-primary);
    padding-left: 4px;
}

.footer-legal p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-divider {
    border: none;
    border-top: 1px solid var(--border-subtle);
    margin-bottom: 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* ==========================================
   MODAL DIALOG (Booking Success Feedback)
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 4, 6, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.success-modal {
    background: #0e0f13;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: var(--border-radius-md);
    max-width: 500px;
    width: 90%;
    padding: 40px;
    text-align: center;
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 50px rgba(0, 240, 255, 0.1);
}

.modal-overlay.open .success-modal {
    transform: scale(1);
}

.modal-icon {
    font-size: 56px;
    color: var(--accent-cyan);
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.success-modal h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

.success-modal p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.modal-summary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    text-align: left;
    margin: 24px 0 32px;
}

.modal-summary div {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.modal-summary div:last-child {
    margin-bottom: 0;
    border-top: 1px solid var(--border-subtle);
    padding-top: 8px;
    margin-top: 8px;
}

.modal-summary span {
    font-weight: 600;
    color: var(--text-primary);
}

.modal-summary strong {
    color: var(--accent-cyan);
    font-size: 16px;
}

.modal-close-btn {
    width: 100%;
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================== */

/* Large Tablets & Small Laptops */
@media (max-width: 1024px) {
    .packages-grid {
        gap: 20px;
    }
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    .calc-results.highlight {
        position: static;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-content > :first-child {
        grid-column: span 2;
    }
}

/* Mobile Viewports */
@media (max-width: 768px) {
    .nav-actions .btn {
        display: none;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .radio-tiles {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .addons-list-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        min-width: 100%;
        width: 100%;
    }
    
    .reviews-slider-container {
        padding: 0 20px;
    }
    
    .slider-controls {
        position: static;
        transform: none;
        margin-top: 20px;
        justify-content: center;
        gap: 16px;
        pointer-events: auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-content > :first-child {
        grid-column: auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* Theme Toggle Button */
.theme-toggle {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.theme-toggle:hover {
    color: var(--accent-cyan);
    transform: rotate(30deg) scale(1.1);
}

/* Icon change on light theme */
html.light-theme #themeToggleBtn i::before {
    content: "\f185"; /* FontAwesome Sun Icon */
}

/* ==========================================
   LIGHT THEME CUSTOM OVERRIDES
   ========================================== */
html.light-theme {
    --bg-primary: #f6f7fa;
    --bg-secondary: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.75);
    --border-subtle: rgba(0, 0, 0, 0.08);
    --border-active: rgba(111, 0, 255, 0.35);
    
    --accent-purple: #6f00ff;
    --accent-purple-light: #8b2dfd;
    --accent-cyan: #0077b6; /* High contrast dark-cyan for legibility */
    --accent-teal: #00796b;
    
    --text-primary: #12141d;
    --text-secondary: #4a4e57;
    --text-muted: #787d85;
    
    --gradient-purple: linear-gradient(135deg, #6f00ff 0%, #ab1dfe 100%);
    --gradient-cyan: linear-gradient(135deg, #0077b6 0%, #00796b 100%);
    --gradient-dark: linear-gradient(180deg, rgba(246, 247, 250, 0) 0%, #f6f7fa 100%);
}

/* Keep hero banner overlay dark and contrast white in all modes */
.hero-section,
.hero-section .hero-title,
.hero-section p,
.hero-section .hero-subtitle,
.hero-section .hero-description {
    color: #ffffff !important;
}

.hero-bg-overlay {
    background: linear-gradient(180deg, rgba(8, 8, 10, 0.4) 0%, rgba(8, 8, 10, 0.85) 100%) !important;
}

/* Header Text Color Contrast (White when transparent, dark charcoal when scrolled in light mode) */
header:not(.scrolled) .logo,
header:not(.scrolled) .phone-link,
header:not(.scrolled) .mobile-nav-toggle,
header:not(.scrolled) .theme-toggle {
    color: #ffffff !important;
}
header:not(.scrolled) .btn-outline {
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
}

html.light-theme header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
html.light-theme header.scrolled .logo,
html.light-theme header.scrolled .phone-link,
html.light-theme header.scrolled .mobile-nav-toggle,
html.light-theme header.scrolled .theme-toggle {
    color: var(--text-primary) !important;
}
html.light-theme header.scrolled .btn-outline {
    border-color: var(--border-subtle) !important;
    color: var(--text-primary) !important;
}

/* Clean featured popular card in light mode */
html.light-theme .package-card.popular {
    background: linear-gradient(180deg, rgba(111, 0, 255, 0.04) 0%, rgba(255, 255, 255, 0.95) 100%) !important;
    border-color: var(--accent-purple) !important;
    box-shadow: 0 10px 30px rgba(111, 0, 255, 0.08) !important;
}
html.light-theme .package-card.popular:hover {
    box-shadow: 0 20px 40px rgba(111, 0, 255, 0.15) !important;
}
html.light-theme .package-card.popular p,
html.light-theme .package-card.popular li,
html.light-theme .package-card.popular h3,
html.light-theme .package-card.popular h4,
html.light-theme .package-card.popular span {
    color: var(--text-primary);
}

/* Estimate Summary Box in light mode */
html.light-theme .calc-results.highlight {
    background: linear-gradient(180deg, rgba(111, 0, 255, 0.03) 0%, rgba(255, 255, 255, 0.95) 100%) !important;
    border-color: rgba(111, 0, 255, 0.15) !important;
    box-shadow: 0 15px 30px rgba(111, 0, 255, 0.05) !important;
}
html.light-theme .calc-results.highlight h3,
html.light-theme .calc-results.highlight span,
html.light-theme .calc-results.highlight strong {
    color: var(--text-primary);
}
html.light-theme .calc-results.highlight .total-price-display {
    color: var(--accent-purple) !important;
}

/* Clean light footer in light mode */
html.light-theme .main-footer {
    background: #ffffff !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}
html.light-theme .main-footer h2,
html.light-theme .main-footer h3,
html.light-theme .main-footer h4,
html.light-theme .main-footer p,
html.light-theme .main-footer a,
html.light-theme .main-footer li,
html.light-theme .main-footer span {
    color: var(--text-primary) !important;
}
html.light-theme .main-footer a:hover {
    color: var(--accent-purple) !important;
}
html.light-theme .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
}

/* Mobile Menu drawer background in light mode */
html.light-theme .mobile-menu {
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}

/* Input Fields overrides in light mode */
html.light-theme .booking-form input,
html.light-theme .booking-form select,
html.light-theme .booking-form textarea {
    background-color: rgba(0, 0, 0, 0.02) !important;
    color: var(--text-primary) !important;
}

html.light-theme .booking-form select {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%2712%27%20height%3D%2712%27%20fill%3D%27black%27%20viewBox%3D%270%200%2016%2016%27%3E%3Cpath%20d%3D%27M7.247%2011.14%202.451%205.658C1.885%205.013%202.345%204%203.204%204h9.592a1%201%200%200%201%20.753%201.659l-4.796%205.48a1%201%200%200%201-1.506%200z%27%2F%3E%3C%2Fsvg%3E") !important;
}

html.light-theme .booking-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0) !important;
}

html.light-theme .before-after-handle {
    background: var(--text-primary) !important;
    color: var(--bg-primary) !important;
}

html.light-theme .comparison-slider {
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

/* ==========================================
   GALLERY SHOWCASE SECTION
   ========================================== */
.gallery-section {
    position: relative;
    z-index: 1;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 10px 22px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.filter-btn.active {
    background: var(--gradient-purple);
    color: #ffffff !important;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(111, 0, 255, 0.3);
}

/* Light Theme overrides for filter buttons */
html.light-theme .filter-btn {
    background: rgba(0, 0, 0, 0.02);
    color: var(--text-secondary);
}

html.light-theme .filter-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
}

html.light-theme .filter-btn.active {
    background: var(--gradient-purple);
    color: #ffffff !important;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    opacity: 1;
    transform: scale(1);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, border-color 0.3s ease;
}

/* Hidden state for filtered items */
.gallery-item.hide {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 8, 10, 0) 40%, rgba(8, 8, 10, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Light Theme Overlay text adjustments */
html.light-theme .gallery-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.9) 100%);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.06);
}

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

.gallery-overlay i {
    font-size: 24px;
    color: var(--accent-cyan);
    position: absolute;
    top: 24px;
    right: 24px;
    transform: scale(0.8) translateY(-10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1) translateY(0);
}

.gallery-caption {
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html.light-theme .gallery-caption {
    color: var(--text-primary);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Lightbox Modal Hover actions */
.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-cyan) !important;
    text-decoration: none;
    cursor: pointer;
}
