/* ==========================================================================
   SMART TAX SOLUTIONS - DESIGN SYSTEM & STYLESHEET
   Professional, Modern, Rich Aesthetics inspired by Imad Ali's Branding
   ========================================================================== */

:root {
    /* Color Palette */
    --navy-deep: #030a16;
    --navy-dark: #071328;
    --navy-card: #0d2144;
    --navy-hover: #142f5e;
    
    --blue-primary: #0056d6;
    --blue-light: #2b84ff;
    --blue-glow: rgba(0, 102, 204, 0.35);
    
    --green-primary: #4cae36;
    --green-dark: #3a8a28;
    --green-glow: rgba(76, 174, 54, 0.35);
    
    --gold-accent: #f0b90b;
    --gold-gradient: linear-gradient(135deg, #f0b90b, #d48f00);
    
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    
    --bg-page: #f8fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    
    /* Shadows & Effects */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.12);
    --shadow-glow-blue: 0 0 25px rgba(0, 86, 214, 0.4);
    --shadow-glow-green: 0 0 25px rgba(76, 174, 54, 0.4);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   TOP CONTACT ACCENT BAR
   ========================================================================== */
.top-bar {
    display: none;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-contact span i {
    color: var(--green-primary);
    margin-right: 6px;
}

.top-assoc strong {
    color: var(--gold-accent);
    letter-spacing: 0.5px;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    box-shadow: none;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: #001641;
    padding: 8px 0;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-item:hover, .nav-item.active {
    color: var(--blue-primary);
}

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

.nav-item:hover::after, .nav-item.active::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-main);
}

.dropdown-menu a i {
    color: var(--blue-primary);
    width: 18px;
}

.dropdown-menu a:hover {
    background: #f1f5f9;
    color: var(--blue-primary);
    padding-left: 24px;
}

/* CTA & Mobile Toggle */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-nav-book {
    background: var(--navy-dark);
    color: var(--text-light);
    box-shadow: 0 4px 12px rgba(7, 19, 40, 0.2);
}

.btn-nav-book:hover {
    background: var(--blue-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-blue);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--navy-dark);
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    background-image: url('./images/hero.png');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 60px 0;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 19, 40, 0.94) 0%, rgba(13, 33, 68, 0.88) 60%, rgba(0, 86, 214, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-text-area {
    max-width: 680px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--green-primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 174, 54, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(76, 174, 54, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 174, 54, 0); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.text-gradient-green {
    background: linear-gradient(90deg, #5de045, #88ff70, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 36px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--blue-primary);
    color: white;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-glow-blue);
}

.btn-hero-primary:hover {
    background: #0044ab;
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(0, 86, 214, 0.6);
}

.btn-hero-secondary {
    background: var(--green-primary);
    color: white;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-glow-green);
}

.btn-hero-secondary:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(76, 174, 54, 0.6);
}

.btn-hero-call {
    background: var(--navy-card);
    color: white;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.btn-hero-call:hover {
    background: var(--navy-hover);
    transform: translateY(-3px);
}

.trust-badge-row {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--green-primary);
    margin-right: 6px;
}

.dot-sep {
    color: #475569;
}

/* FLOATING SIDEBAR (Exact match to website photo right side) */
.floating-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border-radius: 12px 0 0 12px;
    box-shadow: -4px 0 25px rgba(0,0,0,0.15);
    z-index: 900;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-right: none;
}

.sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    width: 80px;
    color: var(--navy-dark);
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    transition: var(--transition);
}

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

.sidebar-icon {
    font-size: 1.4rem;
    color: var(--blue-primary);
    margin-bottom: 6px;
    transition: var(--transition);
}

.sidebar-item span {
    font-size: 0.68rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    text-align: center;
}

.sidebar-item:hover {
    background: var(--navy-dark);
    color: white;
}

.sidebar-item:hover .sidebar-icon {
    color: var(--green-primary);
    transform: scale(1.15);
}

/* ==========================================================================
   OUR SERVICES SECTION
   ========================================================================== */
.services-section {
    padding: 90px 0;
    background: #f8fafc;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy-dark);
    letter-spacing: -0.5px;
}

.accent-underline {
    width: 60px;
    height: 4px;
    background: var(--green-primary);
    margin: 12px auto 16px;
    border-radius: 2px;
}

.accent-underline.left-align {
    margin: 12px 0 16px 0;
}

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

