:root {
    --primary-bg: #0F1330;
    --primary-bg-light: #171c44;
    --primary-bg-dark: #0a0d24;
    --accent-cyan: #1FF2FD;
    --accent-cyan-dark: #00d4e6;
    --accent-light: rgba(31, 242, 253, 0.1);
    --accent-medium: rgba(31, 242, 253, 0.3);
    --accent-strong: rgba(31, 242, 253, 0.55);
    --text-white: #ffffff;
    --text-gray: rgba(255, 255, 255, 0.8);
    --text-muted-custom: rgba(255, 255, 255, 0.55);
    --border-glass: rgba(255, 255, 255, 0.08);
    --shadow-cyan: rgba(31, 242, 253, 0.25);
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-white);
    font-family: var(--font-body), 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading), sans-serif;
    letter-spacing: -0.02em;
}

a {
    transition: all 0.3s ease;
}

img {
    border-radius: 0;
}

.text-accent {
    color: var(--accent-cyan) !important;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--shadow-cyan); }
    70% { box-shadow: 0 0 30px 6px var(--shadow-cyan); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

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

/* ============ NAVIGATION ============ */
.navbar {
    background: rgba(15, 19, 48, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--accent-medium);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.navbar-scrolled {
    background: rgba(10, 13, 36, 0.97);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.navbar-brand img {
    filter: drop-shadow(0 0 8px var(--shadow-cyan));
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    filter: drop-shadow(0 0 14px var(--shadow-cyan));
}

.navbar-nav .nav-link {
    color: var(--text-white) !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 10px;
    padding: 8px 4px !important;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-cyan) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 0;
    background: linear-gradient(90deg, var(--accent-cyan), transparent);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ============ BUTTONS ============ */
.btn-custom {
    padding: 13px 28px;
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    background: transparent;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-custom:hover {
    color: var(--primary-bg);
    background: var(--accent-cyan);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px var(--shadow-cyan);
    text-decoration: none;
}

.btn-custom-solid {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
    color: var(--primary-bg);
    border: none;
}

.btn-custom-solid:hover {
    color: var(--primary-bg);
    background: var(--accent-cyan);
    box-shadow: 0 12px 30px var(--shadow-cyan);
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
    color: var(--primary-bg);
    border: none;
}

.btn-primary-custom:hover {
    background: var(--accent-cyan);
    color: var(--primary-bg);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
    border: none;
    border-radius: 50px !important;
    color: var(--primary-bg);
    font-weight: 700;
    padding: 10px 24px;
}

.btn-primary:hover {
    background: var(--accent-cyan);
    color: var(--primary-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow-cyan);
}

.btn-success {
    background: #25D366;
    border: none;
    border-radius: 50px;
    font-weight: 600;
}

.btn-success:hover {
    background: #1eb45a;
}

.btn-outline-secondary {
    border-radius: 50px;
    color: var(--text-gray);
    border-color: var(--accent-medium);
}

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

.pulse-animation {
    animation: glowPulse 2.2s ease-in-out infinite;
}

/* ============ HERO ============ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary-bg);
}

.slider-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

/* Background images for each slide */
.slide:nth-child(1) {
    background-image: linear-gradient(rgba(15,19,48,0.72), rgba(15,19,48,0.82)), url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
}

.slide:nth-child(2) {
    background-image: linear-gradient(rgba(15,19,48,0.72), rgba(15,19,48,0.82)), url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?ixlib=rb-4.0.3&auto=format&fit=crop&w=1951&q=80');
}

.slide:nth-child(3) {
    background-image: linear-gradient(rgba(15,19,48,0.72), rgba(15,19,48,0.82)), url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
}

.slide:nth-child(4) {
    background-image: linear-gradient(rgba(15,19,48,0.72), rgba(15,19,48,0.82)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1973&q=80');
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15,19,48,0.55) 20%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 120px 0 60px;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.9s ease;
}

.hero-title .accent {
    color: var(--accent-cyan);
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2.2rem;
    max-width: 620px;
    color: var(--text-gray);
    animation: fadeInUp 0.9s ease 0.25s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease 0.5s both;
}

.hero-badge-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    animation: fadeInUp 0.9s ease 0.15s both;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-gray);
}

.hero-stat i {
    color: var(--accent-cyan);
    margin-right: 8px;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 20px;
    pointer-events: none;
}

.slider-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(8px);
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.slider-nav-btn:hover {
    background: var(--accent-cyan);
    color: var(--primary-bg);
    box-shadow: 0 8px 25px var(--shadow-cyan);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--accent-cyan);
    width: 34px;
    border-radius: 8px;
    box-shadow: 0 0 12px var(--shadow-cyan);
}

/* ============ SECTIONS ============ */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-white), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    max-width: 640px;
    margin: 0 auto 50px;
}

