/* 
 * Dhaka Digital Survey - Mockup Stylesheet
 * Integrated land service & surveying tools portal
 */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Bengali:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Theme Variables --- */
:root {
    --primary: #1b4332;
    --primary-light: #2d6a4f;
    --primary-rgb: 27, 67, 50;
    --primary-gradient: linear-gradient(135deg, #1b4332, #40916c);
    --primary-gradient-glow: rgba(45, 106, 79, 0.15);
    --accent: #d4af37;
    --accent-hover: #b89728;
    --accent-rgb: 212, 175, 55;
    --text: #2c3e50;
    --text-muted: #6c757d;
    --bg-base: #f4f7f6;
    --bg-surface: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.65);
    --border: rgba(0, 0, 0, 0.08);
    --border-glass: rgba(255, 255, 255, 0.4);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
    --shadow-accent: 0 8px 24px rgba(212, 175, 55, 0.15);
    
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

/* --- Dark Theme Overrides --- */
[data-theme="dark"] {
    --primary: #52b788;
    --primary-light: #74c69d;
    --primary-rgb: 82, 183, 136;
    --primary-gradient: linear-gradient(135deg, #0e1a14, #1b4332);
    --primary-gradient-glow: rgba(82, 183, 136, 0.08);
    --accent: #ffd700;
    --accent-hover: #ffea70;
    --accent-rgb: 255, 215, 0;
    --text: #e9ecef;
    --text-muted: #adb5bd;
    --bg-base: #0a0f0d;
    --bg-surface: #121815;
    --bg-glass: rgba(18, 24, 21, 0.7);
    --border: rgba(255, 255, 255, 0.08);
    --border-glass: rgba(255, 255, 255, 0.05);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.5);
    --shadow-accent: 0 8px 24px rgba(255, 215, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Serif Bengali', 'Inter', sans-serif;
    background-color: var(--bg-base);
    color: var(--text);
    line-height: 1.6;
    transition: var(--transition);
    overflow-x: hidden;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

ul {
    list-style: none;
}

/* --- Global Utility Classes --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.section-subtitle {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

[data-theme="dark"] .section-title {
    color: var(--primary-light);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* --- Premium Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: 0 4px 15px var(--primary-gradient-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-gradient-glow);
    filter: brightness(1.1);
}

.btn-accent {
    background-color: var(--accent);
    color: #1b4332;
    box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

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

[data-theme="dark"] .btn-outline {
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.btn-outline:hover {
    background: var(--primary);
    color: #ffffff;
}

[data-theme="dark"] .btn-outline:hover {
    background: var(--primary-light);
    color: #121815;
}

.btn-glass {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
    color: var(--text);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* --- Top Announcement Marquee & Sticky Header --- */
.top-announcement {
    background-color: #fffbeb;
    border-bottom: 1px solid #fde68a;
    color: #b45309;
    height: 38px;
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
    overflow: hidden;
    position: relative;
    z-index: 1001;
}

[data-theme="dark"] .top-announcement {
    background-color: #1a1708;
    border-bottom-color: #3d3408;
    color: #fcd34d;
}

.ticker-wrap {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    padding-left: 20px;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding-right: 40px;
}

.ticker-item i {
    margin-right: 6px;
    color: var(--warning);
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

.top-actions-strip {
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
}

.action-strip-btn {
    height: 100%;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.85rem;
}

.action-strip-btn.wa-btn {
    background-color: #25D366;
}

.action-strip-btn.wa-btn:hover {
    background-color: #128C7E;
}

.action-strip-btn.youtube-btn {
    background-color: #ef4444;
}

.action-strip-btn.youtube-btn:hover {
    background-color: #dc2626;
}

/* --- Header & Navigation Bar --- */
.header-main {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-glass);
    border-bottom: 1px solid var(--border-glass);
    backdrop-filter: blur(15px);
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-img {
    height: 50px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

[data-theme="dark"] .brand-name {
    color: var(--primary-light);
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px; /* Decreased gap to prevent header menu cramped layout */
}

/* Active link indicator */
.nav-link.active {
    color: var(--primary-light) !important;
}

.nav-link.active::after {
    width: 100% !important;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    padding: 8px 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.nav-link:hover {
    color: var(--primary-light);
}

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

/* --- Dropdown Menu --- */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 250px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown-link i {
    width: 20px;
    text-align: center;
    color: var(--primary-light);
}

.dropdown-link:hover {
    background-color: var(--primary-gradient-glow);
    color: var(--primary-light);
}

.header-right-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.token-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

[data-theme="dark"] .token-badge {
    background: #062f22;
    border-color: #047857;
    color: #34d399;
}

.theme-toggle-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle-btn:hover {
    background: var(--primary-gradient-glow);
    border-color: var(--primary-light);
}

.theme-toggle-btn .fa-sun {
    display: none;
}

[data-theme="dark"] .theme-toggle-btn .fa-sun {
    display: block;
}

[data-theme="dark"] .theme-toggle-btn .fa-moon {
    display: none;
}

.login-nav-btn {
    background: var(--primary-gradient);
    color: #ffffff;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.login-nav-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-surface);
    border-right: 1px solid var(--border);
    z-index: 1002;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
}

.mobile-nav-drawer.open {
    left: 0;
}

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.mobile-drawer-close {
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-item .nav-link {
    font-size: 1.1rem;
    padding: 10px 0;
}

.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* --- Hero Banner Slider Section --- */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease;
}

.slide.active .slide-bg-overlay {
    transform: scale(1.08);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.slide-container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
}

.slide-content {
    max-width: 650px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--accent);
    color: #1b4332;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.slide-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.slide-title span {
    color: var(--accent);
}

.slide-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Slider Controls */
.slider-control-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    transition: var(--transition);
}

.slider-control-btn:hover {
    background: var(--accent);
    color: #1b4332;
    border-color: var(--accent);
}

.slider-control-btn.prev {
    left: 30px;
}

.slider-control-btn.next {
    right: 30px;
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.indicator-dot.active {
    background: var(--accent);
    width: 32px;
    border-radius: 6px;
}

/* --- Quick Search Card Wrapper --- */
.quick-search-wrapper {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.search-card {
    background: var(--bg-surface);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.search-form-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 15px;
    align-items: end;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

[data-theme="dark"] .form-group label {
    color: var(--primary-light);
}

.form-control {
    width: 100%;
    height: 48px;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background-color: var(--bg-base);
    color: var(--text);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px var(--primary-gradient-glow);
}

.search-btn {
    height: 48px;
    border-radius: 8px;
    background: var(--primary-gradient);
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.search-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

/* --- Trust Badges Section --- */
.trust-badges-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.trust-badge i {
    font-size: 1.2rem;
    color: var(--accent);
}

.trust-badge span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* --- Section: Citizen Land Services --- */
.services-section {
    background-color: var(--bg-surface);
    transition: var(--transition);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--bg-base);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 30px 25px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

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

.service-icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-surface);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-light);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    background: var(--primary-gradient);
    color: #ffffff;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-pricing-box {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.pricing-badge {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
}

.pricing-badge.partner-fee {
    background-color: rgba(16, 185, 129, 0.1);
    color: #047857;
}

[data-theme="dark"] .pricing-badge.partner-fee {
    background-color: rgba(52, 211, 153, 0.08);
    color: #34d399;
}

.pricing-badge.gov-fee {
    background-color: rgba(245, 158, 11, 0.1);
    color: #b45309;
}

[data-theme="dark"] .pricing-badge.gov-fee {
    background-color: rgba(251, 191, 36, 0.08);
    color: #fbbf24;
}

.service-action-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.service-card:hover .service-action-link {
    color: var(--accent);
}

/* --- Section: Pro Surveying Tools & Calculators --- */
.pro-tools-section {
    background-color: var(--bg-base);
}

.tabs-container {
    width: 100%;
    margin-bottom: 40px;
}

.tabs-list {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid var(--border);
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.tab-btn {
    padding: 15px 30px;
    background: transparent;
    border: none;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.tab-btn i {
    margin-right: 8px;
}

.tab-btn.active {
    color: var(--primary-light);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-light);
    transition: var(--transition);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Calculator Card Grid */
.calc-wrapper-card {
    background-color: var(--bg-surface);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.calc-inputs-pane {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calc-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.calc-results-pane {
    background: var(--primary-gradient-glow);
    border: 1.5px solid var(--primary-light);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.calc-results-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 1.5px dashed var(--primary-light);
    padding-bottom: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

[data-theme="dark"] .calc-results-title {
    color: var(--primary-light);
}

.calc-result-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.calc-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

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

.calc-result-label {
    font-weight: 500;
    color: var(--text-muted);
}

.calc-result-value {
    font-weight: 700;
    color: var(--text);
    font-size: 1.1rem;
}

.calc-result-value.highlight-accent {
    color: var(--primary-light);
    font-size: 1.3rem;
}

.calculator-disclaimer {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: start;
    gap: 6px;
}

.calculator-disclaimer i {
    color: var(--warning);
    margin-top: 3px;
}

/* --- Section: Google Maps & KMZ mapping Demo --- */
.mapping-preview-section {
    background: var(--bg-surface);
}

.mapping-panel {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.mapping-details {
    padding-right: 20px;
}

.mapping-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.mapping-feature-item {
    display: flex;
    gap: 15px;
}

.mapping-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mapping-feature-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.mapping-feature-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Interactive Canvas Map Mockup */
.map-canvas-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 4px solid var(--bg-surface);
    height: 420px;
}

.map-mock-bg {
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="420" viewBox="0 0 800 420"><rect width="800" height="420" fill="%23225566" opacity="0.15"/><path d="M 0 100 Q 200 150 400 100 T 800 150" fill="none" stroke="%2388aa33" stroke-width="12" opacity="0.3"/><path d="M 100 0 Q 150 200 100 420" fill="none" stroke="%2388aa33" stroke-width="8" opacity="0.3"/><path d="M 500 0 Q 550 200 480 420" fill="none" stroke="%2388aa33" stroke-width="16" opacity="0.2"/><circle cx="200" cy="180" r="100" fill="none" stroke="%234477aa" stroke-width="2" stroke-dasharray="5 5"/><polygon points="280,120 340,150 320,220 250,200 240,140" fill="%232d6a4f" fill-opacity="0.3" stroke="%232d6a4f" stroke-width="3"/><polygon points="340,150 410,180 390,260 320,220" fill="%23d4af37" fill-opacity="0.25" stroke="%23d4af37" stroke-width="3"/><polygon points="410,180 470,120 520,170 480,240 390,260" fill="%23ef4444" fill-opacity="0.15" stroke="%23ef4444" stroke-width="2"/></svg>');
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.map-control-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 15px;
    width: 260px;
    box-shadow: var(--shadow);
}

.map-control-overlay h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.map-layer-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.layer-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.kmz-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #0284c7;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: bounce 2s infinite;
}

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

.map-coordinate-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.75);
    color: #ffffff;
    font-family: monospace;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: var(--border-radius);
}

/* --- Leaflet Custom Style Overrides --- */
.leaflet-container {
    font-family: inherit !important;
}
.leaflet-control-zoom {
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow) !important;
}
.leaflet-control-zoom-in, .leaflet-control-zoom-out {
    background-color: var(--bg-surface) !important;
    color: var(--text) !important;
    border-bottom: 1px solid var(--border) !important;
}
.leaflet-control-zoom-in:hover, .leaflet-control-zoom-out:hover {
    background-color: var(--bg-base) !important;
}
.leaflet-bar a {
    background-color: var(--bg-surface) !important;
    color: var(--text) !important;
}
.leaflet-control-attribution {
    background: var(--bg-glass) !important;
    color: var(--text-muted) !important;
    backdrop-filter: blur(5px);
}
[data-theme="dark"] .leaflet-tile {
    filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%);
}
[data-theme="dark"] .leaflet-container {
    background: #0a0f0d !important;
}


/* --- Section: Expert Directory (Amin / Lawyers) --- */
.experts-section {
    background: var(--bg-base);
}

.experts-slider-outer {
    position: relative;
    width: 100%;
}

.experts-track-container {
    overflow: hidden;
    padding: 10px 0;
}

.experts-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease-in-out;
}

.expert-card {
    flex: 0 0 calc(33.333% - 17px);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.expert-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.expert-top-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.expert-avatar-box {
    position: relative;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-light);
    background-color: var(--primary-gradient-glow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.expert-avatar-box i {
    font-size: 1.8rem;
    color: var(--primary);
}

[data-theme="dark"] .expert-avatar-box i {
    color: var(--primary-light);
}

.expert-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--success);
    border: 2px solid var(--bg-surface);
}

.expert-meta-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--text);
}

.expert-meta-text .expert-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.expert-stars {
    color: var(--warning);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.expert-stars span {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.75rem;
}

.expert-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: var(--bg-base);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.expert-stat-lbl {
    color: var(--text-muted);
}

.expert-stat-val {
    font-weight: 700;
    color: var(--text);
}

.expert-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 8px;
}

.btn-msg {
    background-color: var(--bg-base);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-msg:hover {
    background-color: var(--primary-gradient-glow);
    color: var(--primary-light);
}

.experts-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
}

.expert-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    color: var(--text);
    transition: var(--transition);
}

.expert-nav-btn:hover {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: var(--primary-light);
}

/* --- Section: Video Tutorials Hub --- */
.video-hub-section {
    background: var(--bg-surface);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.video-card {
    background: var(--bg-base);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.video-thumb-container {
    position: relative;
    width: 100%;
    height: 200px;
    background-color: #000000;
}

.video-mock-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.8;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--danger);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
    transition: var(--transition);
}

.video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background-color: #ff0000;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.video-info-box {
    padding: 20px;
}

