:root {
    /* Color Palette */
    --primary-yellow: #FFCB05;
    --accent-orange: #FF6B00;
    --dark-bg: #0D0D0D;
    --darker-bg: #050505;
    --card-bg: #1A1A1A;
    --text-light: #E0E0E0;
    --text-white: #FFFFFF;
    --text-muted: #999999;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Variables */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    scroll-behavior: smooth;
    /* Subtle ambient glow across the whole page */
    background-image:
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(255, 203, 5, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 60% 30% at 80% 100%, rgba(255, 107, 0, 0.04) 0%, transparent 60%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-white);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

img,
svg {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 100px 0;
}

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

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary-yellow);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 50px;
}

/* ================= GLOW LIGHTING EFFECTS ================= */
@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    }

    50% {
        box-shadow: 0 4px 30px rgba(255, 203, 5, 0.6), 0 0 60px rgba(255, 107, 0, 0.2);
    }
}

@keyframes borderGlow {

    0%,
    100% {
        border-color: rgba(255, 203, 5, 0.15);
    }

    50% {
        border-color: rgba(255, 203, 5, 0.45);
    }
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    font-size: 1rem;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-yellow), var(--accent-orange));
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    animation: glowPulse 3s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.7), 0 0 60px rgba(255, 203, 5, 0.3);
    animation: none;
}

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

.btn-outline:hover {
    background: rgba(255, 203, 5, 0.1);
    transform: translateY(-3px);
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BA5C;
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

/* ================= EMERGENCY BAR ================= */
.emergency-bar {
    background: var(--accent-orange);
    color: #fff;
    text-align: center;
    padding: 8px 15px;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 1002;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.emergency-bar a {
    color: #fff;
    text-decoration: underline;
    font-weight: 800;
}

/* ================= HEADER / NAVBAR ================= */
.header {
    position: fixed;
    top: 38px;
    /* Height of the emergency bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(5, 5, 5, 0.95);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-yellow);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--primary-yellow);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-white);
    margin: 5px 0;
    transition: var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ================= HERO SECTION ================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('assets/images/hero_background_solar.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 24px;
    font-weight: 800;
    background: linear-gradient(to right, #FFF, var(--primary-yellow));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    color: #CCC;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* ================= TRUST ROW ================= */
.trust-row {
    background: var(--dark-bg);
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-row-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px 50px;
    text-align: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    color: var(--primary-yellow);
}

.trust-item span {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-white);
}

/* ================= ABOUT SECTION ================= */
.about {
    background-color: var(--darker-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.experience-badge {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255, 203, 5, 0.1);
    border-left: 4px solid var(--primary-yellow);
    border-radius: var(--border-radius-sm);
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
}

.badge-text {
    font-weight: 600;
    line-height: 1.3;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
}

.ceo-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    background: var(--card-bg);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.ceo-image-container:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 203, 5, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 203, 5, 0.1);
}

.ceo-img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    background: #111;
}

.ceo-caption {
    padding: 15px 20px;
    background: linear-gradient(to right, var(--card-bg), #111);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.ceo-caption h4 {
    color: var(--primary-yellow);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

/* ===================================================
   OLUWAMILARE ELECTRICAL & SOLAR SERVICES
   Main Stylesheet
=================================================== */

/* ================= PERFORMANCE ================= */
.gallery-item,
.service-card,
.ceo-image-container,
.team-card,
.reveal {
    will-change: transform, opacity;
}

img {
    content-visibility: auto;
}

/* ================= SERVICES SECTION ================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background: #202020;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 203, 5, 0.1);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-yellow);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--primary-yellow);
    color: #000;
    transform: rotateY(180deg);
}

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

.service-card p {
    color: var(--text-muted);
}

/* ================= WHY CHOOSE US ================= */
.why-us {
    background: var(--darker-bg);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefits-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.benefit-icon svg {
    width: 20px;
}

.benefits-list h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.benefits-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.stat-box {
    background: linear-gradient(135deg, var(--card-bg), #111);
    padding: 60px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.stat-box::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--primary-yellow), var(--accent-orange), transparent, transparent);
    z-index: -1;
    border-radius: calc(var(--border-radius-lg) + 2px);
    opacity: 0.5;
}

.stat-number {
    font-size: 6rem;
    background: linear-gradient(to right, var(--primary-yellow), var(--accent-orange));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

/* ================= PROJECTS GALLERY ================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.gallery-item {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    background: var(--card-bg);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    animation: borderGlow 4s ease-in-out infinite;
}

.gallery-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 203, 5, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 203, 5, 0.08);
    animation: none;
}

.gallery-image-wrapper {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #111, #222);
    color: rgba(255, 255, 255, 0.2);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
    background: linear-gradient(45deg, rgba(255, 203, 5, 0.1), rgba(255, 107, 0, 0.1));
    color: rgba(255, 255, 255, 0.8);
    border-color: var(--primary-yellow);
}

.gallery-info {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-info h4 {
    margin-bottom: 5px;
}

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

/* ================= COVERAGE SECTION ================= */
.coverage {
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.coverage-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.coverage-text {
    flex: 1;
    min-width: 300px;
}

.coverage-areas {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.coverage-badge {
    background: rgba(255, 203, 5, 0.1);
    color: var(--primary-yellow);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 203, 5, 0.3);
}

/* ================= SOCIAL SECTION ================= */
.social {
    background: var(--darker-bg);
}

.section-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    margin-top: 40px;
    /* Adjusted from .social-buttons */
}

.section-cta::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
}

.social-buttons {
    /* Removed margin-top as it's now on .section-cta */
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
}

.social-btn svg {
    width: 24px;
    height: 24px;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.tiktok {
    background: #000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tiktok:hover {
    background: #111;
    border-color: #fff;
}

.instagram:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.4);
}

/* ================= CONTACT SECTION ================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    padding-right: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 203, 5, 0.1);
    color: var(--primary-yellow);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
}

.info-item h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-white);
}

.info-item p {
    color: var(--text-muted);
}

.whatsapp-cta {
    margin-top: 40px;
}

.contact-form-wrapper {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background: #0D0D0D;
}

/* ================= FOOTER ================= */
.footer {
    background: #000;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
    margin-top: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: var(--primary-yellow);
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.footer-social-icons a svg {
    width: 20px;
}

.footer-social-icons a:hover {
    background: var(--primary-yellow);
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    background: #050505;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* ================= FLOATING WHATSAPP ================= */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-fast);
}

.floating-whatsapp svg {
    width: 35px;
    height: 35px;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ================= ANIMATIONS ================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reveal Classes for JS */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

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

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {

    .about-grid,
    .why-us-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-stat {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .emergency-bar {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1002;
    }

    .header {
        top: 38px;
    }

    .header.scrolled {
        top: 0;
    }

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--darker-bg);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        padding: 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .main-nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        width: 100%;
        margin-bottom: 30px;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .section-padding {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 4rem;
    }

    .stat-box {
        padding: 40px 20px;
    }

    .social-buttons {
        flex-direction: column;
    }
}