/* 10 Services Grid - 5x2 layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 30px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover::before {
    opacity: 1;
    background: var(--green-primary);
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.blue-glow {
    background: #eff6ff;
    color: var(--blue-primary);
}

.green-glow {
    background: #f0fdf4;
    color: var(--green-primary);
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1);
    background: var(--navy-dark);
    color: var(--green-primary);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 12px;
}

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

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card:hover .service-link {
    color: var(--green-dark);
    gap: 10px;
}

/* ==========================================================================
   WHY CHOOSE US & ABOUT US SPLIT SECTION
   ========================================================================== */
.split-section {
    padding: 90px 0;
    background: white;
    border-top: 1px solid var(--border-color);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left: Why Choose Us */
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
}

.pillar-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 20px;
    transition: var(--transition);
}

.pillar-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
    border-color: var(--blue-primary);
    transform: translateY(-4px);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--navy-dark);
    color: var(--green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.pillar-content h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.pillar-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Right: About Us */
.about-card-modern {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.about-img-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.about-card-modern:hover .about-img {
    transform: scale(1.05);
}

.about-img-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(7, 19, 40, 0.85);
    backdrop-filter: blur(8px);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
}

.about-img-badge i {
    color: var(--gold-accent);
    margin-right: 6px;
}

.about-body {
    padding: 32px 28px;
}

.lead-text {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Bita Association Box - Exact highlight matching photo & card */
.bita-association-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #eff6ff;
    border-left: 4px solid var(--navy-dark);
    padding: 16px 20px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 28px;
}

.assoc-logo-icon {
    font-size: 1.8rem;
    color: var(--navy-dark);
}

.bita-association-box p {
    font-size: 0.92rem;
    color: var(--navy-dark);
    line-height: 1.4;
}

.bita-highlight {
    color: var(--blue-primary);
    text-decoration: underline;
    font-weight: 800;
}

.btn-navy-glow {
    background: var(--navy-dark);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(7, 19, 40, 0.25);
}

.btn-navy-glow:hover {
    background: var(--blue-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-blue);
}

/* ==========================================================================
   UPLOAD DOCUMENTS BANNER
   ========================================================================== */
.upload-banner-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, #0c234a 100%);
    color: white;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--green-primary);
}

.upload-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.upload-banner-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.upload-icon-circle {
    width: 72px;
    height: 72px;
    background: rgba(76, 174, 54, 0.2);
    border: 2px solid var(--green-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--green-primary);
    box-shadow: var(--shadow-glow-green);
}

.upload-text h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.upload-text p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.btn-upload-banner {
    background: var(--green-primary);
    color: white;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-glow-green);
}

.btn-upload-banner:hover {
    background: #3d8f2b;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(76, 174, 54, 0.7);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
    background: var(--navy-deep);
    color: #94a3b8;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 58px;
    width: auto;
}

.footer-tagline {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.footer-desc {
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.footer-assoc {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 14px;
    border-radius: 6px;
    border-left: 3px solid var(--gold-accent);
    margin-bottom: 20px;
}

.footer-assoc p {
    font-size: 0.82rem;
    color: #e2e8f0;
}

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

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--blue-primary);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 8px;
}

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

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

.footer-links a {
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--green-primary);
    padding-left: 6px;
}

.contact-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    align-items: flex-start;
}

.contact-icon {
    color: var(--blue-light);
    font-size: 1.1rem;
    margin-top: 3px;
}

.book-desc {
    font-size: 0.88rem;
    margin-bottom: 20px;
}

.btn-footer-book {
    background: var(--blue-primary);
    color: white;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    box-shadow: var(--shadow-glow-blue);
}

.btn-footer-book:hover {
    background: #0044ab;
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 24px 0;
    font-size: 0.82rem;
}

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

.legal-links {
    display: flex;
    gap: 14px;
    align-items: center;
}

.legal-links a:hover {
    color: white;
    text-decoration: underline;
}

