/* ----------------------------------------------------
   DESIGN SYSTEM & VARIABLES
   ---------------------------------------------------- */
:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Harmonious HSL Tailored Color Palette */
    --clr-bg-deep: hsl(222, 47%, 6%);       /* Deep Slate Blue (090d16) */
    --clr-bg-card: hsla(222, 35%, 12%, 0.75); /* Secondary Slate Card background */
    --clr-primary: hsl(199, 89%, 48%);       /* Electric Cyan/Sky Blue */
    --clr-primary-glow: hsla(199, 89%, 48%, 0.15);
    --clr-secondary: hsl(45, 93%, 47%);     /* Premium Amber/Gold */
    --clr-accent-green: hsl(150, 84%, 37%); /* Emerald/Success Green */
    --clr-accent-red: hsl(350, 89%, 60%);   /* Coral/Error Red */

    /* Typography scale */
    --clr-text-light: hsl(210, 40%, 98%);   /* Off-white */
    --clr-text-muted: hsl(217, 19%, 60%);   /* Slate Grey */
    --clr-text-dim: hsl(215, 15%, 40%);     /* Dim grey */

    /* Glassmorphism settings */
    --glass-bg: hsla(222, 35%, 10%, 0.65);
    --glass-border: hsla(210, 40%, 100%, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* Transitions & Constants */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --container-max-width: 1200px;
    --header-height: 80px;
}

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

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

body {
    background-color: var(--clr-bg-deep);
    color: var(--clr-text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

address {
    font-style: normal;
}

/* ----------------------------------------------------
   REUSABLE UTILITIES & COMPONENTS
   ---------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.glass-card {
    background: var(--clr-bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: hsla(199, 89%, 48%, 0.35);
    box-shadow: 0 12px 36px rgba(14, 165, 233, 0.15);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn i {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-bg-deep);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    box-shadow: 0 0 20px var(--clr-primary-glow);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--glass-border);
    color: var(--clr-text-light);
}

.btn-secondary:hover {
    background-color: hsla(0, 0%, 100%, 0.05);
    border-color: var(--clr-text-light);
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 8px;
}

.btn-block {
    width: 100%;
}

/* Typography Helpers */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

.gradient-text {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent-text {
    color: var(--clr-primary);
}

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

.section-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--clr-primary);
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.section-description {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

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

.badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    background: hsla(199, 89%, 48%, 0.1);
    border: 1px solid hsla(199, 89%, 48%, 0.2);
    border-radius: 100px;
    color: var(--clr-primary);
    margin-bottom: 1.5rem;
}

/* ----------------------------------------------------
   HEADER & NAVIGATION
   ---------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-top: none;
    border-left: none;
    border-right: none;
}

.main-header.scrolled {
    background: hsla(222, 47%, 4%, 0.85);
    height: 70px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-primary);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--clr-text-light);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--clr-text-light);
    cursor: pointer;
    font-size: 1.5rem;
}

/* ----------------------------------------------------
   HERO SECTION
   ---------------------------------------------------- */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 6rem;
    overflow: hidden;
}

/* Background Gradients & Glows */
.hero-background-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, hsla(222, 47%, 9%, 1) 0%, hsla(222, 47%, 5%, 1) 100%);
    z-index: -3;
}

.hero-glow-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
    top: -50px;
    right: 5%;
    z-index: -2;
}

.hero-glow-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.06) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    z-index: -2;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
}

/* Hero Glass Card Graphic */
.hero-card {
    position: relative;
    border-color: hsla(210, 40%, 100%, 0.12);
}

.card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--clr-primary-glow) 0%, transparent 80%);
    top: -50px;
    right: -50px;
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

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

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--clr-accent-green);
    box-shadow: 0 0 10px var(--clr-accent-green);
}

.status-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--clr-text-muted);
}

.card-year {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-secondary);
}

.hero-card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.hero-card-body p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.hero-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.hero-features-list li {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: hsla(199, 89%, 48%, 0.1);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    width: 20px;
    height: 20px;
}

.small-text {
    font-size: 0.8rem;
    color: var(--clr-text-dim);
}

/* ----------------------------------------------------
   STATS SECTION
   ---------------------------------------------------- */
.stats-section {
    background-color: hsla(222, 47%, 4%, 0.5);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 3rem 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-divider {
    height: 50px;
    width: 1px;
    background-color: var(--glass-border);
}

/* ----------------------------------------------------
   SERVICES SECTION
   ---------------------------------------------------- */
.services-section {
    padding: 8rem 0;
}

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

.service-card {
    display: flex;
    flex-direction: column;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, hsla(199, 89%, 48%, 0.2), transparent);
    color: var(--clr-primary);
    border: 1px solid hsla(199, 89%, 48%, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon-wrapper i {
    width: 28px;
    height: 28px;
}

.service-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.service-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.service-bullets li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--clr-text-light);
}

