/**
 * Kuzey Özel Güvenlik - Premium Corporate Design System
 * Modern, Professional, Trustworthy
 */

/* ============================================
   CSS Variables (Design System)
   ============================================ */
:root {
    /* Brand Colors */
    --color-primary: #0B1F3A;
    --color-primary-dark: #061425;
    --color-primary-light: #152d4a;
    --color-accent: #D4AF37;
    --color-accent-hover: #B8922E;
    --color-accent-light: rgba(212, 175, 55, 0.15);

    /* Neutral Colors */
    --color-bg-neutral: #F5F7FA;
    --color-bg-white: #FFFFFF;
    --color-bg-dark: #0a0f1a;

    /* Text Colors */
    --color-text-main: #0F172A;
    --color-text-muted: #475569;
    --color-text-light: #64748B;
    --color-border: #E2E8F0;

    /* Status Colors */
    --color-success: #16A34A;
    --color-danger: #DC2626;
    --color-warning: #F59E0B;
    --color-info: #0284C7;

    /* Typography */
    --font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    --font-size-base: 1rem;
    --line-height-base: 1.7;

    /* Spacing (8px grid) */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    --spacing-section: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.625rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-button: 0.625rem;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(11, 31, 58, 0.04);
    --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.06);
    --shadow-md: 0 4px 16px rgba(11, 31, 58, 0.08);
    --shadow-lg: 0 8px 32px rgba(11, 31, 58, 0.12);
    --shadow-xl: 0 16px 48px rgba(11, 31, 58, 0.16);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.25);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Container */
    --container-max-width: 1200px;
}

/* ============================================
   Base Styles
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text-main);
    background-color: var(--color-bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-text-main);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-muted);
}

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

a:hover {
    color: var(--color-accent);
}

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

/* Utility Classes */
.text-primary {
    color: var(--color-primary) !important;
}

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

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

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

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

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

/* ============================================
   Buttons - Premium Design
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-button);
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

/* Primary Button - Gold */
.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, #c9a430 100%);
    color: var(--color-primary);
    box-shadow: var(--shadow-md), 0 2px 8px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-accent-hover) 0%, #a88a28 100%);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 4px 16px rgba(212, 175, 55, 0.4);
}

/* Secondary Button - Outline Gold */
.btn-secondary {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--color-accent-light);
    color: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

/* Dark Button */
.btn-dark {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.btn-dark:hover {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: #fff;
    transform: translateY(-2px);
}

/* Outline Primary */
.btn-outline-primary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline-primary:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ============================================
   Topbar - Premium Design
   ============================================ */
.topbar {
    background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    font-size: 0.875rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8125rem;
    transition: color var(--transition-fast);
}

.topbar-item:hover {
    color: var(--color-accent);
}

.topbar-item i {
    color: var(--color-accent);
    font-size: 0.875rem;
}

.topbar-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
}

/* ============================================
   Navbar - Premium Sticky Design
   ============================================ */
.navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    transition: all var(--transition-smooth);
}

.navbar-wrapper.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 0.875rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand .brand-text {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.navbar-brand .brand-text span {
    color: var(--color-accent);
}

.navbar-brand img {
    height: 44px;
    width: auto;
}

.navbar-nav {
    gap: 0.25rem;
}

.navbar-nav .nav-link {
    color: var(--color-text-main);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: all var(--transition-smooth);
    transform: translateX(-50%);
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-cta {
    margin-left: 1rem;
}

/* ============================================
   Hero Section - Premium Full Screen
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(11, 31, 58, 0.75) 0%,
            rgba(11, 31, 58, 0.60) 50%,
            rgba(11, 31, 58, 0.70) 100%);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    z-index: 2;
}

.hero-gradient-bg {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a3a5a 50%, var(--color-primary-dark) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 6rem 0 12rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-title .highlight {
    color: var(--color-accent);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.trust-badge-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    color: var(--color-accent);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.trust-badge-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9375rem;
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(11, 31, 58, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 4;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: background var(--transition-fast);
}

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

.stat-item:hover {
    background: rgba(212, 175, 55, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ============================================
   Section Styles
   ============================================ */
.section {
    padding: var(--spacing-section) 0;
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--color-accent);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title.text-white {
    color: #fff !important;
}

.section-desc {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* ============================================
   Cards - Premium Design
   ============================================ */
.premium-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.premium-card .card-media {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-bg-neutral) 0%, #e8ecf1 100%);
}

.premium-card .card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

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

.premium-card .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    background: linear-gradient(135deg, var(--color-bg-neutral) 0%, #e8ecf1 100%);
}

.premium-card .card-icon i {
    font-size: 4rem;
    color: var(--color-accent);
    transition: transform var(--transition-smooth);
}

.premium-card:hover .card-icon i {
    transform: scale(1.1);
}

.premium-card .card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.premium-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    transition: color var(--transition-fast);
}

.premium-card:hover .card-title {
    color: var(--color-accent);
}

.premium-card .card-text {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.25rem;
}

.premium-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-top: auto;
    transition: all var(--transition-fast);
}

