/*
Theme Name: HealthFit Food Premium Theme
Theme URI: https://thehealthfitfood.com/
Author: Elite Developer Suite
Author URI: https://thehealthfitfood.com/
Description: Ultra-premium, high-performance responsive corporate theme optimized for seafood, spices, and international trade exports.
Version: 1.0.0
License: GNU GPLv2 or later
Text Domain: healthfit-theme
*/

:root {
    --bg-dark-ocean: #0c1628;
    --bg-slate-dark: #141b2d;
    --bg-ink-black: #0a0f1e;
    --primary-teal: #00f2fe;
    --accent-blue: #4facfe;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --text-dimmed: rgba(255, 255, 255, 0.45);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --container-max-width: 1200px;
    
    /* Contact form CSS variables (fixes undefined var warnings) */
    --ink-soft: #111a2c;
    --aqua: #00b4d8;
    --aqua-glow: rgba(0, 180, 216, 0.15);
    --slate: #2a3550;
    --gold: #c8a25a;
}

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

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

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

em {
    font-style: italic;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Global Buttons & CTA UI Elements */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-teal));
    color: var(--bg-ink-black);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 242, 254, 0.3);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-white);
    transform: translateY(-3px);
}

.btn-ghost {
    color: var(--primary-teal);
    padding: 0.5rem 1rem;
}

.btn-ghost:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

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

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

/* Sections Structure Layout definitions */
.section-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 100%);
}

/* Top Bar Framework Styling */
.topbar {
    background-color: var(--bg-ink-black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.6rem 0;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topbar-contact {
    display: flex;
    gap: 1.5rem;
}

.topbar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.topbar-contact a:hover {
    color: var(--primary-teal);
}

.topbar-contact svg {
    width: 14px;
    height: 14px;
}

/* Header & Primary Navigation CSS Architecture */
.site-header {
    background-color: rgba(12, 22, 40, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-mark {
    font-size: 1.8rem;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.logo-text span {
    color: var(--primary-teal);
    font-weight: 400;
}

.main-nav {
    display: flex;
    gap: 2.2rem;
}

.main-nav a, .main-nav li a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a:hover, .main-nav li a:hover {
    color: var(--text-white);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-smooth);
}

/* Mobile Nav — Left Drawer */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 9, 18, 0.6);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 82%;
    height: 100%;
    background-color: var(--bg-ink-black);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.45);
    z-index: 1050;
    padding: 1.25rem 1.75rem 2rem;
    gap: 1.25rem;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dimmed);
}

.mobile-nav-close {
    position: relative;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.mobile-nav-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background-color: var(--text-white);
}
.mobile-nav-close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.mobile-nav-close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }
.mobile-nav-close:hover { border-color: var(--primary-teal); }

.mobile-nav-links {
    display: flex;
    flex-direction: column;
}

.mobile-link {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.85rem 0;
    transition: color 0.25s ease;
}
.mobile-link:hover { color: var(--primary-teal); }

/* Hero Section Style Definitions */
.hero {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-dark-ocean);
    padding: 4rem 0;
}

.hero-bg-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    pointer-events: none;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-teal);
    top: -10%;
    right: -5%;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-blue);
    bottom: -10%;
    left: -10%;
}

.hero-eyebrow {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 680px;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 3rem;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.stat-num sup {
    color: var(--primary-teal);
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-dimmed);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dimmed);
    animation: bounce 2s infinite;
}

.hero-scroll-hint svg {
    width: 16px;
    height: 16px;
}

/* About Section Layout Architecture */
.about-section {
    background-color: var(--bg-dark-ocean);
    padding: 8rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-frame {
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 1.5rem;
}

.about-image-inner {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ocean-illustration {
    font-size: 6rem;
    animation: float 6s ease-in-out infinite;
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--bg-slate-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    max-width: 180px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.about-badge-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-teal);
    line-height: 1;
}

.about-badge-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.pillar-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-top: 2.5rem;
}