.search-section {
    background: linear-gradient(135deg, rgba(31, 242, 253, 0.06), transparent);
    padding: 70px 0;
    position: relative;
}

/* ============ CARDS / LISTINGS ============ */
.service-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin: 12px 0;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-medium);
    background: rgba(31, 242, 253, 0.07);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.service-card .card-img-top {
    border-radius: var(--radius-md);
    transition: transform 0.5s ease;
}

.service-card:hover .card-img-top {
    transform: scale(1.04);
}

.service-card .card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-white);
}

.service-card .card-text {
    color: var(--text-gray) !important;
}

/* ============ LISTING GRID & CARDS ============ */
.listing-grid {
    --bs-gutter-x: 0.9rem;
    --bs-gutter-y: 1.25rem;
}
.listing-grid > [class*="col-"] {
    padding-top: 0;
    padding-bottom: 0;
}

.listing-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
}

.listing-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-medium);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.listing-card .listing-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.listing-card .listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.listing-card .card-body {
    padding: 14px 14px 12px;
}

.listing-card .listing-title {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.55em;
}

.listing-card .listing-subtitle {
    font-size: 0.78rem;
    color: var(--text-gray);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listing-card .listing-specs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid var(--border-glass);
    font-size: 0.72rem;
    color: var(--text-gray);
}

.listing-card .listing-specs span {
    white-space: nowrap;
}

.listing-card .listing-specs i {
    color: var(--accent-cyan);
    font-size: 0.65rem;
    margin-right: 4px;
}

.listing-price {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #0db6c8 100%);
    color: var(--primary-bg);
    padding: 6px 13px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.82rem;
    box-shadow: 0 4px 14px rgba(31, 242, 253, 0.35);
    z-index: 5;
}

.listing-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
    color: var(--primary-bg);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

.listing-sold {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff4444;
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(255, 68, 68, 0.4);
    z-index: 5;
}

@media (max-width: 575px) {
    .listing-grid {
        --bs-gutter-x: 0.6rem;
        --bs-gutter-y: 0.9rem;
    }
    .listing-card .card-body {
        padding: 10px 10px 8px;
    }
    .listing-card .listing-title {
        font-size: 0.82rem;
        min-height: 2.3em;
    }
    .listing-card .listing-subtitle {
        font-size: 0.7rem;
    }
    .listing-card .listing-specs {
        font-size: 0.65rem;
    }
    .listing-price {
        font-size: 0.72rem;
        padding: 5px 10px;
        bottom: 10px;
        left: 10px;
    }
    .listing-badge, .listing-sold {
        font-size: 0.62rem;
        padding: 4px 9px;
        top: 10px;
    }
    .listing-sold { right: 10px; }
}

.badge {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    letter-spacing: 0.3px;
}

.badge.bg-primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark)) !important;
    color: var(--primary-bg) !important;
}

.card-header {
    padding: 14px 18px;
    border-radius: var(--radius-md) !important;
    border: none !important;
}

.card-header.bg-primary {
    background: linear-gradient(135deg, rgba(31,242,253,0.25), rgba(31,242,253,0.08)) !important;
    border: 1px solid var(--accent-medium) !important;
}

