/* 
   Neera Productions - Global Design System
   Ref: Minimal Modern Glassmorphic style with Plus Jakarta Sans
*/

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

:root {
    /* Color Palette */
    --color-bg-dark: #0A0A0A;
    --color-gold-start: #EAA10F; /* Rich gold matching logo midtone */
    --color-gold-end: #D97706;   /* Warm golden orange matching logo base */
    --color-text-white: #ffffff;
    --color-text-grey: #d1d5db;
    --color-text-muted: #9ca3af;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-border: rgba(255, 255, 255, 0.1);
    
    /* Fonts */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    
    /* Layout Variables */
    --spacing-section: 120px;
    --border-radius-pill: 50px;
    --border-radius-card: 16px;
    --border-radius-input: 12px;
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* GPU Hardware Acceleration to prevent scroll lagging over videos and heavy blur spots */
.hero-section, 
.pricing-hero,
.portfolio-card, 
.video-card,
.testimonial-card,
.footer-map-container, 
.cta-section,
.faq-section,
.comparison-section-dark,
.pricing-section,
.stats-glass-card,
.dark-form-card {
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}

body {
    overflow-x: hidden;
    font-family: var(--font-primary);
}

body, button, input, select, textarea, a, span, p, li, label, th, td, div {
    font-family: var(--font-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-text-white);
}

p {
    font-family: var(--font-primary);
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-grey);
}

a {
    text-decoration: none; /* CRITICAL: Remove default browser underlines */
    color: inherit;
    transition: var(--transition-smooth);
}

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

/* Button UI */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
}

.btn-gold {
    background: linear-gradient(to right, var(--color-gold-start), var(--color-gold-end));
    color: var(--color-black);
}

.btn-gold:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-black);
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-text-white);
}

/* Global Gold Highlights (Consistent branding across components) */
.highlight-gold-gradient {
    color: var(--color-gold-start);
}
.highlight-gold-text {
    color: var(--color-gold-end);
}

