/* =========================================
   1. CORE VARIABLES & RESET
   ========================================= */
:root {
    --primary-color: #00f2ff;
    /* Cyber Blue */
    --primary-glow: rgba(0, 242, 255, 0.4);
    --secondary-color: #7000ff;
    /* Neon Purple */
    --secondary-glow: rgba(112, 0, 255, 0.4);
    --accent-color: #ffffff;
    --dark-bg: #050510;
    --darker-bg: #020205;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-hover: rgba(255, 255, 255, 0.07);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition-speed: 0.3s;
    --header-height: 80px;
    --grid-gap: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   2. TYPOGRAPHY & BUTTONS
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p {
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: -webkit-linear-gradient(#fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transition: 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    color: #fff;
    box-shadow: 0 0 30px var(--primary-glow);
    border-color: transparent;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

/* =========================================
   3. BACKGROUND & UTILS
   ========================================= */
.holox-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 10% 20%, rgba(112, 0, 255, 0.1), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 242, 255, 0.1), transparent 40%);
    pointer-events: none;
}

.holox-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    perspective: 500px;
    transform-style: preserve-3d;
    pointer-events: none;
}

.cursor-light {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: screen;
    transition: transform 0.05s ease;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   4. HEADER & NAV
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(5, 5, 16, 0.7);
    backdrop-filter: blur(15px);
}

.header.scrolled {
    background: rgba(5, 5, 16, 0.95);
    border-bottom: 1px solid var(--primary-color);
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.logo-link img {
    
    height: 80px;
    filter: brightness(0) invert(1);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    color: #fff;
    opacity: 0.8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    background: #0a0a1a;
    z-index: 999;
    padding: 100px 40px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--glass-border);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 18px;
    color: #fff;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

/* =========================================
   5. HERO SECTION (INDEX)
   ========================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-tagline {
    font-family: var(--font-heading);
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
    font-weight: 700;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 900;
}

.hero-title span {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    display: block;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* 3D Hero Elements */
.hero-visual {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    z-index: 1;
}

.orb-container {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.neon-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 30% 30%, transparent, rgba(0, 242, 255, 0.2), var(--secondary-color));
    box-shadow: 0 0 100px rgba(112, 0, 255, 0.5);
    animation: rotateOrb 20s linear infinite;
}

.orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(70deg);
    width: 600px;
    height: 600px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: pulseRing 4s ease-in-out infinite;
    box-shadow: 0 0 20px var(--primary-color);
}

.orb-ring:nth-child(2) {
    width: 500px;
    height: 500px;
    border-color: var(--secondary-color);
    animation-delay: 1s;
    box-shadow: 0 0 20px var(--secondary-color);
}

@keyframes rotateOrb {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulseRing {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) rotateX(70deg) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) rotateX(70deg) scale(1.05);
    }
}

/* =========================================
   6. SERVICES SECTION
   ========================================= */
.services-section {
    padding: 120px 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--card-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
    transition: 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: #fff;
    text-shadow: 0 0 20px var(--primary-color);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.service-link i {
    transition: 0.3s;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* =========================================
   7. INTERACTIVE ROI CALCULATOR
   ========================================= */
.calculator-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(5, 5, 16, 0) 0%, rgba(10, 10, 30, 0.8) 50%, rgba(5, 5, 16, 0) 100%);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.range-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.range-header {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.range-value {
    color: var(--primary-color);
    font-weight: 700;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 15px var(--primary-color);
    transition: 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.calc-results {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(112, 0, 255, 0.1));
    border-radius: 15px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.result-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-color);
    border-right-color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    animation: spinBorder 10s linear infinite reverse;
}

.result-inner {
    animation: spinBorder 10s linear infinite;
    /* Counteract rotation for text */
}

.result-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    font-family: var(--font-heading);
    display: block;
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes spinBorder {
    to {
        transform: rotate(360deg);
    }
}

/* =========================================
   8. PROCESS SECTION (TIMELINE)
   ========================================= */
.process-section {
    padding: 120px 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--secondary-color), var(--primary-color), transparent);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: #050510;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 15px;
    right: -11px;
    z-index: 1;
    box-shadow: 0 0 10px var(--primary-color);
    transition: 0.3s;
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -11px;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    background: #fff;
}

