/* css/style.css - Nihans Creative Style Sheet */

/* ===== TYPOGRAPHY & CORE CONFIGS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --midnight: #0E1525;
    --royal-blue: #2248B7;
    --cyan: #1E9DB5;
    --purple: #7A53C5;
    --white: #FFFFFF;
    
    /* Official Gradient */
    --brand-gradient: linear-gradient(135deg, #2248B7 0%, #1E9DB5 50%, #7A53C5 100%);
    --brand-gradient-light: linear-gradient(135deg, rgba(34, 72, 183, 0.1) 0%, rgba(30, 157, 181, 0.1) 50%, rgba(122, 83, 197, 0.1) 100%);
    --text-primary: #0E1525;
    --text-muted: rgba(14, 21, 37, 0.65);
    
    /* Glassmorphism Styles for Light Theme */
    --glass-bg: rgba(14, 21, 37, 0.03);
    --glass-bg-hover: rgba(14, 21, 37, 0.06);
    --glass-border: rgba(14, 21, 37, 0.1);
    --glass-border-focus: rgba(30, 157, 181, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(14, 21, 37, 0.08);
    --radius-lg: 20px;
    --radius-md: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--text-primary);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

p {
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
}

/* ===== GLOWING BLUR DECORATIONS ===== */
.glowing-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    animation: drift 20s infinite ease-in-out alternate;
}

.glowing-blue {
    background-color: var(--royal-blue);
    top: 10%;
    left: -150px;
}

.glowing-purple {
    background-color: var(--purple);
    bottom: 20%;
    right: -150px;
    animation-delay: -5s;
}

.glowing-cyan {
    background-color: var(--cyan);
    top: 50%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.2); }
}

/* ===== REUSABLE COMPONENT STYLES ===== */
.section-padding {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 50px;
}

/* Text Gradient */
.text-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--glass-shadow);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(34, 72, 183, 0.04);
    border-color: rgba(34, 72, 183, 0.25);
    box-shadow: 0 16px 48px 0 rgba(34, 72, 183, 0.12), 0 2px 8px rgba(30, 157, 181, 0.08);
}

/* Premium Buttons */
.btn-premium {
    background: var(--brand-gradient);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 15px rgba(34, 72, 183, 0.35);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(34, 72, 183, 0.4), 0 4px 12px rgba(122, 83, 197, 0.2);
    color: var(--white);
    opacity: 0.95;
}

.btn-glass {
    background: transparent;
    color: var(--midnight);
    border: 1.5px solid rgba(34, 72, 183, 0.3);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 28px;
    border-radius: 50px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-glass:hover {
    background: linear-gradient(135deg, rgba(34,72,183,0.08) 0%, rgba(30,157,181,0.08) 50%, rgba(122,83,197,0.08) 100%);
    border-color: var(--royal-blue);
    color: var(--royal-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(34, 72, 183, 0.12);
}

/* ===== NAVIGATION NAVBAR ===== */
.navbar-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(34, 72, 183, 0.12);
    padding: 18px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(14, 21, 37, 0.06);
}

.navbar-glass.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(14, 21, 37, 0.1);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    color: var(--midnight) !important;
}

.navbar-brand span {
    font-weight: 400;
    color: var(--midnight) !important;
}

.navbar-brand strong {
    color: var(--royal-blue) !important;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(14, 21, 37, 0.7) !important;
    padding: 6px 16px !important;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--royal-blue) !important;
}

.navbar-toggler {
    border: 1px solid rgba(14, 21, 37, 0.15);
    padding: 8px;
}

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

.navbar-toggler-icon {
    filter: invert(0);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.hero-visual {
    position: relative;
}

.hero-glass-container {
    border-radius: var(--radius-lg);
    background: transparent;
    border: none;
    padding: 0;
    position: relative;
    overflow: visible;
}

.hero-rocket-wrapper {
    animation: bounce 6s infinite ease-in-out;
}

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

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 72, 183, 0.15);
    border-radius: var(--radius-md);
    padding: 15px 25px;
    box-shadow: 0 10px 30px rgba(34, 72, 183, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.fc-1 {
    top: 15%;
    left: -30px;
    animation: float1 8s infinite ease-in-out;
}

.fc-2 {
    bottom: 20%;
    right: -20px;
    animation: float2 9s infinite ease-in-out;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -15px); }
}
@keyframes float2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, 15px); }
}

