/* -------------------------------------------------------------
   LAKSHAY ENTERPRISES - LIGHT BLUE STYLE SHEET (ADDRESS.CO THEME)
---------------------------------------------------------------- */

/* Custom Properties / Design Tokens */
:root {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-accent: #f1f5f9;
    
    --card-bg: #ffffff;
    --card-border: #e2e8f0;
    --card-hover-border: #0020ff;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    --primary-color: #0020ff;
    --primary-hover: #001ad4;
    --primary-glow: rgba(0, 32, 255, 0.15);
    
    --accent-color: #10b981; /* Success Green */
    --warning-color: #f59e0b; /* Amber Gold */
    --danger-color: #ef4444; /* Alert Red */
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.02);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 40px -15px rgba(0, 32, 255, 0.12);
    
    --container-max-width: 1200px;
}

/* Reset and Core Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

/* Announcement Top Bar */
.announcement-bar {
    background-color: var(--primary-color);
    color: #ffffff;
    text-align: center;
    padding: 0.6rem 1.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    position: relative;
    z-index: 101;
    font-family: var(--font-heading);
}

.announcement-bar .close-announcement {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0.8;
}

.announcement-bar .close-announcement:hover {
    opacity: 1;
}

/* Inset Header Card */
.header-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    background: transparent;
    transition: var(--transition-smooth);
}

.header-wrapper.scrolled {
    background: rgba(248, 250, 252, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.5rem 0;
}

.header {
    background: #ffffff;
    border-radius: 100px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 1.5rem;
    transition: var(--transition-smooth);
}

.header-wrapper.scrolled .header {
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 32, 255, 0.1);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    transition: var(--transition-smooth);
}

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

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--primary-color);
    line-height: 1;
}

.brand-sub {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    line-height: 1.4;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
}

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

.header-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    border: 1px solid var(--card-border);
    padding: 0.5rem 1rem;
    border-radius: 100px;
}

.phone-link svg {
    color: var(--primary-color);
}

.phone-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Utility classes */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.section-badge {
    background: var(--bg-accent);
    color: var(--primary-color);
    border: 1px solid rgba(0, 32, 255, 0.1);
    margin-bottom: 1rem;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.35rem;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 32, 255, 0.25);
}

.btn-secondary {
    background-color: #ffffff;
    color: var(--text-primary);
    border: 1px solid var(--card-border);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.btn-outline:hover {
    background-color: rgba(0, 32, 255, 0.04);
}

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

.btn-full-width {
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding-top: 4rem;
    padding-bottom: 6rem;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-title span {
    color: var(--primary-color);
}

/* Hero Interactive Search Dropdown */
.hero-search-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    max-width: 540px;
}

.search-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.search-row {
    display: flex;
    gap: 1rem;
}

.hero-search-select-wrapper {
    flex-grow: 1;
    position: relative;
}

.hero-search-select {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--card-border);
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 500;
    background-color: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.hero-search-select-wrapper::after {
    content: '\25BC';
    font-size: 0.7rem;
    color: var(--text-muted);
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Trending Cities Icons */
.trending-cities-container {
    margin-bottom: 2rem;
}

.trending-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.trending-cities-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.trending-city-item {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.trending-city-item:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.trending-icon {
    color: var(--primary-color);
}

/* Trust Badge */
.trust-badge-row {
    border-top: 1px solid var(--card-border);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.trust-title {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-brands {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.trust-brand-tag {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.trust-brand-tag.highlight {
    color: var(--text-primary);
}

.rating-badge {
    background-color: var(--warning-color);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

/* Hero Right Image */
.hero-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--card-border);
}

.hero-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

/* Sections Structure */
section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--card-border);
}

.section-bg-alt {
    background-color: var(--bg-secondary);
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-desc {
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-secondary);
}

/* "Concept is Simple" Blog / Resource Section */
.trusted-headline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3.5rem;
}

.trusted-headline span {
    color: var(--primary-color);
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.article-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    transition: var(--transition-smooth);
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 32, 255, 0.2);
}

.article-image-box {
    position: relative;
    height: 100%;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.article-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.article-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
}

.article-link:hover {
    text-decoration: underline;
}

/* "You can use Virtual Address for" Section */
.usecase-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 4rem;
    align-items: center;
}

.usecase-visual-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.usecase-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.usecase-overlay-text {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.usecase-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.usecase-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.usecase-icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--bg-accent);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.usecase-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.usecase-item-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.usecase-item-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
}

