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

:root {
    /* Bespoke "Navy Granite + Electric Blue + Neon Green" Palette */
    --color-onyx-dark: #070B19;
    --color-onyx-base: #0B132B;
    --color-slate-velvet: #111C3A;
    --color-titanium: #1C2A52;
    --color-titanium-light: #25396D;
    
    /* Breathtaking Neon Gradients */
    --gradient-rosegold: linear-gradient(135deg, #00E5FF 0%, #39FF14 100%);
    --gradient-rosegold-subtle: linear-gradient(135deg, #00B4D8 0%, #00FF87 100%);
    --gradient-emerald: linear-gradient(135deg, #39FF14 0%, #00E5FF 100%);
    --gradient-heading: linear-gradient(135deg, #FFFFFF 0%, #E0FBFC 50%, #00E5FF 100%);
    
    /* Elegant Solid Colors */
    --color-rosegold: #00E5FF;
    --color-rosegold-light: #39FF14;
    --color-emerald: #39FF14;
    --color-text-main: #FFFFFF;
    --color-text-muted: #90E0EF;
    
    /* Ambient Glows */
    --glow-rosegold: rgba(0, 229, 255, 0.35);
    --glow-emerald: rgba(57, 255, 20, 0.35);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Elite Architectural Glassmorphism */
    --glass-bg: rgba(11, 19, 43, 0.85);
    --glass-border: 1px solid rgba(0, 229, 255, 0.3);
    --glass-border-subtle: 1px solid rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.7);
}

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

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-onyx-base);
    color: var(--color-text-main);
    line-height: 1.65;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(0, 229, 255, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 85% 85%, rgba(57, 255, 20, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(11, 19, 43, 0.8) 0%, rgba(7, 11, 25, 0.95) 100%),
        repeating-radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 3px);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 1. Floating Pill-Shaped Navigation */
header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 2rem;
    transition: all 0.3s ease;
}

.nav-container {
    width: 100%;
    max-width: 1350px;
    background: var(--glass-bg);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: var(--glass-border-subtle);
    border-radius: 50px;
    padding: 0.7rem 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--glass-shadow);
    transition: border 0.3s ease;
}

.nav-container:hover {
    border: var(--glass-border);
}

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

.logo-mark {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -2px;
    display: flex;
    align-items: center;
    line-height: 1;
}

.ahg-logo-img {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}

.ahg-logo-img-footer {
    height: 55px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-a { background: var(--gradient-rosegold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.logo-h { background: var(--gradient-emerald); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin: 0 -3px; z-index: 2; filter: drop-shadow(0 0 10px var(--glow-emerald)); }
.logo-g { background: var(--gradient-rosegold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.logo-text {
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(243, 198, 143, 0.25);
    padding-left: 1rem;
}

.logo-main-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-sub-text {
    font-size: 0.65rem;
    background: var(--gradient-rosegold-subtle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
}

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

.nav-links li a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.5px;
}

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

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-rosegold-subtle);
    transition: width 0.35s ease;
}

.nav-links li a:hover::after, .nav-links li a.active::after {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-rosegold);
    color: #111111;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px var(--glow-rosegold);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(243, 198, 143, 0.5);
    filter: brightness(1.15);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-main);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    border: 2px solid var(--color-rosegold);
    box-shadow: 0 6px 20px var(--glow-rosegold);
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-secondary:hover {
    background: var(--gradient-rosegold);
    color: #111111;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px var(--glow-rosegold);
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-text-main);
    padding: 0.5rem;
}

/* 2. Split-Asymmetric Hero Layout */
.hero-asymmetric {
    padding: 11rem 2rem 5rem;
    position: relative;
    overflow: hidden;
    background-color: var(--color-onyx-dark);
}

.hero-grid {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    background: var(--color-slate-velvet);
    border: 1px solid var(--color-emerald);
    color: #FFFFFF;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 0 20px var(--glow-emerald);
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
    box-sizing: border-box;
}

.badge i {
    background: var(--gradient-emerald);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.1rem;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 3.8vw, 3.8rem);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.15;
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h1 span.highlight-rosegold, .highlight-rosegold {
    background: var(--gradient-rosegold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 18px var(--glow-rosegold));
}

.hero-content p.lead {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: var(--color-text-muted);
    max-width: 680px;
    margin-bottom: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-img-frame {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    border: var(--glass-border);
    box-shadow: 0 25px 65px rgba(0,0,0,0.8);
    width: 100%;
}

.hero-img-frame img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.85) contrast(1.15);
    transition: transform 0.8s ease;
}