.timeline-content {
    padding: 30px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    position: relative;
    transition: 0.3s;
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.step-num {
    position: absolute;
    top: -20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    font-family: var(--font-heading);
    line-height: 1;
}

.timeline-item:nth-child(odd) .step-num {
    right: 20px;
}

.timeline-item:nth-child(even) .step-num {
    left: 20px;
}

/* =========================================
   9. REPORT / DATA VISUALIZATION
   ========================================= */
.data-section {
    padding: 100px 0;
    background: var(--darker-bg);
    position: relative;
}

.report-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.report-visual {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 30px;
    position: relative;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.chart-bars {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 250px;
    gap: 15px;
}

.bar-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.bar-fill {
    width: 30px;
    background: linear-gradient(to top, var(--secondary-color), var(--primary-color));
    border-radius: 5px 5px 0 0;
    position: relative;
    animation: growBar 2s ease-out forwards;
    transform-origin: bottom;
}

.bar-label {
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

@keyframes growBar {
    from {
        height: 0;
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.data-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.data-feature-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 5px;
    background: rgba(0, 242, 255, 0.1);
    padding: 10px;
    border-radius: 50%;
}

/* =========================================
   10. TESTIMONIALS
   ========================================= */
.testimonials-section {
    padding: 120px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 15px;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 20px;
    right: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: #333;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    overflow: hidden;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.client-details span {
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* =========================================
   11. CTA SECTION
   ========================================= */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIj48ZyBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0wIDQwaDQwVjBIMHY0MHptMjAtMjB2MjBoMjBWMjBIMjB6TTIwIDB2MjBIMFYwQzAgMCAwIDAgMCAweiIgZmlsbD0iIzIyMjIiIGZpbGwtb3BhY2l0eT0iMC4xIi8+PC9nPjwvc3ZnPg==');
    position: relative;
}

.cta-box {
    background: rgba(112, 0, 255, 0.1);
    border: 1px solid var(--secondary-color);
    padding: 60px;
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 50px rgba(112, 0, 255, 0.2);
}

/* =========================================
   12. LEGAL PAGES & SUBPAGES COMMON
   ========================================= */
.subpage .page-header {
    padding-top: 160px;
    padding-bottom: 60px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 15px;
    background: -webkit-linear-gradient(#fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.breadcrumbs {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-content {
    padding: 40px 0 100px;
}

.glass-panel {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Contact Form Specifics */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    padding: 0;
    overflow: hidden;
}

.contact-info-panel {
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.2), rgba(0, 0, 0, 0));
    padding: 50px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.method-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-form-wrapper {
    padding: 50px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 5px;
    color: #fff;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
}

/* =========================================
   13. FOOTER
   ========================================= */
.footer {
    background: #02020a;
    border-top: 1px solid var(--glass-border);
    padding-top: 80px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);

}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 35px;
    height: 35px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.social-link:hover {
    background: var(--primary-color);
    color: #000;
    border-color: var(--primary-color);
}

.footer-col-title {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* =========================================
   14. ANIMATIONS & UTILS
   ========================================= */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
    animation-play-state: paused;
}

/* NEW: Hero content should animate immediately without JS waiting */
.hero-content.animate-in,
.hero-tagline.animate-in,
.hero-title.animate-in,
.hero-description.animate-in,
.hero-btns.animate-in {
    animation-play-state: running !important;
}

[data-anim-delay="0.1"] {
    animation-delay: 0.1s;
}

[data-anim-delay="0.2"] {
    animation-delay: 0.2s;
}

[data-anim-delay="0.3"] {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.popup:target {
    opacity: 1;
    pointer-events: auto;
}

.popup-content {
    background: #0a0a1a;
    width: 400px;
    padding: 40px;
    text-align: center;
    position: relative;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.2);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #fff;
}

/* =========================================
   15. RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-visual {
        display: none;
    }

    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .report-container {
        grid-template-columns: 1fr;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(odd) {
        text-align: left;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 22px;
        right: auto;
    }

    .timeline-item:nth-child(odd) .step-num {
        left: 20px;
        right: auto;
        top: 0;
        opacity: 0.1;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}