.hero-stats-row {
    margin-top: 60px;
}

.hero-stat-card {
    border-right: 1px solid var(--glass-border);
}

.hero-stat-card:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* ===== ABOUT PREVIEW / TABS ===== */
.about-tab-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    background: transparent;
    color: var(--text-muted);
    border: none;
    border-bottom: 2px solid transparent;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.about-tab-btn.active {
    color: var(--royal-blue);
    border-bottom-color: var(--royal-blue);
}

/* ===== SERVICES SECTION ===== */
.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--brand-gradient-light);
    border: 1px solid rgba(30, 157, 181, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--cyan);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

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

/* ===== WHY CHOOSE US ===== */
.choose-box {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.choose-box:hover {
    background: rgba(34, 72, 183, 0.04);
    border-color: rgba(34, 72, 183, 0.15);
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(34, 72, 183, 0.08);
}

.choose-num {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Montserrat', sans-serif;
    flex-shrink: 0;
}

/* ===== PORTFOLIO GRID ===== */
.portfolio-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    background: rgba(255,255,255,0.9);
    color: rgba(14,21,37,0.7);
    border: 1.5px solid rgba(34,72,183,0.15);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(34,72,183,0.05);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--brand-gradient);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(34,72,183,0.25);
    transform: translateY(-2px);
}

.portfolio-item-wrap {
    transition: all 0.4s ease;
}

.portfolio-img-box {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--glass-border);
}

.portfolio-img-box img {
    width: 100%;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34,72,183,0.82) 0%, rgba(30,157,181,0.82) 50%, rgba(122,83,197,0.82) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: white;
}

.portfolio-overlay h5,
.portfolio-overlay p {
    color: white !important;
}

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

.portfolio-img-box:hover .portfolio-overlay {
    opacity: 1;
}

.results-badge {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

/* ===== TESTIMONIALS SLIDER ===== */
.testimonial-swiper-card {
    min-height: 280px;
}

.stars-rating {
    color: var(--cyan);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.testimonial-author-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--brand-gradient);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
}

/* ===== CALL TO ACTION BAR ===== */
.cta-banner {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--brand-gradient-light);
    border: 1px solid var(--glass-border);
    padding: 80px 40px;
    text-align: center;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 72, 183, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 20px;
}

/* ===== FOOTER BAR ===== */
.footer-bar {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f4f8 50%, #f0eeff 100%);
    border-top: 1px solid rgba(34, 72, 183, 0.15);
    padding-top: 80px;
    padding-bottom: 30px;
    position: relative;
    z-index: 1;
}

.footer-bar h5 {
    color: var(--midnight);
    margin-bottom: 25px;
    font-weight: 700;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: rgba(14, 21, 37, 0.65);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--royal-blue);
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.f-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(34, 72, 183, 0.2);
    color: var(--royal-blue);
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.f-social-btn:hover {
    background: var(--brand-gradient);
    border-color: transparent;
    transform: translateY(-3px);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(34, 72, 183, 0.12);
    padding-top: 30px;
    margin-top: 60px;
}

/* Form Styling (Light Theme) */
.glass-form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(34, 72, 183, 0.2);
    color: var(--midnight);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.glass-form-control:focus {
    background: rgba(255, 255, 255, 1);
    border-color: var(--royal-blue);
    box-shadow: 0 0 10px rgba(34, 72, 183, 0.15);
    color: var(--midnight);
    outline: none;
}

.glass-form-control::placeholder {
    color: rgba(14, 21, 37, 0.4);
}

.glass-form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230E1525' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(34, 72, 183, 0.2);
    color: var(--midnight);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.glass-form-select:focus {
    background-color: rgba(255, 255, 255, 1);
    border-color: var(--royal-blue);
    box-shadow: 0 0 10px rgba(34, 72, 183, 0.15);
    color: var(--midnight);
}

.glass-form-select option {
    background: var(--white);
    color: var(--midnight);
}

