:root {
    --primary: #0f172a;       /* Deep slate/navy */
    --primary-light: #fff1f2; 
    --accent: #e11d48;        /* Rose/Red */
    --accent-hover: #be123c;
    --accent-gradient: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --bg-light: #fffafb;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    padding-top: 100px; /* Base padding for mobile */
}

@media (min-width: 992px) {
    body {
        padding-top: 130px; /* Taller padding for desktop with top bar */
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text-dark);
}

/* Ensure text is visible on dark/primary backgrounds */
.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6,
.bg-primary .text-white {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.bg-primary p,
.bg-primary .lead {
    color: #ffffff !important;
    opacity: 1 !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* CTA section radial overlay — remove visibility-blocking spotlight */
.bg-primary .position-absolute[style*="radial-gradient"] {
    display: none !important;
}

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

.bg-primary {
    background-color: var(--primary) !important;
}

/* Glassmorphism */
.glass-nav {
    background: var(--glass) !important;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Top Bar */
.top-bar {
    background-color: #020617; 
    padding: 10px 0;
    font-size: 0.8rem;
    z-index: 1040;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    color: white;
}

.top-bar i {
    font-size: 0.9rem;
}

/* Buttons */

.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(225, 29, 72, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.45);
    background: var(--accent-gradient);
    filter: brightness(1.1);
}

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

.btn-outline-primary:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}
button:focus, button:active,
a.btn:focus, a.btn:active {
    outline: none;    
    box-shadow: none;   
}
/* Cards */
.service-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-img-wrapper {
    margin: -40px -40px 30px -40px;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card-img {
    transform: scale(1.1) rotate(1deg);
}

.service-icon-box {
    width: 56px;
    height: 56px;
    background-color: var(--primary-light);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--accent);
    color: white;
}

/* Utilities */
.transition-all { transition: var(--transition); }

.hover-lift:hover {
    transform: translateY(-4px);
}

.section-padding { padding: 120px 0; }

/* Our Clients — reference layout */
.clients-header {
    text-align: left;
    max-width: 720px;
}

.clients-eyebrow {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c9941a;
}

.clients-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--primary);
}

.clients-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 clamp(0.75rem, 3vw, 2rem) 3.5rem;
    max-width: 100%;
}

.clients-scroll {
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(15, 23, 42, 0.25) transparent;
    cursor: grab;
    scroll-snap-type: x proximity;
}

.clients-scroll::-webkit-scrollbar {
    height: 6px;
}

.clients-scroll::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.2);
    border-radius: 3px;
}

.clients-scroll.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    user-select: none;
}

.clients-scroll-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 1.25rem;
    width: max-content;
    padding: 0 0.25rem;
}

.clients-scroll-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 0;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.clients-scroll-btn:hover:not(:disabled) {
    background: #1e293b;
    color: #fff;
}

.clients-scroll-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.clients-scroll-btn i {
    font-size: 1.35rem;
    line-height: 1;
}

.client-card {
    flex: 0 0 220px;
    width: 220px;
    min-height: 300px;
    background: #e8eaec;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.client-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.client-card-logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.25rem 1rem;
}

.client-card-logo img {
    max-width: 100%;
    max-height: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.client-card-footer {
    padding: 0 1.25rem 1.25rem;
}

.client-card-line {
    border: none;
    border-top: 1px solid var(--primary);
    margin: 0 0 0.65rem;
    opacity: 0.9;
}

.client-card-name {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    line-height: 1.35;
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(180deg, #f8f9fb 0%, var(--bg-light) 100%);
}

.testimonials-header {
    text-align: left;
    max-width: 640px;
}

.testimonials-eyebrow {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #c9941a;
}

.testimonials-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--primary);
}

.testimonials-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 520px;
}

.testimonial-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-left: 4px solid #c9941a;
    padding: 2rem 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
    border-color: rgba(15, 23, 42, 0.12);
    border-left-color: var(--primary);
}

.testimonial-quote-mark {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.07;
    pointer-events: none;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    color: #eab308;
    font-size: 0.95rem;
}

