/* ==========================================================================
   A8 TIGER FITNESS - PREMIUM CSS DESIGN SYSTEM
   Theme: "Tiger Premium" (Obsidian Dark & Glowing Tiger Orange/Gold)
   ========================================================================== */

/* 1. CSS CUSTOM PROPERTIES */
:root {
    --bg-dark-obsidian: #0a0a0a;
    --bg-dark-card: #121212;
    --bg-dark-hover: #1c1c1c;
    --primary-orange: #ff6600;
    --primary-orange-hover: #ff8800;
    --accent-gold: #ffaa00;
    --whatsapp-green: #25d366;
    --whatsapp-green-hover: #22c35e;
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --text-muted: #666666;
    --glass-bg: rgba(18, 18, 18, 0.8);
    --glass-border: rgba(255, 102, 0, 0.15);
    --glass-border-focus: rgba(255, 102, 0, 0.4);
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --glow-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
    --glow-shadow-heavy: 0 0 30px rgba(255, 102, 0, 0.6);
}

/* 2. GLOBAL RESET & BASE STYLES */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark-obsidian);
    color: var(--text-primary);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-dark-obsidian);
    padding-bottom: 0; /* Adjusted in JS / Media Query for mobile action bar */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark-obsidian);
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange);
}

a {
    color: inherit;
    text-decoration: none;
}

button, input {
    font-family: inherit;
}

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

/* 3. LAYOUT UTILITIES */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

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

.section-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--primary-orange);
    text-transform: uppercase;
    margin-bottom: 12px;
    background: rgba(255, 102, 0, 0.1);
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

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

/* 4. BUTTON SYSTEM */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    gap: 8px;
    min-height: 48px; /* Safe mobile touch target */
}

.btn-primary {
    background: var(--primary-orange);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.25);
}

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

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.15);
    background: rgba(255, 102, 0, 0.05);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: 10px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-icon {
    flex-shrink: 0;
}

.whatsapp-icon {
    color: var(--whatsapp-green);
}

.btn-secondary:hover .whatsapp-icon {
    color: #fff;
    background: var(--whatsapp-green);
    border-radius: 50%;
    padding: 2px;
}

/* 5. STICKY HEADER NAVIGATION */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.main-header.scrolled {
    background: rgba(5, 5, 5, 0.95);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 102, 0, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
}

.logo-accent {
    color: #fff;
    background: var(--primary-orange);
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 6px;
    font-style: italic;
    font-weight: 900;
}

.logo-highlight {
    color: var(--primary-orange);
    margin-left: 5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-orange);
    transition: width var(--transition-normal);
}

.nav-links a:hover {
    color: #fff;
}

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

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px;
    min-height: 48px;
    min-width: 48px;
    align-items: center;
    justify-content: center;
}

/* 6. MOBILE DRAWER MENU */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--bg-dark-card);
    z-index: 1100;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    padding: 30px 24px;
    transition: right var(--transition-normal);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
}

.drawer-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 8px;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.drawer-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 12px;
}

.drawer-links a:hover {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
}

.drawer-cta-btn {
    margin-top: 20px;
}

.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 1050;
    display: none;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.drawer-backdrop.active {
    display: block;
    opacity: 1;
}

/* 7. HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 40%, rgba(10, 10, 10, 0.75) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    width: 100%;
    z-index: 2;
}

.hero-content {
    max-width: 680px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    background: linear-gradient(90deg, rgba(255, 102, 0, 0.2), rgba(255, 170, 0, 0.05));
    border-left: 3px solid var(--primary-orange);
    padding: 6px 14px;
    border-radius: 0 4px 4px 0;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 4.2rem;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.text-glow {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.8);
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--primary-orange);
    text-shadow: 0 0 30px rgba(255, 102, 0, 0.3);
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* 8. HIGHLIGHTS STRIP */
.highlights-section {
    background: var(--bg-dark-card);
    border-top: 1px solid rgba(255, 102, 0, 0.1);
    border-bottom: 1px solid rgba(255, 102, 0, 0.1);
    position: relative;
    z-index: 10;
}

.highlights-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 24px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.highlight-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.highlight-value {
    display: block;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 6px;
}

.highlight-value .star {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 170, 0, 0.5);
}

.highlight-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.highlight-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}

/* 9. SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.service-card {
    background: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 102, 0, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(255, 102, 0, 0.05);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 102, 0, 0.08);
    border: 1px solid rgba(255, 102, 0, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    margin-bottom: 24px;
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--primary-orange);
    color: #000;
    box-shadow: var(--glow-shadow);
}

.service-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

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

/* 10. INTERACTIVE PRICING CALCULATOR */
.pricing-widget {
    max-width: 640px;
    margin: 0 auto;
}

.pricing-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 12px;
    margin-bottom: 30px;
    justify-content: space-between;
}

.pricing-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    padding: 12px 6px;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
    min-height: 48px; /* Mobile safe targets */
}

.pricing-tab.active {
    background: var(--primary-orange);
    color: #000;
    box-shadow: var(--glow-shadow);
}

.pricing-card {
    background: var(--bg-dark-card);
    border: 1px solid rgba(255, 102, 0, 0.2);
    box-shadow: var(--glow-shadow);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    animation: glow-pulse 4s infinite alternate;
}