/* ===== TIMELINE PROCESS (ABOUT US) ===== */
.timeline-track {
    position: relative;
    padding-left: 30px;
    border-left: 2px dashed var(--glass-border);
}

.timeline-step {
    position: relative;
    padding-bottom: 50px;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -42px;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--brand-gradient);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 3px rgba(34, 72, 183, 0.2);
}

.timeline-step:nth-child(even) .timeline-dot {
    background: var(--purple);
}

.timeline-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--cyan);
    margin-bottom: 5px;
}

.timeline-step:nth-child(even) .timeline-number {
    color: var(--purple);
}

/* ===== PRICING TABLES ===== */
.pricing-card {
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--cyan);
    box-shadow: 0 8px 32px 0 rgba(30, 157, 181, 0.2);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--brand-gradient);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 30px;
    transform: rotate(45deg);
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-list li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-list i {
    color: var(--cyan);
    font-size: 0.85rem;
}

/* ===== ACCORDION FAQ ===== */
.faq-accordion .accordion-item {
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(34,72,183,0.12) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    box-shadow: 0 8px 24px rgba(34, 72, 183, 0.1);
}

.faq-accordion .accordion-button {
    background: transparent;
    color: var(--midnight);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--royal-blue);
    background: rgba(34, 72, 183, 0.04);
}

.faq-accordion .accordion-button::after {
    filter: invert(0);
}

.faq-accordion .accordion-body {
    background: transparent;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 20px 25px;
    border-top: 1px solid rgba(34,72,183,0.08);
}

/* ===== CASE STUDY DETAIL CARDS ===== */
.cs-metric-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.cs-metric-box:hover {
    border-color: rgba(34, 72, 183, 0.3);
    background: rgba(34, 72, 183, 0.04);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(34, 72, 183, 0.1);
}

.cs-metric-num {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ba-card {
    height: 100%;
}

.ba-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.ba-content {
    background: rgba(34, 72, 183, 0.03);
    border: 1px dashed rgba(34, 72, 183, 0.2);
    border-radius: var(--radius-md);
    padding: 25px;
    font-size: 0.95rem;
}

.ba-content.before {
    border-left: 4px solid var(--purple);
}

.ba-content.after {
    border-left: 4px solid var(--cyan);
}

/* ===== BLOG SECTION ===== */
.blog-badge {
    background: var(--brand-gradient-light);
    border: 1px solid var(--glass-border);
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
}

.blog-meta {
    font-size: 0.8rem;
    color: rgba(14, 21, 37, 0.45);
    margin-bottom: 12px;
}

.blog-meta span {
    margin-right: 12px;
}

/* ===== VIDEO TESTIMONIAL PLACEHOLDER ===== */
.video-placeholder {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    transition: transform 0.5s ease;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--brand-gradient);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    color: var(--white);
    box-shadow: 0 0 25px rgba(30, 157, 181, 0.6);
    transition: all 0.3s ease;
}

.video-placeholder:hover img {
    transform: scale(1.05);
}

.video-placeholder:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 35px rgba(30, 157, 181, 0.8);
}

/* Client Brand Slider Layout */
.brand-logo-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.brand-logo-item {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--midnight);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.brand-logo-item:hover {
    color: var(--royal-blue);
}

/* ===== BREADCRUMB HEADER ===== */
.page-header {
    background: linear-gradient(180deg, rgba(30, 157, 181, 0.08) 0%, var(--white) 100%);
    padding-top: 160px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}

.breadcrumb-nav {
    display: flex;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb-nav a {
    color: var(--cyan);
    text-decoration: none;
}

/* Map responsive box */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    line-height: 0;
}

/* Alert styles overlay */
.form-alert {
    display: none;
    border-radius: var(--radius-md);
    padding: 15px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.form-alert.success {
    display: block;
    background: rgba(30, 157, 181, 0.15);
    border: 1px solid var(--cyan);
    color: var(--cyan);
}

.form-alert.error {
    display: block;
    background: rgba(122, 83, 197, 0.15);
    border: 1px solid var(--purple);
    color: var(--purple);
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .hero-stat-card {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .hero-stat-card:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .btn-premium, .btn-glass {
        width: 100%;
        justify-content: center;
    }
}