.video-category {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.video-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.video-author-date {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- Section: Pro Membership Pricing Tiers --- */
.pricing-section {
    background: var(--bg-base);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1050px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2.5px solid var(--primary-light);
    box-shadow: var(--shadow-hover);
    transform: scale(1.03);
}

.featured-ribbon {
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: var(--accent);
    color: #1b4332;
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 800;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.featured:hover {
    transform: translateY(-8px) scale(1.03);
}

.pricing-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.pricing-cost {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
}

[data-theme="dark"] .pricing-cost {
    color: var(--primary-light);
}

.pricing-cost span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 6px;
}

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.pricing-features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
    flex-grow: 1;
}

.pricing-feature {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 0.9rem;
}

.pricing-feature i {
    color: var(--success);
    margin-top: 3px;
}

.pricing-feature.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}

.pricing-feature.disabled i {
    color: var(--danger);
}

.pricing-action-btn {
    width: 100%;
}

/* --- Section: FAQ & Support Accordion --- */
.faq-section {
    background: var(--bg-surface);
}

.faq-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-illustration-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--primary-gradient-glow);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid var(--border);
    text-align: center;
}

.faq-illustration-box i {
    font-size: 3.5rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.faq-illustration-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-illustration-box p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-base);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-header {
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    text-align: left;
    font-weight: 700;
    color: var(--text);
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    color: var(--primary-light);
}

