/* ==========================================================================
   NELLAI CCTV & SECURITY SOLUTIONS - Master Stylesheet
   Modern, Mobile-First, Security-Focused & High-Converting Aesthetic
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Mukta+Malar:wght@400;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-dark: #070a12;
    --bg-card: #0f1629;
    --bg-card-hover: #16203a;
    --bg-glass: rgba(15, 22, 41, 0.85);
    
    --primary: #0066ff;
    --primary-glow: rgba(0, 102, 255, 0.4);
    --secondary: #00e676;
    --secondary-glow: rgba(0, 230, 118, 0.35);
    
    --accent-red: #ff3b30;
    --accent-red-glow: rgba(255, 59, 48, 0.4);
    --gold: #ffb703;
    --gold-devotional: #ffd700;
    
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-highlight: rgba(0, 102, 255, 0.3);
    
    /* Layout Variables */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --font-heading: 'Outfit', 'Mukta Malar', sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Mukta Malar', sans-serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-glow: 0 0 30px rgba(0, 102, 255, 0.25);
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Reset & Global */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

/* Devotional Header Band */
.devotional-bar {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 50%, #6a11cb 100%);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    color: var(--gold-devotional);
    text-align: center;
    padding: 8px 16px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1001;
}

.devotional-bar span {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Quick Utility Info Bar */
.top-info-bar {
    background: rgba(7, 10, 18, 0.95);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    z-index: 1000;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-item i {
    color: var(--primary);
}

.locations-tag {
    background: rgba(0, 230, 118, 0.1);
    color: var(--secondary);
    padding: 2px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 230, 118, 0.3);
    font-weight: 600;
}

/* Header & Navigation */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    padding: 14px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-logo-box {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 14px;
    background: #060913;
    border: 2px solid var(--primary);
    box-shadow: 0 0 16px var(--primary-glow);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

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

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

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

.brand-tagline {
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.proprietor-badge {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Nav Menu */
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 4px 0;
}

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

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

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

.nav-cta-btns {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Nav Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 4px;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #0040be 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 102, 255, 0.6);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6);
}

.btn-danger {
    background: linear-gradient(135deg, var(--accent-red) 0%, #b31d16 100%);
    color: white;
    box-shadow: 0 4px 15px var(--accent-red-glow);
}

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

.btn-outline:hover {
    background: rgba(0, 102, 255, 0.1);
    border-color: var(--primary);
}

.btn-pulse {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7); }
    70% { box-shadow: 0 0 0 14px rgba(0, 102, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0); }
}

/* Warning / Alert Banner */
.security-alert-ticker {
    background: rgba(255, 59, 48, 0.12);
    border-top: 1px solid rgba(255, 59, 48, 0.3);
    border-bottom: 1px solid rgba(255, 59, 48, 0.3);
    padding: 10px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #ff8a84;
    text-align: center;
}

.alert-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent-red);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--accent-red);
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    from { opacity: 0.3; }
    to { opacity: 1; }
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 60px 5% 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, rgba(7, 10, 18, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.3);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #0066ff 0%, #00e676 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle-ta {
    font-size: 1.25rem;
    color: var(--gold-devotional);
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 35px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-item p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* HERO VISUAL / INTERACTIVE CAMERA PREVIEW CARD */
.hero-visual {
    position: relative;
    z-index: 2;
}

.camera-preview-box {
    background: var(--bg-card);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-glow), var(--shadow-card);
    position: relative;
}

.preview-header {
    background: rgba(10, 15, 29, 0.9);
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.cam-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
}

.cam-status .rec-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: blink 1s infinite alternate;
}

.cam-timestamp {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.preview-body {
    position: relative;
    height: 320px;
    background: #000000;
    overflow: hidden;
}

.preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: brightness(0.9);
}

/* Night Vision Overlay Filter */
.preview-body.night-mode .preview-img {
    filter: sepia(1) hue-rotate(80deg) saturate(3) contrast(1.3) brightness(0.7);
}

.night-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 230, 118, 0.1) 0%, rgba(0,0,0,0.6) 80%);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-fast);
}

.preview-body.night-mode .night-grid-overlay {
    opacity: 1;
}

.camera-crosshair {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 1px dashed rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
}

.camera-crosshair::before, .camera-crosshair::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
}

.camera-crosshair::before {
    top: 50%; left: 10px; right: 10px; height: 1px;
}
.camera-crosshair::after {
    left: 50%; top: 10px; bottom: 10px; width: 1px;
}

.motion-alert-popup {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 59, 48, 0.95);
    color: white;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.5);
    transform: translateY(60px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.motion-alert-popup.active {
    transform: translateY(0);
    opacity: 1;
}

.preview-controls {
    background: var(--bg-card);
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    gap: 10px;
}

.control-btn-group {
    display: flex;
    gap: 8px;
}

.ctrl-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.ctrl-btn:hover, .ctrl-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* PSYCHOLOGICAL URGENCY BANNER - "WHY CCTV IS MANDATORY NOW" */
.urgency-section {
    padding: 60px 5%;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1222 100%);
}

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