.testimonial-score {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--primary);
    background: rgba(15, 23, 42, 0.06);
    padding: 0.25rem 0.55rem;
}

.testimonial-text {
    flex: 1;
    margin: 0 0 1.5rem;
    padding: 0;
    border: none;
}

.testimonial-text p {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.75;
    color: #334155;
}

.testimonial-text p::before {
    content: '\201C';
    color: #c9941a;
    font-weight: 700;
    margin-right: 0.1em;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.testimonial-avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.testimonial-name {
    display: block;
    font-style: normal;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.15rem;
}

.testimonial-role {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem 1.35rem 1.35rem;
    }

    .testimonial-text p {
        font-size: 1rem;
    }
}

/* CTA Section */
.cta-section {
    background: #0b1120;
    color: #fff;
}

.cta-section-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 40%, rgba(225, 29, 72, 0.12), transparent 35%),
        radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.04), transparent 30%);
    pointer-events: none;
}

.cta-heading {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #fff;
}

.cta-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    .cta-lead {
        margin-left: 0;
        margin-right: 0;
    }
}

.cta-btn-primary {
    background: var(--accent-gradient);
    color: #fff !important;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(225, 29, 72, 0.45);
    transition: var(--transition);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(225, 29, 72, 0.5);
    color: #fff !important;
}

.cta-btn-outline {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    transition: var(--transition);
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff !important;
    transform: translateY(-2px);
}

.cta-form-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 2rem 1.75rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    color: var(--text-dark);
}

.cta-form-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
    color: #d11a3d;
    margin-bottom: 1.75rem;
}

.cta-form-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 0.45rem;
}

.cta-form-control {
    display: block;
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
    background: #f1f5f9;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.cta-form-control:focus {
    outline: none;
    background: #fff;
    border-color: rgba(225, 29, 72, 0.45);
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12);
}

.cta-form-control::placeholder {
    color: #94a3b8;
}

.cta-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.cta-form-control.is-invalid {
    border-color: #dc3545;
    background: #fff5f5;
}

.cta-form-submit {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .cta-form-card {
        padding: 1.5rem 1.25rem 1.25rem;
    }

    .cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .client-card {
        flex: 0 0 180px;
        width: 180px;
        min-height: 260px;
    }

    .client-card-logo img {
        max-height: 100px;
    }

    .clients-scroll-btn {
        width: 40px;
        height: 40px;
    }

    .clients-slider-wrap {
        gap: 0.5rem;
        padding-bottom: 2.5rem;
    }
}

.ls-tight { letter-spacing: -0.025em; }
.tracking-widest { letter-spacing: 0.2em; }
.max-w-700 { max-width: 700px; }
.bg-primary-light { background-color: var(--primary-light) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }

.grayscale { filter: grayscale(100%); transition: var(--transition); }
.hover-grayscale-0:hover { filter: grayscale(0%); }

/* Advanced Attraction Effects */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
    transition: transform 0.1s ease-out, opacity 0.3s ease;
    mix-blend-mode: multiply;
}

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

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.hover-zoom {
    overflow: hidden;
}