.pillar-item {
    display: flex;
    gap: 1.2rem;
}

.pillar-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.pillar-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Services Grid Core Layout Engine */
.services-section {
    background-color: var(--bg-slate-dark);
    padding: 8rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 242, 254, 0.2);
    transform: translateY(-5px);
}

.service-num {
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    transition: var(--transition-smooth);
}

.service-card:hover .service-num {
    color: rgba(0, 242, 254, 0.04);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dimmed);
}

.service-card:hover .service-arrow {
    color: var(--primary-teal);
}

/* Products Cards Stylesheet */
.products-section {
    background-color: var(--bg-ink-black);
    padding: 8rem 0;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.1);
}

.product-image {
    aspect-ratio: 4/3;
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-body {
    padding: 2rem;
}

.product-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-blue);
    margin-bottom: 0.75rem;
}

.product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.product-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.product-specs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-spec {
    font-size: 0.75rem;
    background: rgba(255,255,255,0.04);
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    color: var(--text-muted);
}

/* Process Section Timeline Engine */
.process-section {
    background-color: var(--bg-ink-black);
    padding: 8rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 5rem;
    position: relative;
}

.process-step {
    position: relative;
}

.step-num-wrap {
    font-size: 1.1rem;
    font-weight: 700;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-teal));
    color: var(--bg-ink-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Testimonial Element Interface Layout */
.testimonial-section {
    background-color: var(--bg-dark-ocean);
    padding: 8rem 0;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 4rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-stars {
    color: #ffb800;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 0.2em;
}

.testimonial-text {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: rgba(0, 242, 254, 0.1);
    color: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
}

.author-title {
    font-size: 0.8rem;
    color: var(--text-dimmed);
    text-align: left;
}

/* Dynamic Action Call Banner CSS Layout */
.cta-section {
    background-color: var(--bg-dark-ocean);
    padding-bottom: 8rem;
}

.cta-inner {
    background: linear-gradient(135deg, var(--bg-slate-dark) 0%, #111a2e 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4.5rem;
    border-radius: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-text p {
    color: var(--text-muted);
    max-width: 540px;
}

.cta-actions {
    display: flex;
    gap: 1.2rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* Global Grid Footer Configuration definitions */
.site-footer {
    background-color: var(--bg-ink-black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 1.5rem 0;
    max-width: 320px;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.social-btn:hover {
    background: var(--text-white);
    color: var(--bg-ink-black);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.4);
}

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

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-col a:hover {
    color: var(--primary-teal);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-dimmed);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

/* Native Animations definitions */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -8px); }
    60% { transform: translate(-50%, -4px); }
}

/* JavaScript Scroll Element Engine Reveal Definitions */
.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }

.reveal.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ============================================================
   RESPONSIVE DESIGN SYSTEM MEDIA QUERIES
   ============================================================ */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 4rem; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

@media (max-width: 768px) {
    .main-nav, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero-title { font-size: 2.8rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; gap: 2.5rem; }
    .cta-inner { flex-direction: column; padding: 3rem; text-align: center; gap: 2rem; }
    .testimonial-card { padding: 2rem; }
    .testimonial-text { font-size: 1.25rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .hero-title { font-size: 2.2rem; }
    .hero-actions .btn { width: 100%; }
    .hero-stats { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; gap: 1rem; }
}



/* --- Optimized Contact Form Styling --- */
/* Container for the form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

/* Base styles for all inputs and textarea */
.contact-form input, 
.contact-form textarea {
    width: 100%;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--ink-soft);
    border: 1px solid var(--slate);
    color: var(--white);
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

/* The Neon Blue Effect on Focus/Hover */
.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: var(--aqua);
    box-shadow: 0 0 10px var(--aqua-glow);
}

/* Button styling to match your Homepage */
.contact-form .btn-primary {
    width: 100%;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: var(--gold);
    color: var(--ink);
}