.premium-card .card-link:hover {
    color: var(--color-accent);
    gap: 0.75rem;
}

/* Service Card Specific */
.service-card .card-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 31, 58, 0.9);
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50%;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    background: var(--color-bg-white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: var(--color-bg-neutral);
    transform: rotate(-12deg);
    z-index: 0;
}

.about-image-wrapper {
    position: relative;
    z-index: 1;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #c9a430 100%);
    color: var(--color-primary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.about-experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.875rem;
    font-weight: 600;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all var(--transition-smooth);
}

.about-feature:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-light);
    border-radius: var(--radius-md);
    color: var(--color-accent);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-feature-text {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9375rem;
}

/* ============================================
   Blog & Announcements
   ============================================ */
.blog-card .card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

.blog-card .card-meta i {
    color: var(--color-accent);
}

.announcement-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    height: 100%;
}

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

.announcement-card.pinned {
    border-left: 4px solid var(--color-warning);
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.05) 0%, transparent 100%);
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--color-warning);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background: linear-gradient(180deg, var(--color-bg-white) 0%, var(--color-bg-neutral) 100%);
}

.contact-info-card {
    background: var(--color-primary);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    color: #fff;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 1;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-md);
    color: var(--color-accent);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-text h6 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info-text p,
.contact-info-text a {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.contact-info-text a:hover {
    color: var(--color-accent);
}

.contact-form-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.form-control,
.form-select {
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-label {
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

/* Map */
.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 1.5rem;
}

.map-wrapper iframe {
    border: none;
    display: block;
}

/* ============================================
   Footer - Premium Dark Design
   ============================================ */
.footer {
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-bg-dark) 100%);
    padding: 5rem 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand .brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.footer-brand .brand-text span {
    color: var(--color-accent);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-title {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-accent);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 0.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.footer-contact-item i {
    color: var(--color-accent);
    margin-top: 0.25rem;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 4rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================
   Floating Buttons
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all var(--transition-smooth);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.mobile-call-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, #c9a430 100%);
    color: var(--color-primary);
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mobile-call-btn:hover {
    background: linear-gradient(135deg, var(--color-accent-hover) 0%, #a88a28 100%);
    color: var(--color-primary);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

/* ============================================
   Page Header (Inner Pages)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

.page-header h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a:hover {
    color: var(--color-accent);
}

.breadcrumb-item.active {
    color: var(--color-accent);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1199px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding-bottom: 0;
    }

    .hero-content {
        padding: 4rem 0 8rem;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust-badges {
        justify-content: center;
    }

    .about-section::before {
        display: none;
    }

    .about-image-wrapper {
        margin-bottom: 3rem;
    }

    .about-experience-badge {
        right: 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .navbar-collapse {
        background: var(--color-bg-white);
        padding: 1rem;
        border-radius: var(--radius-md);
        margin-top: 1rem;
        box-shadow: var(--shadow-lg);
    }

    .navbar-cta {
        margin: 1rem 0 0;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 4rem 0;
    }

    .topbar-left {
        justify-content: center;
        width: 100%;
    }

    .topbar-divider {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.3rem;
        padding: 0.75rem 0.35rem;
    }

    .stat-item {
        border-right: none;
        border-bottom: none;
        padding: 0.5rem 0.2rem;
        background: rgba(255, 255, 255, 0.015);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 4px;
    }

    .stat-number {
        font-size: 1.15rem;
        margin-bottom: 0.15rem;
        font-weight: 700;
    }

    .stat-label {
        font-size: 0.6rem;
        line-height: 1.1;
        opacity: 0.85;
        white-space: normal;
        padding: 0 0.15rem;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-number {
        font-size: 2rem;
    }

    .contact-info-card {
        margin-bottom: 2rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 16px;
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }

    .footer {
        padding: 3rem 0 0;
    }

    .footer-bottom {
        margin-top: 2rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-trust-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem;
        padding-bottom: 0.5rem;
        padding-top: 1.5rem;
    }

    .trust-badge {
        flex-shrink: 0;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0.4rem 0.5rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-sm);
        backdrop-filter: blur(10px);
    }

    .trust-badge-icon {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        flex-shrink: 0;
        display: flex !important;
        background: rgba(212, 175, 55, 0.2);
        border: 1px solid rgba(212, 175, 55, 0.4);
    }

    .trust-badge-text {
        font-size: 0.65rem;
        font-weight: 500;
        line-height: 1.2;
    }

    .premium-card .card-body {
        padding: 1.25rem;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {

    .topbar,
    .navbar-wrapper,
    .whatsapp-float,
    .mobile-call-btn,
    .hero-stats,
    .footer {
        display: none !important;
    }

    .hero-section {
        min-height: auto;
        padding: 2rem 0;
        background: #fff !important;
    }

    .hero-title,
    .hero-subtitle {
        color: #000 !important;
    }
}

/* ============================================
   Location Pages
   ============================================ */

/* Page Hero (for all inner pages) */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a3a5a 100%);
    padding: 8rem 0 4rem;
    color: #fff;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Location Hero */
.location-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a3a5a 100%);
    overflow: hidden;
}

.location-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.location-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.9) 0%, rgba(11, 31, 58, 0.7) 100%);
}

