/**
 * Vickrey Solutions - Styles
 * Mobile-first responsive design with starfield background and glassmorphic effects
 */

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --blue-primary: #667eea;
    --blue-dark: #5568d3;
    --blue-light: #7c8ff5;
    --white: #ffffff;
    --gray-light: #f0f0f0;
    --gray-medium: #cccccc;
    --gray-dark: #666666;
    --dark-bg: #0a0e27;
    --dark-card: rgba(255, 255, 255, 0.05);

    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-mono: 'Courier New', monospace;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Glassmorphic effect */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-blur: 10px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* ============================================
   STARFIELD CONTAINER
   ============================================ */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000000;
    overflow: hidden;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo-vickrey {
    color: var(--blue-primary);
}

.logo-solutions {
    color: var(--white);
    margin-left: 0.25rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--blue-light);
}

.nav-menu .btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.95rem;
}

/* Mobile menu */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: var(--spacing-md) 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu li:last-child {
        border-bottom: none;
        padding-top: var(--spacing-md);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    color: var(--white);
}

h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    color: var(--white);
    text-align: center;
}

h3 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--white);
}

h4 {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--blue-light);
}

p {
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.9);
}

a {
    color: var(--blue-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--blue-light);
}

strong {
    color: var(--white);
    font-weight: 600;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

section {
    padding: var(--spacing-lg) 0;
    position: relative;
}

/* ============================================
   GLASSMORPHIC CARDS
   ============================================ */
.glass-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: 16px;
    padding: var(--spacing-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--blue-primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    background: var(--blue-light);
    box-shadow: 0 6px 24px rgba(102, 126, 234, 0.6);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--blue-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xl) 0;
    padding-top: calc(var(--spacing-xl) + 70px); /* Account for fixed header */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section .section-intro {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.pain-points {
    display: grid;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.pain-point h3 {
    color: var(--blue-light);
    font-size: 1.125rem;
}

.pain-point p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

.closing-line {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: var(--spacing-md);
    margin-bottom: 0;
    color: var(--blue-light);
}

/* ============================================
   SHIFT SECTION
   ============================================ */
.shift-section .lead {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.benefits-list {
    list-style: none;
    margin: var(--spacing-md) 0;
    padding: 0;
}

.benefits-list li {
    padding-left: 2rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blue-primary);
    font-weight: bold;
    font-size: 1.25rem;
}

.emphasis {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
}

.cta-text {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    color: var(--blue-light);
    margin-bottom: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.85);
}

.services-grid {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.service-card {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.service-card h3 {
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.8);
}

.service-link {
    display: inline-block;
    color: var(--blue-primary);
    font-weight: 600;
    margin-top: var(--spacing-sm);
}

.service-link:hover {
    color: var(--blue-light);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-steps {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.process-step {
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--blue-primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

.process-step h3 {
    margin-bottom: var(--spacing-xs);
}

.process-step h4 {
    margin-bottom: var(--spacing-sm);
}

.process-step p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.industry-statement {
    margin: var(--spacing-md) 0 var(--spacing-lg);
    text-align: center;
    font-size: 1.125rem;
}

.testimonials-grid {
    display: grid;
    gap: var(--spacing-md);
}

.testimonial-card {
    padding: var(--spacing-md);
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.testimonial-attribution {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   ABOUT PREVIEW SECTION
   ============================================ */
.about-preview .glass-card {
    max-width: 900px;
    margin: 0 auto;
}

.about-text .intro {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--blue-light);
    margin-bottom: var(--spacing-md);
}

.about-text .closing {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

/* ============================================
   BLOG PREVIEW SECTION
   ============================================ */
.blog-grid {
    display: grid;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
}

.blog-card h3 {
    color: var(--blue-light);
    margin-bottom: var(--spacing-sm);
}

.blog-excerpt {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
}

.blog-link {
    color: var(--blue-primary);
    font-weight: 600;
}

.blog-link:hover {
    color: var(--blue-light);
}

.blog-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    padding: var(--spacing-xl) 0;
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-lg);
}

.cta-card h2 {
    margin-bottom: var(--spacing-md);
}

.cta-card p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

.cta-subtext {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--spacing-sm);
}

.secondary-cta {
    margin-top: var(--spacing-md);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.secondary-cta a {
    color: var(--blue-primary);
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    padding: var(--spacing-lg);
}

.footer-grid {
    display: grid;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

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

.footer-column li {
    margin-bottom: var(--spacing-xs);
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column a:hover {
    color: var(--blue-light);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: var(--spacing-sm);
}

.footer-contact a {
    color: var(--blue-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.footer-built {
    font-style: italic;
}

/* ============================================
   TABLET STYLES (768px and up)
   ============================================ */
@media (min-width: 768px) {
    :root {
        --spacing-sm: 1.5rem;
        --spacing-md: 2.5rem;
        --spacing-lg: 4rem;
        --spacing-xl: 6rem;
    }

    .container {
        padding: 0 var(--spacing-md);
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   DESKTOP STYLES (1024px and up)
   ============================================ */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   LARGE DESKTOP STYLES (1440px and up)
   ============================================ */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    .hero h1 {
        font-size: 4rem;
    }
}

/* ============================================
   SERVICE PAGE STYLES
   ============================================ */
.service-hero {
    min-height: 60vh;
}

.service-section {
    padding: var(--spacing-lg) 0;
}

.section-intro {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

/* Problem List */
.problem-list {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.problem-item h3 {
    color: var(--blue-light);
    margin-bottom: var(--spacing-sm);
}

.problem-item p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* Solution Grid */
.solution-grid {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.solution-item {
    text-align: center;
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.solution-item h4 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.solution-item p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* Example Cards */
.example-cards {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.example-card {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.example-card h3 {
    color: var(--blue-light);
    margin-bottom: var(--spacing-sm);
}

.example-content p {
    margin-bottom: var(--spacing-sm);
}

.example-content p:last-child {
    margin-bottom: 0;
}

.example-content strong {
    color: var(--blue-primary);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.benefit-item h3 {
    color: var(--blue-light);
    margin-bottom: var(--spacing-sm);
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* FAQ List */
.faq-list {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.faq-item h3 {
    color: var(--blue-light);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* Service Page Responsive */
@media (min-width: 768px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .example-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .solution-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .example-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-hero {
    min-height: 60vh;
}

.about-section {
    padding: var(--spacing-lg) 0;
}

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

.about-content p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-content .highlight {
    font-size: 1.125rem;
    color: var(--white);
    margin-top: var(--spacing-md);
}

.about-content strong {
    color: var(--blue-light);
}

.about-content em {
    color: var(--blue-primary);
    font-style: italic;
}

/* Approach Grid */
.approach-grid {
    display: grid;
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.approach-item h3 {
    color: var(--blue-light);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.approach-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* Philosophy List */
.philosophy-list {
    display: grid;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.philosophy-item h3 {
    color: var(--blue-light);
    margin-bottom: var(--spacing-sm);
}

.philosophy-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* About Page Responsive */
@media (min-width: 768px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .philosophy-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-hero {
    min-height: 50vh;
}

.contact-section {
    padding: var(--spacing-lg) 0;
}

.contact-grid {
    display: grid;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-md);
}

/* Alert Messages */
.alert {
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-lg);
}

.alert h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.alert p {
    margin: 0;
    line-height: 1.6;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.alert-success h3 {
    color: #4ade80;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.alert-error h3 {
    color: #f87171;
}

/* Contact Form */
.contact-form-container h2 {
    margin-bottom: var(--spacing-sm);
}

.contact-form-container > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
}

.contact-form {
    margin-top: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--white);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Override browser autofill styles */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active,
.form-group select:-webkit-autofill,
.form-group select:-webkit-autofill:hover,
.form-group select:-webkit-autofill:focus,
.form-group select:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.05) inset !important;
    -webkit-text-fill-color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    transition: background-color 5000s ease-in-out 0s;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    padding-right: 2.5rem;
}

.form-group select option {
    background: rgba(20, 20, 35, 0.95);
    color: var(--white);
    padding: 0.5rem;
}

/* Contact Info */
.contact-info h2 {
    margin-bottom: var(--spacing-md);
}

.contact-method {
    margin-bottom: var(--spacing-lg);
}

.contact-method:last-child {
    margin-bottom: 0;
}

.contact-method h3 {
    color: var(--blue-light);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.contact-method p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: var(--spacing-xs);
}

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

.contact-method a:hover {
    color: var(--blue-light);
}

.contact-method ul {
    list-style: none;
    padding-left: 0;
}

.contact-method ul li {
    padding: 0.25rem 0;
    color: rgba(255, 255, 255, 0.85);
}

.contact-method ul li:before {
    content: "✓ ";
    color: var(--blue-primary);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Contact Page Responsive */
@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
    }
}

/* ============================================
   PRIVACY POLICY PAGE STYLES
   ============================================ */
.privacy-hero {
    min-height: 40vh;
}

.last-updated {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: var(--spacing-sm);
}

.privacy-section {
    padding: var(--spacing-lg) 0;
}

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

.privacy-block {
    margin-bottom: var(--spacing-xl);
}

.privacy-block:last-child {
    margin-bottom: 0;
}

.privacy-block h2 {
    color: var(--blue-light);
    margin-bottom: var(--spacing-md);
    font-size: 1.75rem;
}

.privacy-block h3 {
    color: var(--white);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.privacy-block p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.privacy-block ul {
    list-style: none;
    padding-left: 0;
    margin: var(--spacing-sm) 0;
}

.privacy-block ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    position: relative;
}

.privacy-block ul li:before {
    content: "•";
    color: var(--blue-primary);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.privacy-block strong {
    color: var(--blue-light);
    font-weight: 600;
}

.privacy-block a {
    color: var(--blue-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-block a:hover {
    color: var(--blue-light);
    text-decoration: underline;
}

.contact-details {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 4px solid var(--blue-primary);
    margin: var(--spacing-md) 0;
}

.contact-details p {
    margin-bottom: var(--spacing-xs);
}

.contact-details p:last-child {
    margin-bottom: 0;
}

.highlight-block {
    background: rgba(102, 126, 234, 0.1);
    padding: var(--spacing-md);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.highlight-block h2 {
    color: var(--blue-light);
}

.highlight-block p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}