.hover-zoom img {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Responsiveness Overhaul */
@media (max-width: 1200px) {
    .display-3 { font-size: 3.5rem; }
    .display-5 { font-size: 2.75rem; }
}

@media (max-width: 991px) {
    .section-padding { padding: 80px 0; }
    .display-3 { font-size: 3rem; }
    .display-4 { font-size: 2.5rem; }
    .hero-wrapper { text-align: center; padding-bottom: 60px; }
    .hero-wrapper .d-flex { justify-content: center; }
    .pe-lg-5 { padding-right: 0 !important; }
    .ps-lg-5 { padding-left: 0 !important; }
    
    /* Hide decorative circles that might overlap */
    .rounded-circle { display: none !important; }
    
    .glass-nav {
        background: white !important;
    }
    
    .navbar-collapse {
        background: white;
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .display-3 { font-size: 2.5rem; }
    .display-5 { font-size: 2rem; }
    .lead { font-size: 1.1rem; }
    
    .service-card { padding: 30px; }
    .bg-white.p-5.rounded-4.shadow-md { padding: 30px !important; } /* Fix for Why Choose Us cards */
    
    .client-card {
        flex: 0 0 160px;
        width: 160px;
        min-height: 240px;
    }
}

@media (max-width: 576px) {
    .display-3 { font-size: 2.25rem; }
    .btn { width: 100%; margin-bottom: 1rem !important; }
    .d-flex.gap-4 { flex-direction: column; gap: 0 !important; }
    
    .hero-wrapper { padding-top: 100px !important; padding-bottom: 60px; }
    .animate-float { animation: none !important; }
}

/* Ensure WhatsApp button is always on top */
.whatsapp-float {
    z-index: 9999 !important;
}

/* Reveal Animations Enhancements */
.reveal-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar Scroll Effect */
.navbar {
    transition: var(--transition);
}

.navbar.scrolled {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    box-shadow: var(--shadow-md);
}

/* Hero Section Enhancement */
.hero-wrapper {
    background: radial-gradient(circle at top right, rgba(225, 29, 72, 0.03), transparent),
                radial-gradient(circle at bottom left, rgba(15, 23, 42, 0.02), transparent);
    background-color: var(--bg-light);
}

/* Form Enhancement */
.form-control, .form-select {
    border: 1px solid #e2e8f0;
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    background-color: #fff;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
    transform: translateY(-1px);
}

/* Custom Animated Hamburger */
.hamburger-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--text-dark);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--accent);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--accent);
}

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

/* Hero Slider Styles */
.hero-slider-section {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero-slider-section .carousel-item {
    height: 90vh;
    min-height: 600px;
    background-color: var(--primary);
}

.hero-slider-section .carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 10s ease;
}

.hero-slider-section .carousel-item.active .carousel-image {
    transform: scale(1.1);
}

.hero-slider-section .carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.hero-slider-section .carousel-caption-custom {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
    text-align: left;
}

.hero-slider-section .caption-content {
    max-width: 700px;
    padding-left: 10%;
}

.hero-slider-section .caption-content h1 {
    color: white;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.hero-slider-section .caption-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.hero-slider-section .caption-content .btn-group {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
}

.hero-slider-section .carousel-item.active .caption-content h1,
.hero-slider-section .carousel-item.active .caption-content p,
.hero-slider-section .carousel-item.active .caption-content .btn-group {
    opacity: 1;
    transform: translateY(0);
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
    z-index: 3;
}

.carousel-control-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-control-prev:hover .carousel-control-icon-box,
.carousel-control-next:hover .carousel-control-icon-box {
    background: var(--accent);
    transform: scale(1.1);
}

.carousel-indicators {
    margin-bottom: 3rem;
    z-index: 3;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: white;
    opacity: 0.3;
    transition: var(--transition);
}

.carousel-indicators .active {
    opacity: 1;
    background-color: var(--accent);
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .hero-slider-section .carousel-item {
        height: 70vh;
    }
    .hero-slider-section .caption-content {
        max-width: 100%;
        padding: 0 2rem;
        text-align: center;
    }
    .hero-slider-section .caption-content h1 {
        font-size: 3rem;
    }
    .hero-slider-section .carousel-overlay {
        background: rgba(15, 23, 42, 0.6);
    }
}

@media (max-width: 576px) {
    .hero-slider-section .carousel-item {
        height: 60vh;
    }
    .hero-slider-section .caption-content h1 {
        font-size: 2.25rem;
    }
    .carousel-indicators {
        margin-bottom: 1.5rem;
    }
    .carousel-control-prev, .carousel-control-next {
        display: none;
    }
}

/* Logo Utilities */
.brightness-0 {
    filter: brightness(0);
}

.invert {
    filter: invert(1);
}

.navbar-brand img {
    transition: var(--transition);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Footer Logo — make visible on dark background */
footer .navbar-brand img {
    filter: brightness(0) invert(1);
    drop-shadow(0 2px 6px rgba(255,255,255,0.15));
    transition: var(--transition);
    opacity: 1;
}

footer .navbar-brand:hover img {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 4px 10px rgba(255,255,255,0.3));
}