@keyframes glow-pulse {
    0% {
        box-shadow: 0 0 15px rgba(255, 102, 0, 0.1);
        border-color: rgba(255, 102, 0, 0.15);
    }
    100% {
        box-shadow: 0 0 30px rgba(255, 102, 0, 0.25);
        border-color: rgba(255, 102, 0, 0.35);
    }
}

.pricing-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.plan-display-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
}

.plan-badge {
    background: var(--accent-gold);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.pricing-price-box {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}

.pricing-price-box .currency {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--primary-orange);
    margin-right: 4px;
}

.pricing-price-box .price-value {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 4.8rem;
    line-height: 1;
    letter-spacing: -0.03em;
    transition: opacity var(--transition-fast);
}

.pricing-price-box .period {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-left: 8px;
}

.pricing-total-saving {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.pricing-features {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.check-icon {
    color: var(--primary-orange);
    flex-shrink: 0;
}

.pricing-features li.locked {
    color: var(--text-muted);
}

.lock-icon {
    color: var(--text-muted);
    flex-shrink: 0;
}

/* 11. TESTIMONIALS CARDS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.testimonial-card {
    background: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: var(--accent-gold);
    font-size: 1.15rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
}

.reviewer-status {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* 12. LOCATION & TIMINGS MAP */
.location-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.map-container {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bg-dark-card);
    position: relative;
}

.static-map-placeholder {
    width: 100%;
    height: 100%;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.address-block, .timings-block {
    display: flex;
    gap: 20px;
}

.address-icon, .timings-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 102, 0, 0.08);
    border: 1px solid rgba(255, 102, 0, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.address-text h3, .timings-text h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.address-text p, .timings-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-actions {
    margin-top: 10px;
}

/* 13. FOOTER */
.main-footer {
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 30px 24px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.credits {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.vipin-glow {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* 14. GLASSMORPHIC LEAD CAPTURE MODAL */
.lead-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

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

.lead-modal-card {
    background: rgba(18, 18, 18, 0.85);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), var(--glow-shadow);
    transform: translateY(30px) scale(0.95);
    transition: transform var(--transition-normal);
}

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

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color var(--transition-fast);
}

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

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

.modal-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    background: rgba(255, 170, 0, 0.1);
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.modal-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    min-height: 48px; /* Touch friendly */
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.15);
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.phone-input-wrapper:focus-within {
    border-color: var(--primary-orange);
    box-shadow: 0 0 10px rgba(255, 102, 0, 0.15);
}

.country-code {
    padding-left: 16px;
    padding-right: 8px;
    color: var(--text-secondary);
    font-weight: 600;
}

.phone-input-wrapper input {
    border: none;
    background: transparent;
    padding-left: 0;
    flex: 1;
    width: 100%;
}

.phone-input-wrapper input:focus {
    box-shadow: none;
}

/* 15. SUCCESS TOAST */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-dark-card);
    border: 1px solid rgba(37, 211, 102, 0.3);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border-radius: 8px;
    padding: 16px 24px;
    z-index: 2000;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all var(--transition-normal);
}

.toast-notification.active {
    opacity: 1;
    transform: translateY(0);
}

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

.toast-icon {
    color: var(--whatsapp-green);
}

.toast-message {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
}

/* 16. MOBILE STICKY BOTTOM BAR */
.mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 950;
    display: none; /* Desktop hidden */
    grid-template-columns: 1fr 1.2fr;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 10px 16px 14px 16px; /* Extra bottom padding for iOS home indicator */
    gap: 12px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.call-action {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-action {
    background: var(--whatsapp-green);
    color: #fff;
    border: none;
}

.whatsapp-action:hover {
    background: var(--whatsapp-green-hover);
}

/* ==========================================================================
   17. RESPONSIVE MEDIA QUERIES (BREAKPOINTS)
   ========================================================================== */

/* Medium Devices (Tablets, small laptops, up to 992px) */

@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3.4rem;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-container {
        height: 350px;
        order: 2;
    }
    
    .contact-details {
        order: 1;
    }
}

/* Mobile Devices (Phones, up to 768px) */
@media (max-width: 768px) {
    body {
        padding-bottom: 72px; /* Prevent bottom bar clipping page footer */
    }
    
    .section-container {
        padding: 50px 16px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .nav-links, .main-header .btn {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .hero-section {
        min-height: calc(100vh - 60px);
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.98rem;
        margin-bottom: 28px;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .highlights-container {
        padding: 20px 12px;
        gap: 16px;
    }
    
    .highlight-item {
        min-width: 120px;
        flex: 1 1 40%;
    }
    
    .highlight-value {
        font-size: 1.6rem;
    }
    
    .highlight-label {
        font-size: 0.72rem;
    }
    
    .highlight-divider {
        display: none; /* Hide dividers on wrap grids */
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        padding: 24px 20px;
    }
    
    .pricing-tabs {
        padding: 4px;
        margin-bottom: 20px;
        border-radius: 8px;
    }
    
    .pricing-tab {
        font-size: 0.8rem;
        padding: 10px 4px;
        border-radius: 6px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-price-box .price-value {
        font-size: 3.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    /* Show Sticky Mobile Quick Actions Bar */
    .mobile-action-bar {
        display: grid;
    }
    
    .lead-modal-card {
        padding: 30px 20px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
}

/* Small Screen Adjustments */
@media (max-width: 360px) {
    .hero-title {
        font-size: 2.1rem;
    }
    
    .pricing-price-box .price-value {
        font-size: 2.8rem;
    }
}