.section-subtitle {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.section-title-ta {
    font-size: 1.15rem;
    color: var(--gold-devotional);
    font-weight: 700;
    margin-bottom: 16px;
}

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

.urgency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.urgency-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.urgency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-red);
    transition: var(--transition-fast);
}

.urgency-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 59, 48, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.urgency-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 59, 48, 0.1);
    color: var(--accent-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.urgency-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.urgency-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CORE SERVICES SECTION */
.services-section {
    padding: 80px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 32px 26px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-highlight);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-hover);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon-wrapper {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.service-title-ta {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 12px;
}

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

.service-bullets {
    list-style: none;
    margin-bottom: 24px;
}

.service-bullets li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-bullets li i {
    color: var(--secondary);
    font-size: 0.75rem;
}

/* SMART PACKAGE ESTIMATOR / CALCULATOR */
.calculator-section {
    padding: 80px 5%;
    background: rgba(15, 22, 41, 0.6);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.calc-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-card);
}

.calc-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.calc-group label {
    font-weight: 700;
    font-size: 1.05rem;
    color: white;
    margin-bottom: 12px;
    display: block;
}

.property-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
}

.prop-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.prop-option i {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: block;
}

.prop-option span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.prop-option.selected, .prop-option:hover {
    background: rgba(0, 102, 255, 0.15);
    border-color: var(--primary);
}

.prop-option.selected i, .prop-option.selected span {
    color: var(--primary);
}

.calc-result-card {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 230, 118, 0.1) 100%);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.result-info h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
}

.result-info p {
    font-size: 0.9rem;
    color: var(--secondary);
}

/* READY PACKAGES SHOWCASE */
.packages-section {
    padding: 80px 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.package-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.25);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.package-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
}

.package-cams {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 16px;
}

.package-price {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.package-price span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.package-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features li i {
    color: var(--secondary);
}

/* ABOUT PROPRIETOR & LOCATIONS */
.about-section {
    padding: 80px 5%;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-card);
}

.proprietor-tag {
    color: var(--gold-devotional);
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: block;
}

.location-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.loc-chip {
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid var(--border-highlight);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* CONTACT SECTION & FORM */
.contact-section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-detail-item h5 {
    font-size: 0.95rem;
    color: white;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-detail-item p, .contact-detail-item a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-decoration: none;
    line-height: 1.5;
}

.contact-detail-item a:hover {
    color: var(--primary);
}

.contact-form-box {
    background: var(--bg-card);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    padding: 36px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    background: rgba(255, 255, 255, 0.08);
}

/* FOOTER */
.footer {
    background: #04060c;
    border-top: 1px solid var(--border-color);
    padding: 50px 5% 100px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
}

/* FLOATING MOBILE ACTION BAR (HIGH CONVERSION) */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-highlight);
    padding: 12px 16px;
    display: flex;
    gap: 12px;
    z-index: 1000;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.6);
}

.mobile-sticky-bar .btn {
    flex: 1;
    padding: 14px 8px;
    font-size: 0.9rem;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 30px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }

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

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

@media (max-width: 768px) {
    /* Devotional Bar Mobile */
    .devotional-bar {
        font-size: 0.85rem;
        padding: 6px 10px;
    }

    /* Top Utility Info Bar Mobile */
    .top-info-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
        padding: 6px 12px;
        font-size: 0.78rem;
    }

    .top-info-bar .info-item:nth-child(2) {
        display: none; /* Hide duplicate email text on small screens to keep top bar ultra-clean */
    }

    /* Mobile Navbar Header */
    .navbar {
        padding: 10px 12px;
        position: sticky;
        top: 0;
        z-index: 999;
    }

    .brand-container {
        gap: 8px;
    }

    .brand-logo-box {
        width: 48px;
        height: 48px;
        border-radius: 10px;
    }

    .brand-title {
        font-size: 1rem;
        line-height: 1.1;
    }

    .brand-tagline {
        font-size: 0.65rem;
    }

    .proprietor-badge {
        font-size: 0.68rem;
    }

    .proprietor-badge .prop-phone {
        display: none; /* Hide secondary phone string in header title to keep mobile header clean */
    }

    .nav-cta-btns {
        gap: 6px;
    }

    .nav-cta-btns .btn-primary {
        padding: 8px 14px;
        font-size: 0.85rem;
        border-radius: var(--radius-sm);
        white-space: nowrap;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        border: 1px solid var(--border-color);
        font-size: 1.2rem;
    }
    
    /* Fullscreen/Slide-down Mobile Drawer Menu */
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(7, 10, 18, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 30px 24px;
        gap: 18px;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--border-color);
        overflow-y: auto;
        z-index: 998;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
    }

    .package-card.popular {
        transform: none;
    }
}

@media (max-width: 480px) {
    .brand-logo-box {
        width: 44px;
        height: 44px;
    }

    .brand-title {
        font-size: 0.92rem;
    }

    .brand-tagline {
        font-size: 0.6rem;
    }

    .proprietor-badge {
        display: none; /* Hide detailed badge line on tiny mobile screens to avoid overflow */
    }

    .nav-cta-btns .btn-primary span {
        display: none; /* Hide button text, show call icon on micro screens */
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle-ta {
        font-size: 1.05rem;
    }
}
