/* ============================================
   BUENA VIDA CONSULTING - PREMIUM DARK GLASSMORPHISM
   Credit Repair Theme | Green Credit Lines
   ============================================ */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Core Dark Palette */
    --bg-primary: #0a0e1a;
    --bg-secondary: #0d1225;
    --bg-tertiary: #111833;
    --bg-card: rgba(255, 255, 255, 0.05);

    /* Green Credit Accent */
    --green-primary: #00e68a;
    --green-glow: #00ff99;
    --green-dark: #00b368;
    --green-muted: rgba(0, 230, 138, 0.15);

    /* Supporting Colors */
    --gold-accent: #f5c542;
    --red-poor: #ff4d6a;
    --amber-fair: #ffaa33;
    --cyan-accent: #00d4ff;

    /* Text */
    --text-primary: #f0f4f8;
    --text-secondary: rgba(240, 244, 248, 0.7);
    --text-muted: rgba(240, 244, 248, 0.45);

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.15);
    --glass-blur: 20px;

    /* Shadows & Glows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --glow-green: 0 0 30px rgba(0, 230, 138, 0.3);
    --glow-green-strong: 0 0 60px rgba(0, 230, 138, 0.4), 0 0 120px rgba(0, 230, 138, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION - Floating Glass Navbar
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.95);
    box-shadow: 0 4px 30px rgba(0, 230, 138, 0.08);
    border-bottom-color: rgba(0, 230, 138, 0.15);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(0, 230, 138, 0.3));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0, 230, 138, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-primary);
    box-shadow: 0 0 8px var(--green-primary);
    transition: width 0.3s ease;
}

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

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

.login-btn {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: var(--bg-primary) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.login-btn::after {
    display: none;
}

.login-btn:hover {
    box-shadow: var(--glow-green);
    transform: translateY(-2px);
    color: var(--bg-primary) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION - Dark with Green Glow
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    color: white;
    overflow: hidden;
}

/* Animated gradient mesh background */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 230, 138, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 230, 138, 0.05) 0%, transparent 50%);
    animation: meshFloat 15s ease-in-out infinite;
}

/* Grid overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 230, 138, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 230, 138, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

/* Floating green credit line accents */
.hero .credit-line-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero .credit-line-bg .line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
    opacity: 0.15;
    animation: creditLineSlide 8s linear infinite;
}

.hero .credit-line-bg .line:nth-child(1) { top: 20%; width: 40%; left: -40%; animation-delay: 0s; }
.hero .credit-line-bg .line:nth-child(2) { top: 40%; width: 30%; left: -30%; animation-delay: 2s; }
.hero .credit-line-bg .line:nth-child(3) { top: 60%; width: 50%; left: -50%; animation-delay: 4s; }
.hero .credit-line-bg .line:nth-child(4) { top: 80%; width: 35%; left: -35%; animation-delay: 6s; }
.hero .credit-line-bg .line:nth-child(5) { top: 30%; width: 25%; left: -25%; animation-delay: 1s; opacity: 0.1; }
.hero .credit-line-bg .line:nth-child(6) { top: 70%; width: 45%; left: -45%; animation-delay: 3s; opacity: 0.1; }

.hero-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff, var(--green-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.9rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: var(--bg-primary);
    box-shadow: 0 4px 15px rgba(0, 230, 138, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-green-strong);
}

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

.btn-secondary:hover {
    background: rgba(0, 230, 138, 0.1);
    box-shadow: var(--glow-green);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(0, 230, 138, 0.4);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--green-primary);
    border-radius: 4px;
    animation: scroll 2s infinite;
    box-shadow: 0 0 6px var(--green-primary);
}

/* ============================================
   CREDIT METER - Enhanced Glowing
   ============================================ */
.credit-meter-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeInUp 1.2s ease;
}

.credit-meter {
    position: relative;
    width: 300px;
    height: 200px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 25px rgba(0, 230, 138, 0.25));
}

.credit-meter-svg {
    width: 100%;
    height: 100%;
}

.meter-bg {
    opacity: 0.15;
}

.meter-progress {
    transition: stroke-dashoffset 0.1s ease;
    filter: drop-shadow(0 0 6px rgba(0, 230, 138, 0.6));
}

.credit-score-display {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.score-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(0, 230, 138, 0.4);
    transition: color 0.3s ease;
}