/* Pricing Grid */
.pricing-toggle-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    background: #ffffff;
    border: 1px solid var(--card-border);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
}

.pricing-toggle {
    width: 50px;
    height: 26px;
    background-color: var(--bg-accent);
    border: 1px solid var(--card-border);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: var(--transition-fast);
}

.pricing-toggle .toggle-circle {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.pricing-toggle.active .toggle-circle {
    left: 26px;
}

.toggle-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
}

.toggle-label.active {
    color: var(--text-primary);
}

.savings-tag {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--accent-color);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.1rem 0.5rem;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: bold;
    margin-left: 0.25rem;
}

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

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 32, 255, 0.15);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-premium);
    position: relative;
}

.popular-ribbon {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background-color: var(--primary-color);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.pricing-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    min-height: 2.8rem;
}

.price-container {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.25rem;
}

.currency {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1;
}

.price-period {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.billing-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1.5rem;
}

.pricing-body {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.pricing-body li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.pricing-body li::before {
    content: '\2713';
    color: var(--accent-color);
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-body li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
}

.pricing-body li.disabled::before {
    content: '\2717';
    color: var(--danger-color);
}

/* Calculator Section */
.calculator-wrapper {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    margin-top: 2.5rem;
}

.control-group {
    margin-bottom: 2rem;
}

.control-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.plan-options-grid, .duration-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.duration-options-grid {
    grid-template-columns: repeat(2, 1fr);
}

.plan-option-card, .duration-option-card {
    background-color: var(--bg-accent);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    padding: 0.85rem;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    transition: var(--transition-fast);
}

.plan-option-card.active, .duration-option-card.active {
    background-color: rgba(0, 32, 255, 0.05);
    border-color: var(--primary-color);
}

.plan-option-card.active .option-title, .duration-option-card.active .option-title {
    color: var(--primary-color);
}

.plan-option-card .option-title, .duration-option-card .option-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.plan-option-card .option-desc, .duration-option-card .option-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Calculator Summary Box */
.calculator-summary {
    background-color: var(--bg-accent);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.summary-title {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 0.5rem;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.summary-row strong {
    color: var(--text-primary);
}

.summary-divider {
    height: 1px;
    background-color: var(--card-border);
    margin: 1.25rem 0;
}

.summary-pricing {
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.4rem;
    font-size: 0.88rem;
}

.main-total-row {
    color: var(--text-primary);
}

.gst-row {
    color: var(--text-muted);
}

.grand-total-row {
    margin-top: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    border-top: 1px dashed var(--card-border);
    padding-top: 0.75rem;
}

.grand-total-amount {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.calculator-guarantee-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

.guarantee-icon {
    color: var(--accent-color);
}

/* FAQ Section Styling */
.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.15rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
}

.faq-toggle-icon {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    padding-bottom: 1.15rem;
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    color: var(--primary-color);
}

/* Modal Styling */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.booking-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.booking-modal {
    width: 100%;
    max-width: 600px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-lg);
}

.booking-modal-overlay.active .booking-modal {
    transform: translateY(0);
}

.close-modal-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    font-size: 1.75rem;
    color: var(--text-muted);
    cursor: pointer;
}

.close-modal-btn:hover {
    color: var(--text-primary);
}

.modal-header {
    margin-bottom: 1.75rem;
}

.modal-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.35rem;
}

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

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.form-group input, .form-group select, .form-group textarea {
    border: 1px solid var(--card-border);
    border-radius: 6px;
    padding: 0.65rem 0.85rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.terms-accept-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.booking-success-state {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    text-align: center;
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.booking-success-state.active {
    opacity: 1;
    pointer-events: auto;
}

.success-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background-color: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* --- FLOATING VIDEO PRESENTER --- */
.floating-presenter-wrapper {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.presenter-bubble {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

.presenter-bubble:hover {
    transform: scale(1.08);
}

.presenter-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.presenter-badge {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--danger-color);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: 100px;
    white-space: nowrap;
    text-transform: uppercase;
}

.close-presenter-btn {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid var(--card-border);
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

/* --- CHATBOT SYSTEM --- */
.floating-chat-trigger {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: var(--shadow-lg);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    transition: var(--transition-smooth);
}

.floating-chat-trigger:hover {
    transform: scale(1.05);
    background-color: var(--primary-hover);
}

.floating-chat-trigger svg {
    width: 1.75rem;
    height: 1.75rem;
}

.chat-panel {
    position: fixed;
    bottom: 6.5rem;
    right: 2rem;
    width: 360px;
    height: 480px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 32, 255, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.95);
    transition: var(--transition-smooth);
}

.chat-panel.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: var(--primary-color);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
}

.chat-logo-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #ffffff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.chat-header-info {
    flex-grow: 1;
}

.chat-header-info h3 {
    color: #ffffff;
    font-size: 1.05rem;
}

.chat-header-status {
    font-size: 0.75rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.chat-header-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #10b981;
    display: inline-block;
}

.close-chat-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
}