.location-hero-content {
    position: relative;
    z-index: 3;
    padding: 8rem 0 4rem;
    color: #fff;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.location-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #ffffff;
}

.location-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: 2rem;
}

.location-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.location-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

.highlight-item i {
    color: var(--color-accent);
}

/* Breadcrumb Light */
.breadcrumb-light {
    margin-bottom: 0;
    padding: 0;
    background: transparent;
}

.breadcrumb-light .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-light .breadcrumb-item a:hover {
    color: var(--color-accent);
}

.breadcrumb-light .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-light .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* Location Content */
.location-content {
    color: var(--color-text-body);
    line-height: 1.8;
}

.location-content h2 {
    color: var(--color-primary);
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.location-content h3 {
    color: var(--color-primary);
    font-size: 1.375rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.location-content h2:first-child,
.location-content h3:first-child {
    margin-top: 0;
}

.location-content ul {
    margin: 1rem 0;
    padding-left: 0;
    list-style: none;
}

.location-content ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

.location-content ul li::before {
    content: '\F272';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
}

/* Service Link Cards */
.service-link-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: all var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-link-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.service-link-card .service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a3a5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.service-link-card .service-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.service-link-card .service-info span {
    font-size: 0.8125rem;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Location FAQ Accordion */
.location-faq .accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.location-faq .accordion-button {
    font-weight: 600;
    color: var(--color-primary);
    background: #fff;
    padding: 1.25rem;
}

.location-faq .accordion-button:not(.collapsed) {
    background: var(--color-bg-neutral);
    color: var(--color-primary);
    box-shadow: none;
}

.location-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230B1F3A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.location-faq .accordion-body {
    padding: 1.25rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Sidebar Cards */
.sidebar-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-accent);
}

.contact-sidebar-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a3a5a 100%);
    color: #fff;
}

.contact-sidebar-card h3 {
    color: #fff;
    border-color: rgba(212, 175, 55, 0.5);
}

.contact-sidebar-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.2s;
}

.sidebar-contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.sidebar-contact-item.whatsapp {
    background: #25D366;
}

.sidebar-contact-item.whatsapp:hover {
    background: #20bd5a;
}

.sidebar-contact-item i {
    font-size: 1.25rem;
}

/* Other Locations List */
.other-locations-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.other-locations-list li {
    margin-bottom: 0.5rem;
}

.other-locations-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 0.75rem;
    color: var(--color-text-body);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.other-locations-list a:hover {
    background: var(--color-bg-neutral);
    color: var(--color-primary);
    padding-left: 1rem;
}

.other-locations-list a i {
    color: var(--color-accent);
}

/* Location CTA Section */
.location-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a3a5a 100%);
}

.location-cta-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 3rem;
    color: #fff;
}

.location-cta-box h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.location-cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.btn-xl {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Main Location Card */
.main-location-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.main-location-placeholder {
    height: 300px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a3a5a 100%);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.main-location-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.main-location-placeholder span {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.location-features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.location-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-body);
}

.location-features-list li i {
    font-size: 1.125rem;
}

/* District Card */
.district-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: all var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.district-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.district-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a3a5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.district-info {
    flex: 1;
}

.district-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.district-info p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.district-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.district-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.625rem;
    background: var(--color-bg-neutral);
    color: var(--color-primary);
    border-radius: 50px;
}

.district-arrow {
    width: 36px;
    height: 36px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.district-card:hover .district-arrow {
    transform: translateX(5px);
}

/* Why Card */
.why-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a3a5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.75rem;
    margin: 0 auto 1.25rem;
}

.why-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Location Page Responsive */
@media (max-width: 991px) {
    .location-hero {
        min-height: 60vh;
    }

    .location-hero-content {
        padding: 6rem 0 3rem;
    }

    .location-cta-box {
        padding: 2rem;
        text-align: center;
    }

    .main-location-card {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .location-title {
        font-size: 2rem;
    }

    .location-highlights {
        flex-direction: column;
        gap: 0.75rem;
    }

    .location-cta-buttons {
        flex-direction: column;
    }

    .location-cta-buttons .btn {
        width: 100%;
    }

    .district-card {
        flex-direction: column;
        text-align: center;
    }

    .district-arrow {
        display: none;
    }
}

/* ============================================
   Homepage Locations Section
   ============================================ */

.main-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a3a5a 100%);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.main-location-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--color-accent);
}

.main-location-badge i:first-child {
    color: var(--color-accent);
    font-size: 1.25rem;
}

.districts-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.district-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.district-badge:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.district-badge i {
    color: var(--color-accent);
    transition: color 0.2s;
}

.district-badge:hover i {
    color: var(--color-accent);
}

/* ============================================
   Services Page Enhancements
   ============================================ */
.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.services-list .district-badge {
    background: #fff;
    color: var(--color-primary);
    font-size: 0.9375rem;
    min-height: 60px;
}

.services-list .district-badge:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.services-list .district-badge:hover i {
    color: var(--color-accent);
}