.card-header.bg-primary h3, .card-header.bg-primary h4 {
    color: var(--accent-cyan);
}

/* ============ FORMS ============ */
.form-control, .form-select {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--accent-medium);
    color: var(--text-white) !important;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    transition: all 0.25s ease;
}

.form-control option {
    background: var(--primary-bg-light);
    color: var(--text-white);
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 0.2rem rgba(31, 242, 253, 0.15);
    color: var(--text-white) !important;
}

.form-control::placeholder {
    color: var(--text-muted-custom);
}

.form-label {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.9rem;
}

.input-group-text {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--accent-medium);
    color: var(--accent-cyan);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm) !important;
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-medium);
}

.form-check-input:checked {
    background-color: var(--accent-cyan);
    border-color: var(--accent-cyan);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(31, 242, 253, 0.15);
}

.alert {
    border-radius: var(--radius-md);
    border: none;
}

/* ============ SEARCH TABS ============ */
.search-tabs {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: blur(10px);
}

.nav-tabs .nav-link {
    background: transparent;
    border: 2px solid transparent;
    color: var(--text-gray);
    border-radius: 50px;
    margin: 0 6px;
    padding: 10px 22px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: var(--accent-cyan);
    border-color: var(--accent-medium);
}

.nav-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
    color: var(--primary-bg);
    border-color: transparent;
    font-weight: 700;
}

.tab-content {
    background: rgba(15, 19, 48, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
}

/* ============ FAQ ============ */
.faq-section {
    background: linear-gradient(160deg, var(--primary-bg) 0%, var(--primary-bg-light) 100%);
}

#faqCategories .nav-link {
    color: var(--text-gray);
    border: 1px solid var(--accent-medium);
    margin: 0 5px;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#faqCategories .nav-link.active,
#faqCategories .nav-link:hover {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
    color: var(--primary-bg);
    border-color: transparent;
}

.faq-item {
    border: 1px solid var(--border-glass) !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.accordion-button {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-white);
    border: none;
    padding: 1.3rem 1.5rem;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: rgba(31, 242, 253, 0.12);
    color: var(--accent-cyan);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    filter: invert(1) hue-rotate(160deg);
}

.accordion-body {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-gray);
    border-top: 1px solid var(--border-glass);
    padding: 1.4rem;
}

/* ============ FEATURE / TESTIMONIAL ============ */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin: 16px 0;
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-medium);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.6rem;
    color: var(--accent-cyan);
    margin-bottom: 18px;
}

.testimonials-section {
    background: linear-gradient(160deg, var(--primary-bg) 0%, var(--primary-bg-light) 100%);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass) !important;
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-medium) !important;
}

.testimonial-card-small {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid var(--border-glass) !important;
    border-radius: var(--radius-lg) !important;
    transition: all 0.3s ease;
}

.testimonial-card-small:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-medium) !important;
}

#testimonialTabs .nav-link {
    color: var(--text-gray);
    border: 1px solid var(--accent-medium);
    margin: 0 5px;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#testimonialTabs .nav-link.active,
#testimonialTabs .nav-link:hover {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-cyan-dark));
    color: var(--primary-bg);
    border-color: transparent;
}

/* ============ CONTACT ============ */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(31, 242, 253, 0.06), transparent);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.contact-info {
    background: rgba(31, 242, 253, 0.08);
    border: 1px solid var(--accent-medium);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin: 18px 0;
}

.contact-item i {
    color: var(--accent-cyan);
    font-size: 1.3rem;
    margin-right: 15px;
    margin-top: 3px;
    width: 24px;
}

.contact-item a {
    color: var(--accent-cyan);
}

/* ============ MODAL ============ */
.modal-theme {
    background: linear-gradient(160deg, var(--primary-bg-light), var(--primary-bg)) !important;
    color: var(--text-white);
    border: 1px solid var(--accent-medium);
    border-radius: var(--radius-lg) !important;
}