/* ==========================================================================
   INTERACTIVE MODALS
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 10, 22, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: white;
    width: 100%;
    max-width: 620px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    padding: 36px;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: var(--transition);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-card {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: #e2e8f0;
    color: var(--navy-dark);
}

.modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 16px;
}

.modal-icon.blue { background: #eff6ff; color: var(--blue-primary); }
.modal-icon.green { background: #f0fdf4; color: var(--green-primary); }
.modal-icon.gold { background: #fef9c3; color: #ca8a04; }

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy-dark);
    margin-bottom: 6px;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.92rem;
    transition: var(--transition);
    background: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: var(--blue-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 86, 214, 0.15);
}

.form-control.needs-attention,
.drop-zone.needs-attention {
    border-color: #dc2626;
    background: #fff7ed;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.signature-pad-wrap {
    position: relative;
    width: 100%;
    height: 180px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.02);
}

.signature-pad-wrap::after {
    content: '';
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 42px;
    border-bottom: 1px dashed #cbd5e1;
    pointer-events: none;
}

.signature-pad {
    display: block;
    width: 100%;
    height: 100%;
    cursor: crosshair;
    touch-action: none;
}

.signature-placeholder {
    position: absolute;
    left: 24px;
    bottom: 18px;
    color: #94a3b8;
    font-size: 0.85rem;
    pointer-events: none;
}

.signature-pad-wrap.has-signature .signature-placeholder {
    display: none;
}

.signature-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.btn-signature-clear {
    background: #f1f5f9;
    color: var(--navy-dark);
    padding: 10px 14px;
    font-size: 0.82rem;
}

.btn-signature-clear:hover {
    background: #e2e8f0;
}

.signature-status {
    color: #b45309;
    font-size: 0.82rem;
    font-weight: 700;
}

.signature-status.signed {
    color: var(--green-dark);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.btn-cancel {
    background: #f1f5f9;
    color: var(--text-muted);
}

.btn-cancel:hover {
    background: #e2e8f0;
    color: var(--navy-dark);
}

.btn-submit-primary {
    background: var(--blue-primary);
    color: white;
    box-shadow: var(--shadow-glow-blue);
}

.btn-submit-primary:hover {
    background: #0044ab;
}

.btn-submit-green {
    background: var(--green-primary);
    color: white;
    box-shadow: var(--shadow-glow-green);
}

.btn-submit-green:hover {
    background: var(--green-dark);
}

/* Drag and Drop Zone */
.drop-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    background: #f8fafc;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 16px;
}

.drop-zone:hover, .drop-zone.dragover {
    border-color: var(--green-primary);
    background: #f0fdf4;
}

.drop-icon {
    font-size: 2.5rem;
    color: var(--green-primary);
    margin-bottom: 12px;
}

.drop-zone h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 4px;
}

.browse-link {
    color: var(--blue-primary);
    text-decoration: underline;
}

.drop-info {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.78rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 10px;
    border-radius: 6px;
}

.security-badge i {
    color: var(--green-primary);
}

.form-section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--navy-dark);
    margin: 24px 0 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
}

.checkbox-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 18px;
}

.checkbox-line input {
    margin-top: 4px;
}

.consent-copy {
    justify-content: flex-start;
    text-align: left;
    margin-bottom: 16px;
}

.spec-note {
    margin-top: 10px;
    font-size: 0.98rem;
}

.info-modal-body {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.7;
    padding: 10px 0;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: var(--navy-dark);
    color: white;
    padding: 16px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 300px;
    max-width: 420px;
    border-left: 4px solid var(--green-primary);
    animation: slideIn 0.3s forwards;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast i {
    font-size: 1.4rem;
    color: var(--green-primary);
}

.toast-message h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.toast-message p {
    font-size: 0.8rem;
    color: #cbd5e1;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .nav-links, .btn-nav-book {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }

    .nav-container {
        height: 72px;
    }

    .logo-img {
        height: 50px;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .floating-sidebar {
        display: none; /* Hide floating sidebar on mobile to avoid overlap */
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 18px;
    }

    .nav-container {
        height: 72px;
    }

    .logo-img {
        height: 44px;
    }

    .hero-section {
        min-height: auto;
        padding: 58px 0 52px;
        align-items: flex-start;
    }

    .badge-pill {
        font-size: 0.78rem;
        gap: 8px;
        padding: 6px 14px;
        margin-bottom: 22px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.22rem;
        line-height: 1.12;
        letter-spacing: -0.4px;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 1.04rem;
        line-height: 1.5;
        margin-bottom: 28px;
    }

    .services-grid, .pillars-grid, .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 14px;
        margin-bottom: 32px;
    }

    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-call {
        width: 100%;
        justify-content: center;
        padding: 14px 18px;
        font-size: 0.95rem;
    }

    .trust-badge-row {
        justify-content: space-between;
        gap: 8px;
        font-size: 0.82rem;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .trust-item i {
        margin-right: 0;
    }

    .dot-sep {
        display: none;
    }

    .services-section,
    .split-section {
        padding: 58px 0;
    }

    .section-header {
        margin-bottom: 34px;
    }

    .section-title {
        font-size: 1.85rem;
        line-height: 1.15;
    }

    .service-card {
        padding: 24px 18px;
        border-radius: 10px;
    }
    
    .signature-pad-wrap {
        height: 150px;
    }

    .signature-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn-signature-clear {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