.service-bullets i {
    width: 16px;
    height: 16px;
    color: var(--clr-secondary);
}

/* ----------------------------------------------------
   ABOUT US SECTION
   ---------------------------------------------------- */
.about-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.about-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.05) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    z-index: -2;
}

.about-container {
    display: grid;
    grid-template-columns: 0.90fr 1.10fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.visual-stack {
    position: relative;
    height: 420px;
}

.main-visual-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: hsla(210, 40%, 100%, 0.12);
}

.about-logo-watermark {
    max-height: 180px;
    width: auto;
    opacity: 0.85;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.05));
}

.secondary-visual-card {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    background: hsla(222, 35%, 15%, 0.85);
    border-color: hsla(199, 89%, 48%, 0.25);
    padding: 1.8rem;
}

.secondary-visual-card h4 {
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.secondary-visual-card p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: 40px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    color: var(--clr-bg-deep);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.badge-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--clr-text-light);
    margin-bottom: 1.5rem;
}

.about-text {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-point {
    display: flex;
    gap: 1.2rem;
}

.point-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: hsla(45, 93%, 47%, 0.1);
    color: var(--clr-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-icon i {
    width: 20px;
    height: 20px;
}

.about-point h5 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.about-point p {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
}

/* ----------------------------------------------------
   CONTACT SECTION
   ---------------------------------------------------- */
.contact-section {
    padding: 8rem 0;
    background: radial-gradient(circle at bottom, hsla(222, 35%, 8%, 0.8), transparent);
    border-top: 1px solid var(--glass-border);
}

.contact-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

.contact-description {
    color: var(--clr-text-muted);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: hsla(210, 40%, 100%, 0.04);
    border: 1px solid var(--glass-border);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-box i {
    width: 22px;
    height: 22px;
}

.contact-text-box span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--clr-text-dim);
}

.contact-link {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.contact-link:hover {
    color: var(--clr-primary);
}

.contact-address {
    font-size: 1rem;
    color: var(--clr-text-light);
    line-height: 1.4;
}

/* Map Placeholder Component */
.map-container {
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: hsla(222, 35%, 15%, 0.8);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-icon {
    width: 100px;
    height: 100px;
    color: hsla(210, 40%, 100%, 0.03);
    position: absolute;
}

.map-details-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 1.5rem;
}

.map-details-overlay strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.map-details-overlay p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
}

/* Form Styles */
.form-card {
    background: hsla(222, 35%, 10%, 0.85);
    border-color: hsla(210, 40%, 100%, 0.08);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

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

.interactive-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--clr-text-dim);
    pointer-events: none;
}

.interactive-form input,
.interactive-form textarea {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.8rem;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    background: hsla(222, 35%, 6%, 0.5);
    color: var(--clr-text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.interactive-form textarea {
    padding-left: 1.2rem; /* No icon in text area */
    resize: vertical;
}

.interactive-form input:focus,
.interactive-form textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    background: hsla(222, 35%, 6%, 0.8);
    box-shadow: 0 0 10px var(--clr-primary-glow);
}

/* Form Feedback States */
.form-feedback {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    text-align: center;
    font-weight: 500;
}

.form-feedback.success {
    background-color: hsla(150, 84%, 37%, 0.1);
    border: 1px solid hsla(150, 84%, 37%, 0.2);
    color: var(--clr-accent-green);
}

.form-feedback.error {
    background-color: hsla(350, 89%, 60%, 0.1);
    border: 1px solid hsla(350, 89%, 60%, 0.2);
    color: var(--clr-accent-red);
}

.hidden {
    display: none;
}

/* ----------------------------------------------------
   FOOTER
   ---------------------------------------------------- */
.main-footer {
    background-color: hsl(222, 47%, 3%);
    border-top: 1px solid var(--glass-border);
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.logo-img-footer {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-desc {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    max-width: 350px;
}

.footer-links h4,
.footer-legal h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--clr-text-light);
}

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

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

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

.footer-legal p {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    margin-bottom: 0.6rem;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 2rem 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--clr-text-dim);
}

.back-to-top {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: hsla(210, 40%, 100%, 0.04);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.back-to-top:hover {
    background: var(--clr-primary);
    color: var(--clr-bg-deep);
    transform: translateY(-3px);
}

.back-to-top i {
    width: 20px;
    height: 20px;
}

/* ----------------------------------------------------
   SCROLL REVEAL & INTERSECT OBSERVER
   ---------------------------------------------------- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------------------------------
   RESPONSIVE LAYOUTS
   ---------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-visual {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .main-header {
        height: 70px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--clr-bg-deep);
        padding: 3rem 2rem;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--glass-border);
    }

    .main-nav.open {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .nav-cta {
        display: none;
    }

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

    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