.hero-img-frame:hover img {
    transform: scale(1.05);
}

.floating-stat-card {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: var(--color-slate-velvet);
    backdrop-filter: blur(24px);
    border: var(--glass-border);
    padding: 1.5rem 2rem;
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: calc(100% - 50px);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 900;
    background: var(--gradient-rosegold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-text {
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    color: var(--color-text-main);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

/* Sections */
.section {
    padding: 7.5rem 2rem;
    position: relative;
}

.section-container {
    max-width: 1350px;
    margin: 0 auto;
    width: 100%;
}

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

.section-header h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    margin-bottom: 1.2rem;
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--color-text-muted);
    max-width: 720px;
    margin: 0 auto;
}

/* 3. Modern Bento Grid Services Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.bento-card {
    background: var(--color-slate-velvet);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: var(--glass-border-subtle);
    border-radius: 28px;
    padding: 3rem 2.5rem;
    box-shadow: var(--glass-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.bento-card.bento-span-2 {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--color-slate-velvet) 0%, var(--color-titanium) 100%);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-rosegold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.bento-card:hover {
    transform: translateY(-8px);
    border: var(--glass-border);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.8), 0 0 28px var(--glow-rosegold);
    background: var(--color-titanium-light);
}

.bento-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    background: var(--color-onyx-base);
    border: 1px solid rgba(243, 198, 143, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 25px var(--glow-rosegold);
    transition: all 0.35s ease;
}

.service-icon i {
    background: var(--gradient-rosegold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bento-card:hover .service-icon {
    background: var(--gradient-rosegold);
    transform: scale(1.1);
}

.bento-card:hover .service-icon i {
    background: none;
    color: #111111;
    -webkit-text-fill-color: #111111;
}

.bento-card h3 {
    font-size: clamp(1.35rem, 1.8vw, 1.75rem);
    margin-bottom: 1rem;
    color: var(--color-text-main);
    letter-spacing: -0.3px;
}

.bento-card p {
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gradient-rosegold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: gap 0.3s ease;
}

.bento-card:hover .service-link {
    gap: 1.2rem;
}

/* 4. Cinematic Parallax Showcase */
.cinematic-showcase {
    position: relative;
    padding: 9rem 2rem;
    background: var(--color-onyx-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    width: 100%;
}

.cinematic-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) contrast(1.3);
    z-index: 1;
}

.cinematic-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
}

.cinematic-content h2 {
    font-size: clamp(2rem, 3.2vw, 3.4rem);
    margin-bottom: 1.8rem;
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.15;
}

.cinematic-content p {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    color: var(--color-text-muted);
    margin-bottom: 3.5rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    width: 100%;
}

.metric-item {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(20px);
    border: var(--glass-border-subtle);
    padding: 2.2rem 1.5rem;
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    width: 100%;
}

.metric-item h4 {
    font-size: clamp(1.7rem, 2.4vw, 2.4rem);
    background: var(--gradient-rosegold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.4rem;
}

.metric-item p {
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    color: var(--color-text-muted);
    margin: 0;
}

/* Feature Showcase Split */
.features-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
    width: 100%;
}

.feature-img-container {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 65px rgba(0,0,0,0.8);
    border: var(--glass-border);
    width: 100%;
}

.feature-img-container::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    box-shadow: inset 0 0 30px rgba(243, 198, 143, 0.25);
    pointer-events: none;
    border-radius: 32px;
}

.feature-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-img-container:hover .feature-img {
    transform: scale(1.06);
}

.feature-content h2 {
    font-size: clamp(1.8rem, 2.8vw, 3rem);
    margin-bottom: 1.5rem;
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-content p {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--color-text-muted);
    margin-bottom: 2.8rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    font-weight: 600;
    letter-spacing: 0.2px;
}

