@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ==========================================
   CSS VARIABLES & DESIGN SYSTEM
   ========================================== */
:root {
    /* Color Palette */
    --bg-primary: #060814;
    --bg-secondary: #0d122e;
    --bg-card: rgba(18, 24, 58, 0.6);
    --bg-glass: rgba(10, 14, 38, 0.75);
    
    --text-primary: #ffffff;
    --text-secondary: #8d9bb5;
    --text-muted: #64748b;
    
    --primary-cyan: #ffcc00;
    --primary-blue: #ffd700;
    --primary-purple: #ffcc00;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-blue) 100%);
    --grad-purple: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    --grad-dark: linear-gradient(180deg, #0d122e 0%, #060814 100%);
    --grad-glow: radial-gradient(circle at 50% 50%, rgba(255, 204, 0, 0.15), transparent 60%);
    
    /* Layout */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 204, 0, 0.35);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacings */
    --container-width: 1200px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Glowing background ambient decoration */
body::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.06) 0%, transparent 75%);
    z-index: -1;
    pointer-events: none;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 8rem 0 4rem 0;
}

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

.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text-purple {
    background: var(--grad-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

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

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

/* Glassmorphism Card styling */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 30px rgba(255, 204, 0, 0.08);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--grad-primary);
    color: #060814;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-cyan);
    color: var(--primary-cyan);
    background: rgba(255, 204, 0, 0.05);
    transform: translateY(-2px);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(255, 204, 0, 0.1);
    color: var(--primary-cyan);
    border: 1px solid rgba(255, 204, 0, 0.2);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   NAVIGATION HEADER
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    transition: var(--transition-smooth);
}

.header.scrolled .nav-container {
    padding: 0.5rem 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: #ffcc00; /* Yellow */
}

.logo-highlight {
    color: #10b981; /* Premium Emerald Green */
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--grad-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #060814;
    font-weight: 900;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link.active {
    color: #FFB800; /* Gold active color */
}

/* Rectangular solid White button with dark text */
.btn-quote {
    background: #ffffff;
    color: #060814;
    border: none;
    border-radius: 2px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.6rem 1.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-quote:hover {
    background: #e2e8f0;
    color: #060814;
}

/* Hamburger mobile button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

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

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    padding: 12rem 0 8rem 0;
    display: flex;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(to right, rgba(6, 8, 20, 0.85) 0%, rgba(13, 25, 59, 0.5) 100%), url('../images/server-rack-bg.png') no-repeat center center/cover;
}

.hero-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    width: 100%;
}

.hero-title-wrapper {
    grid-column: 1 / 11;
    grid-row: 1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 0;
}

.hero-amp {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.hero-desc-wrapper {
    grid-column: 7 / 13;
    grid-row: 2;
    margin-top: 3rem;
}

.hero-desc {
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.7;
    color: #ffffff;
}

/* Responsiveness for new Hero layout */
@media (max-width: 1024px) {
    .hero {
        padding: 10rem 0 6rem 0;
        flex-direction: column;
    }
    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .hero-title {
        font-size: 4rem;
        text-align: center;
    }
    .hero-desc {
        font-size: 1.1rem;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
}

/* ==========================================
   SECTIONS GENERAL
   ========================================== */
.section-header {
    max-width: 650px;
    margin: 0 auto 4.5rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ==========================================
   ABOUT / MISSION & VISION
   ========================================== */
.about-split {
    align-items: center;
}

.about-split p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

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

.stat-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-cyan);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.mv-cards {
    margin-top: 4rem;
}

.mv-card {
    height: 100%;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 204, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-cyan);
}

.icon-wrapper svg {
    width: 24px;
    height: 24px;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-grid-home {
    margin-bottom: 3.5rem;
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    color: var(--primary-blue);
    font-size: 1.75rem;
}

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

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-cyan);
    font-family: var(--font-heading);
}

.learn-more-link svg {
    transition: var(--transition-smooth);
    width: 18px;
    height: 18px;
}

.learn-more-link:hover svg {
    transform: translateX(4px);
}

/* ==========================================
   CALL TO ACTION (CTA)
   ========================================== */
.cta-section {
    padding: 6rem 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(13, 18, 46, 0.8) 0%, rgba(6, 8, 20, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.08) 0%, transparent 60%);
    top: -50%;
    left: -20%;
    pointer-events: none;
}

.cta-box::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.08) 0%, transparent 60%);
    bottom: -50%;
    right: -20%;
    pointer-events: none;
}

.cta-box h2 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
}

.cta-box p {
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    color: var(--text-secondary);
    font-size: 1.15rem;
}

/* ==========================================
   CONTACT FORM & INFO
   ========================================== */
.contact-grid {
    align-items: flex-start;
}

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

.contact-method-card {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.contact-method-card .icon-wrapper {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
}

.contact-method-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-muted);
}

.contact-method-card p {
    font-size: 1.15rem;
    font-family: var(--font-heading);
    font-weight: 500;
}

/* Contact Form styling */
.contact-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.form-input {
    width: 100%;
    background: rgba(6, 8, 20, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.9rem 1.25rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.15);
}

textarea.form-input {
    resize: vertical;
    min-height: 150px;
}

.form-status {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: #03040b;
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem 0;
}

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

.footer-about p {
    color: var(--text-secondary);
    margin: 1.25rem 0 1.75rem 0;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.social-link:hover {
    background: var(--grad-primary);
    color: #060814;
    border-color: transparent;
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-links h4 {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links-list a {
    color: var(--text-secondary);
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

/* ==========================================
   SUBPAGES SPECIALS
   ========================================== */
.subpage-hero {
    padding: 10rem 0 4rem 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(13, 18, 46, 0.6) 0%, transparent 100%);
    border-bottom: 1px solid var(--border-color);
}

.subpage-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.subpage-hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    margin-top: 3rem;
}

.value-card {
    padding: 2rem;
}

.value-card .icon-wrapper {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%);
    color: var(--primary-purple);
}

.value-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--text-secondary);
}

/* Services detailed page layout */
.services-detailed-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-row:nth-child(even) {
    direction: rtl;
}

.service-row:nth-child(even) .service-row-content {
    direction: ltr;
}

.service-row-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.service-features-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-features-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    color: var(--text-secondary);
}

.service-features-list li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--primary-cyan);
    margin-top: 0.15rem;
}

.service-row-visual {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.service-row-visual::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.1) 0%, transparent 60%);
    top: 10%;
    right: 10%;
}

.service-diagram {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.diagram-node {
    background: rgba(6, 8, 20, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.diagram-node:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.2);
}

.diagram-connector {
    width: 2px;
    height: 20px;
    background: var(--grad-primary);
    margin: 0 auto;
}

/* ==========================================
   ANIMATIONS & KEYFRAMES
   ========================================== */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/* Scroll reveal helper classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero {
        padding: 10rem 0 5rem 0;
        flex-direction: column;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .service-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .service-row:nth-child(even) {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .grid-3, .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-padding {
        padding: 5rem 0 3rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.1rem;
    }
    
    /* Toggle Mobile Navigation */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-secondary);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        padding: 4rem;
        transition: var(--transition-smooth);
        z-index: 1050;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-toggle.open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .cta-box {
        padding: 3rem 1.5rem;
    }
    
    .cta-box h2 {
        font-size: 2.1rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