/* About Stats Section (Dark Strip below About Us) */
/* About Stats Section (Dark Strip below About Us) */
.about-stats-section {
    background-color: #0A0A0A;
    padding: 22px 0; /* Compressed padding */
    width: 100%;
    position: relative;
    z-index: 20;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

/* Subtle Gold Grid overlay on dark stats background */
.about-stats-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
    background-image: 
        linear-gradient(rgba(234, 161, 15, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(234, 161, 15, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
}

.about-stats-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
}

.about-stats-glass-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
    max-width: 860px; /* Reduced container width */
    padding: 4px 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 5;
}

.about-stat-col {
    padding: 14px 10px; /* Compressed padding */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.about-stat-col:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.about-stat-value {
    font-size: 1.7rem; /* Reduced font size */
    font-weight: 900;
    color: var(--color-gold-start);
    line-height: 1.1;
    background: linear-gradient(135deg, var(--color-gold-start), var(--color-gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stat-tag {
    font-size: 0.58rem; /* Reduced font size */
    font-weight: 800;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .about-stats-section {
        padding: 25px 0;
    }

    .about-stats-glass-card {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        padding: 8px 0;
        border-radius: 16px;
    }

    .about-stat-col {
        padding: 15px 10px;
    }

    .about-stat-col:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .about-stat-col:nth-child(even) {
        border-right: none;
    }

    .about-stat-col:nth-child(1),
    .about-stat-col:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .about-stat-value {
        font-size: 1.65rem;
    }

    .about-stat-tag {
        font-size: 0.58rem;
    }
}

/* Vision Section (Light Theme - Split Layout) */
.vision-section {
    background-color: #FAF8F5; /* Warm off-white light bg */
    background-image: 
        linear-gradient(rgba(234, 161, 15, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(234, 161, 15, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    background-position: center top;
    color: var(--color-black);
    padding: 60px 0 25px 0; /* Reduced bottom padding */
    width: 100%;
    position: relative;
    z-index: 20;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

/* Golden radial glow spot behind text */
.vision-glow-spot {
    position: absolute;
    top: 5%;
    left: 2%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(234, 161, 15, 0.045) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.vision-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 5;
}

.vision-split-layout {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 70px;
    align-items: center;
}

.vision-left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.vision-chip {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(234, 161, 15, 0.35) !important;
    color: #b45309 !important; /* Deep gold */
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(234, 161, 15, 0.03);
}

.vision-title {
    font-family: var(--font-primary);
    font-size: 2.3rem;
    font-weight: 900;
    color: #0b0c0d;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.vision-gold-bar {
    width: 45px;
    height: 3px;
    background: linear-gradient(135deg, var(--color-gold-start), var(--color-gold-end));
    margin: 20px 0;
    border-radius: 1.5px;
}

.vision-desc {
    font-family: var(--font-primary);
    margin-bottom: 30px;
}

.vision-desc p {
    color: #374151; /* High contrast slate gray for perfect readability on light BG */
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.vision-desc p:last-child {
    margin-bottom: 0;
}

.vision-active-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 18px;
    border-radius: var(--border-radius-pill);
    font-size: 0.68rem;
    font-weight: 800;
    color: #2c2e30;
    letter-spacing: 0.06em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.vision-active-badge .green-dot {
    width: 6px;
    height: 6px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}

/* Stacked cards on Right Side */
.vision-right-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vision-pillar-card {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.045);
    border-radius: 24px;
    padding: 30px 32px;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.015);
}

.vision-pillar-card:hover {
    transform: translateY(-4px);
    border-color: rgba(234, 161, 15, 0.25);
    box-shadow: 0 16px 36px rgba(234, 161, 15, 0.07);
}

.pillar-num-badge {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--color-gold-start);
    font-size: 0.95rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.025);
}

.pillar-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.pillar-card-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #0c0d0e;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    line-height: 1.2;
}

.pillar-card-desc {
    font-size: 0.78rem;
    color: #4b5563;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 12px;
}

.pillar-card-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--color-gold-start);
    letter-spacing: 0.06em;
}

.pillar-card-tags .tag-separator {
    color: rgba(0, 0, 0, 0.15);
}

/* Why Choose Us Right Side Image Wrapper */
.why-choose-us-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-us-image-container {
    position: relative;
    width: 100%;
    max-width: 580px;
    height: 440px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
}

.why-choose-us-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-choose-us-image-container:hover .why-choose-us-img {
    transform: scale(1.03);
}

.why-choose-us-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 12, 13, 0.4) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
}

/* Floating Gold Play/Video Icon */
.why-choose-us-icon {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    background: var(--color-gold-start);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(234, 161, 15, 0.3);
    z-index: 3;
    transition: all 0.3s ease;
}

.why-choose-us-image-container:hover .why-choose-us-icon {
    transform: scale(1.1);
    background-color: var(--color-gold-end);
}

.why-choose-us-icon svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 1024px) {
    .vision-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .vision-section {
        padding: 50px 0;
    }

    .why-choose-us-image-container {
        height: 320px;
    }

    .vision-container {
        padding: 0 20px;
    }

    .vision-title {
        font-size: 1.85rem;
    }

    .vision-desc {
        font-size: 0.85rem;
        margin-bottom: 24px;
    }

    .vision-pillar-card {
        padding: 24px 20px;
        gap: 16px;
        border-radius: 20px;
    }

    .pillar-num-badge {
        width: 44px;
        height: 44px;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .pillar-card-title {
        font-size: 0.82rem;
    }

    .pillar-card-desc {
        font-size: 0.75rem;
    }
}

/* Expertise Section (Light Theme) */
.expertise-section {
    background-color: #FAF8F5; /* Warm off-white light bg */
    color: var(--color-black);
    padding: 45px 0 25px 0; /* Reduced top padding from 70px to 45px */
    width: 100%;
    position: relative;
    z-index: 20;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.expertise-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.9;
    background-image: 
        linear-gradient(rgba(234, 161, 15, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(234, 161, 15, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    background-position: center top;
}

.expertise-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expertise-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-bottom: 45px;
}

.expertise-chip {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(234, 161, 15, 0.35) !important;
    color: #b45309 !important; /* Deep gold */
    box-shadow: 0 2px 8px rgba(234, 161, 15, 0.03);
    align-self: center !important; /* Center the chip overrides flex-start */
}

.expertise-title {
    font-family: var(--font-primary);
    font-size: 2.1rem;
    font-weight: 900;
    color: #0b0c0d;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-top: 8px;
}

.expertise-title span {
    background: linear-gradient(135deg, var(--color-gold-start), var(--color-gold-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.expertise-subtitle {
    font-family: var(--font-primary);
    font-size: 0.92rem;
    color: #4b5563; /* Slate gray */
    line-height: 1.55;
    font-weight: 500;
    max-width: 580px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}

.expertise-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.045);
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.015);
}

.expertise-card:hover {
    transform: translateY(-5px);
    border-color: rgba(234, 161, 15, 0.25);
    box-shadow: 0 15px 35px rgba(234, 161, 15, 0.08);
}

.expertise-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(234, 161, 15, 0.06);
    color: var(--color-gold-start);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.expertise-card-icon svg {
    width: 22px;
    height: 22px;
}

.expertise-card-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0c0d0e;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
}

.expertise-card-desc {
    font-size: 0.78rem;
    color: #4b5563;
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .expertise-section {
        padding: 50px 0;
    }

    .expertise-title {
        font-size: 1.65rem;
    }

    .expertise-header {
        margin-bottom: 30px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .expertise-card {
        padding: 28px 20px;
    }
}

/* Global Mobile Typography Overrides */
@media (max-width: 768px) {
    .hero-title,
    .trusted-title,
    .why-title,
    .portfolio-main-title,
    .process-title,
    .expertise-title,
    .testimonials-title,
    .faq-title,
    .cta-title,
    .pricing-hero-title,
    .pricing-section-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem) !important;
        line-height: 1.2 !important;
    }
}