.feature-check {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: var(--gradient-emerald);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 22px var(--glow-emerald);
}

/* Page Banner */
.page-banner {
    padding: 12rem 2rem 5rem;
    background: linear-gradient(180deg, var(--color-onyx-dark) 0%, var(--color-slate-velvet) 100%);
    text-align: center;
    border-bottom: var(--glass-border-subtle);
    width: 100%;
}

.page-banner h1 {
    font-size: clamp(2.2rem, 3.5vw, 3.6rem);
    margin-bottom: 1.2rem;
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-banner p {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section & Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4.5rem;
    width: 100%;
}

.contact-info {
    background: var(--color-slate-velvet);
    backdrop-filter: blur(28px);
    border: var(--glass-border-subtle);
    padding: 3.5rem;
    border-radius: 28px;
    box-shadow: var(--glass-shadow);
    width: 100%;
}

.contact-info h3 {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    margin-bottom: 1.8rem;
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info p {
    color: var(--color-text-muted);
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    margin-bottom: 3.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

.info-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 18px;
    background: var(--color-onyx-base);
    border: 1px solid rgba(243, 198, 143, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 0 25px var(--glow-rosegold);
}

.info-icon i {
    background: var(--gradient-rosegold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-details h4 {
    font-size: clamp(1.05rem, 1.3vw, 1.15rem);
    margin-bottom: 0.3rem;
    color: var(--color-text-main);
}

.info-details p {
    margin: 0;
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    color: var(--color-text-muted);
}

.contact-form {
    background: var(--color-slate-velvet);
    backdrop-filter: blur(28px);
    border: var(--glass-border-subtle);
    padding: 3.5rem;
    border-radius: 28px;
    box-shadow: var(--glass-shadow);
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    font-weight: 600;
    color: var(--color-text-main);
    letter-spacing: 0.2px;
}

.form-control {
    background: var(--color-onyx-base);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.2rem 1.6rem;
    border-radius: 18px;
    color: var(--color-text-main);
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    font-family: var(--font-body);
    transition: all 0.35s ease;
    width: 100%;
}

.form-control:focus {
    outline: none;
    border: 1px solid var(--color-rosegold);
    box-shadow: 0 0 25px var(--glow-rosegold);
    background: var(--color-onyx-dark);
}

textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

/* 5. Heroic Mega-Footer */
footer {
    background: var(--color-onyx-dark);
    border-top: var(--glass-border-subtle);
    padding: 7rem 2rem 3rem;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.mega-footer-header {
    max-width: 1350px;
    margin: 0 auto 5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 5rem;
    width: 100%;
}

.mega-footer-header h2 {
    font-size: clamp(2.2rem, 3.8vw, 4rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.15;
    background: var(--gradient-heading);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.mega-footer-header h2 span {
    background: var(--gradient-rosegold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px var(--glow-rosegold));
    display: inline-block;
}

.footer-container {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.5fr;
    gap: 5rem;
    margin-bottom: 5rem;
    width: 100%;
}

.footer-col h4 {
    font-size: clamp(1.1rem, 1.4vw, 1.25rem);
    margin-bottom: 2rem;
    color: var(--color-text-main);
    position: relative;
    padding-bottom: 0.6rem;
    letter-spacing: 0.5px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: var(--gradient-rosegold);
    border-radius: 5px;
}

.footer-col p {
    color: var(--color-text-muted);
    margin-top: 1.8rem;
    font-size: clamp(0.9rem, 1.1vw, 0.95rem);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.footer-links li a {
    color: var(--color-text-muted);
    font-size: clamp(0.9rem, 1.1vw, 0.95rem);
}

.footer-links li a:hover {
    color: var(--color-rosegold);
    padding-left: 6px;
}

.footer-bottom {
    max-width: 1350px;
    margin: 0 auto;
    padding-top: 3.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-muted);
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    flex-wrap: wrap;
    gap: 2rem;
}

/* =========================================================
   COMPREHENSIVE RESPONSIVE MEDIA QUERIES (FIT ALL DEVICES)
   ========================================================= */

/* Large Laptops / Small Desktops (max-width: 1400px) */
@media (max-width: 1400px) {
    .hero-grid, .section-container, .mega-footer-header, .footer-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Small Laptops / Large Tablets (max-width: 1200px) */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .bento-card.bento-span-2 {
        grid-column: span 2;
    }
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 4rem;
    }
    .footer-col:last-child {
        grid-column: span 3;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 2.5rem;
    }
    .nav-links {
        gap: 2rem;
    }
}

/* Tablets / iPad Pro (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 4.5rem;
    }
    .hero-asymmetric {
        padding-top: 10rem;
        padding-bottom: 5rem;
    }
    .features-split {
        grid-template-columns: 1fr;
        gap: 4.5rem;
    }
    .features-split .feature-content {
        order: 1;
    }
    .features-split .feature-img-container {
        order: 2;
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4.5rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .contact-info, .contact-form, .bento-card {
        padding: 2.8rem 2.2rem;
    }
    .floating-stat-card {
        bottom: 20px;
        left: 20px;
        padding: 1.2rem 1.6rem;
    }
}

/* Mobile Devices / iPad Mini (max-width: 768px) */
@media (max-width: 768px) {
    html, body { overflow-x: hidden !important; width: 100% !important; max-width: 100vw !important; box-sizing: border-box !important; position: relative; margin: 0 !important; padding: 0 !important; }
    *, *:before, *:after { box-sizing: border-box !important; }
    header { top: 12px; padding: 0 1rem; width: 100%; box-sizing: border-box; }
    .nav-container { border-radius: 30px; padding: 0.5rem 1.2rem; width: 100%; box-sizing: border-box; }
    .logo-container { gap: 0.6rem; max-width: 80%; overflow: hidden; }
    .ahg-logo-img { height: 35px; width: auto; }
    .logo-main-text { font-size: 0.9rem; letter-spacing: 1px; }
    .logo-sub-text { font-size: 0.55rem; letter-spacing: 1.5px; }
    .nav-links, .nav-container .btn-primary { display: none; }
    .mobile-toggle { display: block; font-size: 1.4rem; padding: 0.3rem; }
    .hero-asymmetric { padding: 8.5rem 1.2rem 4rem; width: 100%; box-sizing: border-box; }
    .hero-grid { grid-template-columns: 1fr !important; gap: 3.5rem; width: 100%; box-sizing: border-box; padding: 0; }
    .hero-content { width: 100%; box-sizing: border-box; text-align: center; }
    .hero-content h1 { font-size: clamp(2rem, 8vw, 2.6rem); line-height: 1.15; margin-bottom: 1.2rem; }
    .hero-content p.lead { font-size: 0.95rem; margin-bottom: 2.2rem; margin-left: auto; margin-right: auto; padding: 0 0.5rem; }
    .hero-cta { flex-direction: column; width: 100%; gap: 1rem; box-sizing: border-box; padding: 0 1rem; }
    .hero-cta .btn-primary, .hero-cta .btn-secondary { width: 100%; text-align: center; justify-content: center; box-sizing: border-box; padding: 0.8rem 1.5rem; font-size: 0.9rem; }
    [style*="display: grid"], .bento-grid, .metrics-grid, .footer-container, .form-grid { grid-template-columns: 1fr !important; width: 100% !important; box-sizing: border-box !important; gap: 1.5rem !important; padding: 0 !important; }
    .info-item, [style*="display: flex"] { display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important; align-items: flex-start !important; gap: 1rem !important; width: 100% !important; box-sizing: border-box !important; overflow: hidden !important; }
    .info-icon, [style*="width: 50px"] { width: 45px !important; height: 45px !important; min-width: 45px !important; font-size: 1.3rem !important; flex-shrink: 0 !important; }
    .info-details, .info-details p, .info-details h4, [style*="display: flex"] > div:nth-child(2) { flex: 1 1 0% !important; min-width: 0 !important; width: 100% !important; box-sizing: border-box !important; word-break: break-word !important; overflow-wrap: break-word !important; white-space: normal !important; }
    .bento-card { padding: 2.2rem 1.6rem !important; border-radius: 24px !important; width: 100% !important; box-sizing: border-box !important; }
    .bento-card.bento-span-2 { grid-column: span 1; }
    .section, .cinematic-showcase, .national-coverage-section { padding: 4rem 1.2rem !important; width: 100% !important; box-sizing: border-box !important; margin: 0 auto 2rem !important; }
    .section-container, .contact-info, .contact-form { padding: 2rem 1.2rem !important; border-radius: 20px !important; width: 100% !important; box-sizing: border-box !important; margin: 0 auto 1.5rem !important; overflow: hidden !important; }
    .section-container h2, h2, h3, [style*="font-size: 2.5"], [style*="font-size: 2.6"], [style*="font-size: 2rem"] { font-size: clamp(1.5rem, 6vw, 1.9rem) !important; line-height: 1.3 !important; margin-bottom: 1rem !important; word-break: break-word !important; }
    .section-container p, .section-container ul, p, li, [style*="font-size: 1.5rem"], [style*="font-size: 1.2"] { font-size: 1rem !important; line-height: 1.6 !important; margin-bottom: 1.5rem !important; }
    .page-banner { padding: 9rem 1.2rem 4rem !important; width: 100% !important; box-sizing: border-box !important; }
    .page-banner h1, h1, [style*="font-size: 3"], [style*="font-size: 4"] { font-size: clamp(1.8rem, 7vw, 2.3rem) !important; line-height: 1.2 !important; word-break: break-word !important; }
    .footer-col:last-child { grid-column: span 1; padding-top: 0; border-top: none; }
    footer { padding: 5rem 1.2rem 3rem !important; width: 100% !important; box-sizing: border-box !important; }
    .mega-footer-header { margin-bottom: 3.5rem; padding-bottom: 3.5rem; width: 100%; box-sizing: border-box; padding-left: 0; padding-right: 0; }
    .mega-footer-header h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
    .mega-footer-header .btn-primary { width: 100%; text-align: center; justify-content: center; padding: 0.8rem 1.5rem; font-size: 0.9rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 1.5rem; width: 100%; box-sizing: border-box; }
    .footer-bottom div { justify-content: center; width: 100%; }
    .badge { white-space: normal !important; height: auto !important; line-height: 1.4 !important; display: inline-flex !important; flex-wrap: wrap !important; justify-content: center !important; text-align: center !important; padding: 0.5rem 1.2rem !important; font-size: 0.85rem !important; width: 100% !important; box-sizing: border-box !important; margin-bottom: 1.5rem !important; }
    .form-group, .form-control, button { width: 100% !important; box-sizing: border-box !important; }
}

/* Small Mobile Devices / iPhone SE (max-width: 480px) */
@media (max-width: 480px) {
    .hero-asymmetric { padding-top: 8rem; padding-bottom: 3.5rem; }
    .hero-content h1 { font-size: 2rem; }
    .floating-stat-card { bottom: 10px; left: 10px; padding: 1rem 1.2rem; gap: 0.8rem; border-radius: 18px; max-width: calc(100% - 20px); box-sizing: border-box; }
    .stat-num { font-size: 1.6rem; }
    .stat-text { font-size: 0.8rem; }
    .bento-card, .contact-info, .contact-form { padding: 2rem 1.4rem; border-radius: 20px; }
    .service-icon { width: 50px; height: 50px; font-size: 1.6rem; margin-bottom: 1.5rem; }
    .badge { font-size: 0.8rem; padding: 0.4rem 1rem; letter-spacing: 1px; margin-bottom: 1.5rem; }
    .logo-mark { font-size: 1.5rem; }
    .logo-main-text { font-size: 0.85rem; }
    .logo-sub-text { font-size: 0.5rem; letter-spacing: 1.5px; }
    .hero-cta { padding: 0 0.5rem; }
}

/* Mobile Navigation Drawer */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 1rem;
    right: 1rem;
    background: var(--color-slate-velvet);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: var(--glass-border);
    border-radius: 28px;
    padding: 2.2rem;
    display: none;
    flex-direction: column;
    gap: 1.6rem;
    z-index: 999;
    box-shadow: var(--glass-shadow);
}

.mobile-nav.active {
    display: flex;
    animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-nav a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-main);
    text-align: center;
    padding: 0.4rem 0;
}

.mobile-nav a:hover {
    color: var(--color-rosegold);
}