.modal-content {
    border-radius: var(--radius-lg);
}

/* ============ FOOTER ============ */
.footer {
    background: linear-gradient(180deg, var(--primary-bg-dark) 0%, #07091c 100%);
    padding: 60px 0 24px;
    border-top: 1px solid var(--accent-medium);
}

.footer-heading {
    color: var(--accent-cyan);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-link:hover {
    color: var(--accent-cyan);
    padding-left: 6px;
}

.footer p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-divider {
    border-color: var(--border-glass);
    opacity: 1;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    color: var(--text-white) !important;
    border: 1px solid var(--border-glass);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent-cyan);
    color: var(--primary-bg) !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px var(--shadow-cyan);
}

/* ============ FLOATING ELEMENTS ============ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25D366, #1eb45a);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1) rotate(8deg);
}

.whatsapp-icon {
    margin-top: 3px;
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    padding: 0 !important;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 999;
    font-size: 1rem;
}

/* ============ SHARE BOX ============ */
.share-container {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    box-shadow: none;
    padding: 22px;
}

.share-container h2 {
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 700;
}

/* ============ MISC ============ */
.text-muted {
    color: var(--text-gray) !important;
}

.page-heading {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--primary-bg-light) 100%);
    padding: 150px 0 60px;
    border-bottom: 1px solid var(--accent-medium);
    text-align: center;
}
.page-heading h1 {
    font-size: 2.4rem;
    font-weight: 800;
}
.page-heading p {
    max-width: 640px;
    margin: 0 auto;
}

.filter-card {
    background: var(--card-bg);
    border: 1px solid var(--accent-medium);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.filter-card-header {
    background: linear-gradient(90deg, var(--primary-bg) 0%, var(--primary-bg-light) 100%);
    padding: 16px 20px;
    border-bottom: 1px solid var(--accent-medium);
}
.filter-card-header h4 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
}
.filter-card-header i {
    color: var(--accent-cyan);
}
.filter-card-body {
    padding: 20px;
}

.no-image-placeholder {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--primary-bg-light) 100%);
    border: 1px dashed var(--accent-medium);
    border-radius: var(--radius-md);
    color: var(--text-gray);
}

.section-title-form {
    border-bottom: 2px solid var(--accent-cyan);
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin-top: 24px;
    color: #fff;
    font-weight: 700;
}
.required:after {
    content: " *";
    color: #ff4444;
}

.hero-bg-page {
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--primary-bg-light) 100%);
    padding: 150px 0 60px;
    border-bottom: 1px solid var(--accent-medium);
    text-align: center;
}

.carousel-control-prev, .carousel-control-next {
    width: 44px;
    height: 44px;
    background: rgba(15, 19, 48, 0.7);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev { left: 16px; }
.carousel-control-next { right: 16px; }

.carousel-control-prev:hover, .carousel-control-next:hover {
    background: var(--accent-cyan);
}

.img-thumbnail {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--accent-medium);
    border-radius: var(--radius-sm);
    padding: 4px;
}

.blog-content {
    color: var(--text-gray);
    line-height: 1.85;
    font-size: 1rem;
}
.blog-content h1, .blog-content h2, .blog-content h3, .blog-content h4 {
    color: #fff;
    font-family: 'Sora', sans-serif;
    margin-top: 28px;
    margin-bottom: 14px;
}
.blog-content img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 16px 0;
}
.blog-content a {
    color: var(--accent-cyan);
}
.blog-content ul, .blog-content ol {
    padding-left: 22px;
    margin-bottom: 16px;
}
.blog-content blockquote {
    border-left: 3px solid var(--accent-cyan);
    padding: 12px 18px;
    background: rgba(31, 242, 253, 0.06);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 16px 0;
    font-style: italic;
}