.accordion-item.active {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: var(--bg-surface);
}

.accordion-content-inner {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- Footer Area --- */
.footer-main {
    background-color: #0e1814;
    color: #9ab4a8;
    padding-top: 70px;
    border-top: 1px solid #1a2c24;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo-box {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-brand-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.social-circle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #1a2c24;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-circle-btn:hover {
    background-color: var(--accent);
    color: #1b4332;
    transform: translateY(-2px);
}

.footer-col-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

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

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

.footer-link-item {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link-item i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-link-item:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    background-color: #0b110e;
    border-top: 1px solid #1a2c24;
    padding: 25px 0;
    font-size: 0.85rem;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* --- Floating Utilities --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    animation: pulse-glow 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 44px;
    height: 44px;
    background-color: var(--primary-gradient);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
    z-index: 998;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .search-form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .expert-card {
        flex: 0 0 calc(50% - 13px);
    }
    
    .calc-grid {
        grid-template-columns: 1fr;
    }
    
    .mapping-panel {
        grid-template-columns: 1fr;
    }
    
    .faq-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1150px) {
    .nav-links {
        display: none; /* Hide desktop nav links earlier for tablets/laptops */
    }
    
    .mobile-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .header-container {
        height: 70px;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-slider-section {
        height: 500px;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .slide-desc {
        font-size: 0.95rem;
    }
    
    .search-form-grid {
        grid-template-columns: 1fr;
    }
    
    .expert-card {
        flex: 0 0 100%;
    }
    
    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Featured / Why Choose Us / How It Works Styles --- */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-box-card {
    background: var(--bg-surface);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow);
}

.feature-box-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light) !important;
}

.feature-box-card:hover .feature-box-icon {
    transform: scale(1.1);
    background: var(--primary) !important;
    color: #ffffff !important;
}

.step-card {
    background: var(--bg-surface);
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light) !important;
}