.close-chat-btn:hover {
    opacity: 1;
}

/* Chat Messages Box */
.chat-body {
    flex-grow: 1;
    padding: 1.25rem;
    overflow-y: auto;
    background-color: var(--bg-accent);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-msg {
    max-width: 85%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-size: 0.88rem;
    line-height: 1.4;
}

.chat-msg.system {
    background-color: #ffffff;
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    box-shadow: var(--shadow-sm);
}

.chat-msg.user {
    background-color: var(--primary-color);
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    box-shadow: var(--shadow-sm);
}

/* Bullet list check points inside Chatbot welcome */
.chat-bullets-list {
    margin: 0.75rem 0;
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.chat-bullets-list li {
    list-style-type: none;
    position: relative;
}

.chat-bullets-list li::before {
    content: '\2713';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: -1.25rem;
}

.chat-timestamp {
    font-size: 0.7rem;
    color: var(--text-muted);
    align-self: center;
    margin-top: 0.25rem;
}

/* Chat Input Bar */
.chat-footer {
    padding: 0.75rem 1rem;
    background: #ffffff;
    border-top: 1px solid var(--card-border);
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.chat-input {
    flex-grow: 1;
    border: 1px solid var(--card-border);
    border-radius: 100px;
    padding: 0.6rem 1.25rem;
    font-size: 0.88rem;
    outline: none;
}

.chat-input:focus {
    border-color: var(--primary-color);
}

.chat-send-btn {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-send-btn:hover {
    background-color: var(--primary-hover);
}

.chat-send-btn svg {
    width: 1rem;
    height: 1rem;
}

/* Footer Section */
.footer-section {
    background-color: #0f172a;
    color: #94a3b8;
    padding-top: 5rem;
    padding-bottom: 2rem;
    border-top: none;
}

.footer-section h1, .footer-section h2, .footer-section h3, .footer-section h4 {
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.compliance-logos {
    display: flex;
    gap: 0.5rem;
}

.compliance-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
}

.footer-links-col h3, .footer-contact-col h3 {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links-col h3::after, .footer-contact-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2rem;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-col a {
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-links-col a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.contact-detail svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-detail a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

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

/* -------------------------------------------------------------
   RESPONSIVE DESIGN SYSTEM (MEDIA QUERIES)
---------------------------------------------------------------- */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-search-card {
        margin-left: auto;
        margin-right: auto;
    }
    
    .trending-cities-list {
        justify-content: center;
    }
    
    .trust-badge-row {
        justify-content: center;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .usecase-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .usecase-visual-box {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 3rem auto 0 auto;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-contact-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .header {
        border-radius: 0;
        margin: 0;
        border-left: none;
        border-right: none;
    }
    
    .header-wrapper {
        padding: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 3.5rem;
        left: -100%;
        width: 100%;
        height: calc(100vh - 3.5rem);
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition-smooth);
        z-index: 99;
        border-top: 1px solid var(--card-border);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .header-cta-group {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .search-row {
        flex-direction: column;
    }
    
    .article-card {
        grid-template-columns: 1fr;
    }
    
    .article-image-box {
        height: 180px;
    }
    
    .calculator-wrapper {
        padding: 1.5rem;
    }
    
    .plan-options-grid, .duration-options-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-modal {
        padding: 1.5rem;
        height: 100%;
        border-radius: 0;
        overflow-y: auto;
    }
    
    .chat-panel {
        width: calc(100vw - 2rem);
        right: 1rem;
        left: 1rem;
        bottom: 5.5rem;
        height: 400px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-contact-col {
        grid-column: span 1;
    }
    
    .bottom-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