/* ============ IMAGE GALLERY MODAL ============ */
.gallery-modal .modal-body {
    display: flex;
    align-items: stretch;
    padding: 0;
}
.gallery-modal .carousel {
    width: 100%;
    height: 100%;
}
.gallery-modal .carousel-inner {
    height: 100%;
}
.gallery-modal .carousel-item.active {
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-modal .carousel-item img {
    display: block;
    max-height: calc(100vh - 40px);
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.gallery-modal .carousel-control-prev,
.gallery-modal .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}
.gallery-modal .carousel-control-prev:hover,
.gallery-modal .carousel-control-next:hover {
    background: var(--accent-cyan);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .navbar-collapse {
        background: var(--primary-bg-light);
        border: 1px solid var(--border-glass);
        border-radius: var(--radius-md);
        padding: 16px;
        margin-top: 10px;
        max-height: 70vh;
        overflow-y: auto;
    }
    .navbar-nav .nav-link {
        margin: 4px 0;
    }
    .btn-custom {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .slider-nav-btn {
        width: 40px;
        height: 40px;
    }
    .search-tabs {
        padding: 14px;
    }
    .contact-form, .contact-info {
        padding: 26px;
    }
}


/* Enhanced Slider Styles */
.carousel-inner {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #0F1330;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: none;
    transform: scale(0.95);
    will-change: transform, opacity;
}

.carousel-item.active {
    position: relative;
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.carousel-item.prev,
.carousel-item.next {
    position: absolute;
    opacity: 0.5;
    transform: scale(0.9);
    z-index: 1;
}

.carousel-item.slide-out-left {
    animation: slideOutLeft 0.6s ease-in-out forwards;
}

.carousel-item.slide-out-right {
    animation: slideOutRight 0.6s ease-in-out forwards;
}

.carousel-item.slide-in-left {
    animation: slideInLeft 0.6s ease-in-out forwards;
}

.carousel-item.slide-in-right {
    animation: slideInRight 0.6s ease-in-out forwards;
}

@keyframes slideOutLeft {
    0% { transform: translateX(0) scale(1); opacity: 1; }
    100% { transform: translateX(-100%) scale(0.8); opacity: 0; }
}

@keyframes slideOutRight {
    0% { transform: translateX(0) scale(1); opacity: 1; }
    100% { transform: translateX(100%) scale(0.8); opacity: 0; }
}

@keyframes slideInLeft {
    0% { transform: translateX(100%) scale(0.8); opacity: 0; }
    100% { transform: translateX(0) scale(1); opacity: 1; }
}

@keyframes slideInRight {
    0% { transform: translateX(-100%) scale(0.8); opacity: 0; }
    100% { transform: translateX(0) scale(1); opacity: 1; }
}

/* Navigation buttons */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active-dot {
    background: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Thumbnails */
.thumbnail-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
}

.thumbnail-container::-webkit-scrollbar {
    height: 4px;
}

.thumbnail-container::-webkit-scrollbar-thumb {
    background: #0F1330;
    border-radius: 4px;
}

.thumbnail-item {
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.thumbnail-item img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.thumbnail-item.active-thumb {
    border-color: #0F1330;
    box-shadow: 0 0 0 3px rgba(15, 19, 48, 0.3);
}

.thumbnail-item.active-thumb img {
    transform: scale(1.05);
}

/* Modal Gallery */
.gallery-modal .modal-dialog {
    margin: 0;
}

.gallery-modal .modal-content {
    background: rgba(0, 0, 0, 0.95);
    border: none;
    border-radius: 0;
}

.gallery-modal .modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0;
}

.gallery-modal .modal-carousel-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    transition: all 0.4s ease;
    width: 90%;
    max-height: 90vh;
}

.gallery-modal .modal-carousel-item img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.gallery-modal .modal-carousel-item.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    z-index: 1;
}

.gallery-modal .modal-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal .modal-carousel-control:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.gallery-modal .modal-carousel-control.prev {
    left: 30px;
}

.gallery-modal .modal-carousel-control.next {
    right: 30px;
}

/* Image counter */
.slider-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 5;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .thumbnail-item img {
        width: 80px;
        height: 60px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .gallery-modal .modal-carousel-control {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}