.score-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.score-status {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.score-status.poor { color: var(--red-poor); text-shadow: 0 0 15px rgba(255, 77, 106, 0.5); }
.score-status.fair { color: var(--amber-fair); text-shadow: 0 0 15px rgba(255, 170, 51, 0.5); }
.score-status.good { color: #fbbf24; text-shadow: 0 0 15px rgba(251, 191, 36, 0.5); }
.score-status.very-good { color: #34d399; text-shadow: 0 0 15px rgba(52, 211, 153, 0.5); }
.score-status.excellent { color: var(--green-primary); text-shadow: 0 0 20px rgba(0, 230, 138, 0.6); }

.meter-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* ============================================
   SECTIONS - Common Styles
   ============================================ */
section {
    padding: 6rem 0;
    position: relative;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--green-primary);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--green-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 1rem auto 0;
}

/* ============================================
   SERVICES SECTION - Glass Cards
   ============================================ */
.services {
    background: var(--bg-secondary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
    opacity: 0.3;
}

.service-main {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 230, 138, 0.03), transparent);
    transition: left 0.7s ease;
}

.service-main:hover::before {
    left: 100%;
}

.service-main:hover {
    border-color: rgba(0, 230, 138, 0.25);
    box-shadow: var(--glow-green), var(--shadow-lg);
    transform: translateY(-5px);
}

.service-main-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-muted);
    border-radius: 16px;
    border: 1px solid rgba(0, 230, 138, 0.2);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--green-primary);
    fill: none;
    stroke-width: 1.5;
    filter: drop-shadow(0 0 4px rgba(0, 230, 138, 0.4));
}

.service-main h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-main > .service-main-content > p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.service-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.service-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-primary);
    box-shadow: 0 0 8px var(--green-primary);
}

.service-list li:hover {
    color: var(--text-primary);
}

.business-service {
    background: linear-gradient(135deg, rgba(0, 230, 138, 0.04), rgba(0, 212, 255, 0.02));
    border-color: rgba(0, 230, 138, 0.1);
}

.business-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.business-service-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.business-service-item:hover {
    border-color: rgba(0, 230, 138, 0.2);
    background: rgba(0, 230, 138, 0.04);
}

.business-service-item h4 {
    color: var(--green-primary);
    font-size: 1.15rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.business-service-item ul {
    list-style: none;
}

.business-service-item ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.business-service-item ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 1px;
    background: var(--green-primary);
    box-shadow: 0 0 4px var(--green-primary);
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 230, 138, 0.2);
    box-shadow: var(--glow-green);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-muted);
    border-radius: 14px;
    border: 1px solid rgba(0, 230, 138, 0.15);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--green-primary);
    fill: none;
    stroke-width: 1.5;
}

.feature-card h4 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--bg-primary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 230, 138, 0.2), transparent);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary), var(--green-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--glass-bg);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-item:hover {
    border-color: rgba(0, 230, 138, 0.2);
    box-shadow: var(--glow-green);
    transform: translateY(-3px);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--green-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 230, 138, 0.3);
}

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

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
    opacity: 0.3;
}

/* Ambient glow behind testimonials */
.testimonials::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 230, 138, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials .section-title,
.testimonials .section-subtitle {
    color: var(--text-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 2rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green-primary), var(--cyan-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 230, 138, 0.2);
    box-shadow: var(--glow-green), var(--shadow-lg);
}

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

.testimonial-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    color: var(--text-secondary);
}

.testimonial-author {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.testimonial-stars {
    font-size: 1.1rem;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(245, 197, 66, 0.3);
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

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

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--bg-primary);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 230, 138, 0.2), transparent);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:hover {
    border-color: rgba(0, 230, 138, 0.2);
    box-shadow: var(--glow-green);
}

.contact-item h3 {
    color: var(--green-primary);
    margin-bottom: 1rem;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item h3 svg {
    width: 22px;
    height: 22px;
    stroke: var(--green-primary);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-item a {
    color: var(--green-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--green-glow);
    text-shadow: 0 0 8px rgba(0, 230, 138, 0.3);
}

.contact-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green-primary), var(--cyan-accent), var(--green-primary));
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300e68a' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(0, 230, 138, 0.1), 0 0 15px rgba(0, 230, 138, 0.1);
    background: rgba(255, 255, 255, 0.06);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    margin-top: 0.5rem;
    width: 100%;
    padding: 1rem;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.footer-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px rgba(0, 230, 138, 0.2));
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-section a:hover {
    color: var(--green-primary);
    text-shadow: 0 0 8px rgba(0, 230, 138, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

@keyframes meshFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -20px) rotate(1deg);
    }
    66% {
        transform: translate(-20px, 15px) rotate(-1deg);
    }
}

@keyframes creditLineSlide {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 230, 138, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 230, 138, 0.4);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.4s ease;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
        border-bottom: 1px solid var(--glass-border);
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .logo-img {
        height: 42px;
    }

    .footer-logo {
        height: 55px;
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .credit-meter-container {
        width: 100%;
    }

    .credit-meter {
        width: 250px;
        height: 170px;
    }

    .score-number {
        font-size: 3rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .business-services-grid {
        grid-template-columns: 1fr;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

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

    .testimonial-card {
        padding: 1.5rem;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .credit-meter {
        width: 210px;
        height: 140px;
    }

    .score-number {
        font-size: 2.5rem;
    }

    .meter-tagline {
        font-size: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .service-main {
        padding: 2rem 1.25rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    section {
        padding: 4rem 0;
    }
}

/* ============================================
   LOGIN SECTION (Hidden/Future)
   ============================================ */
.login-section {
    background: var(--bg-primary);
}

.login-wrapper {
    text-align: center;
    color: var(--text-secondary);
}