/* --- Contact Page Styles --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 40px;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Contact form fields focus styling */
#contactForm input:focus, 
#contactForm select:focus, 
#contactForm textarea:focus {
    border-color: var(--primary-light) !important;
    box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.15);
    background-color: var(--bg-surface) !important;
}

[data-theme="dark"] #contactForm input:focus, 
[data-theme="dark"] #contactForm select:focus, 
[data-theme="dark"] #contactForm textarea:focus {
    box-shadow: 0 0 0 3px rgba(116, 198, 157, 0.15);
}

/* --- Mobile Responsiveness Enhancements (All Pages) --- */

/* 1. Hide token badge and login button in top header on mobile (already present in drawer) */
@media (max-width: 768px) {
    .header-right-actions .token-badge,
    .header-right-actions .login-nav-btn {
        display: none !important;
    }
    
    /* Make tab-list scrollable on mobile without centering clipping */
    .tabs-list {
        justify-content: flex-start !important;
        -webkit-overflow-scrolling: touch;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Contact Map sizing */
    #contactMap {
        min-height: 200px !important;
    }
}

/* 2. Experts directory grid layout responsiveness override */
.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.experts-grid .expert-card {
    flex: none !important;
    width: 100% !important;
    margin: 0 !important;
}

/* Adjust map overlay sizing */
.map-canvas-container .map-control-overlay {
    position: absolute !important;
    bottom: 15px !important;
    left: 15px !important;
    top: auto !important;
    right: auto !important;
    max-width: calc(100% - 30px) !important;
    width: 280px !important;
}

@media (max-width: 576px) {
    .map-canvas-container .map-control-overlay {
        bottom: 10px !important;
        left: 10px !important;
        right: 10px !important;
        width: auto !important;
        max-width: none !important;
    }
}

/* --- Page Header Section --- */
.page-header-section {
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%) !important;
    position: relative;
    padding: 80px 0;
    text-align: center;
    border-bottom: 4px solid var(--accent);
    overflow: hidden;
}

/* Subtle grid dots decorative pattern overlay */
.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.4;
    z-index: 1;
}

.page-header-section .container {
    position: relative;
    z-index: 2;
}

.page-header-section h1 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff !important; /* Bright white for crystal-clear readability */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 12px;
}

.page-header-section p {
    font-size: 1.15rem;
    color: #e2e8f0 !important; /* Light grayish-blue for maximum readability */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 650px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-header-section {
        padding: 60px 0;
    }
    .page-header-section h1 {
        font-size: 2rem;
    }
    .page-header-section p {
        font-size: 1rem;
    }
}




