/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #8B1538;
    --primary-dark: #6B0F2A;
    --primary-light: #A81D47;
    --accent-color: #D4145A;
    
    --tech-blue: #2563EB;
    --tech-purple: #7C3AED;
    --tech-cyan: #06B6D4;
    --tech-green: #10B981;
    
    --dark: #0F172A;
    --dark-light: #1E293B;
    --text-dark: #0F172A;
    --text-light: #ffffff;
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
    
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-tech: linear-gradient(135deg, var(--tech-blue), var(--tech-purple));
    --gradient-glow: linear-gradient(135deg, #8B1538, #D4145A, #2563EB);
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(139, 21, 56, 0.2);
    --shadow-glow: 0 0 30px rgba(139, 21, 56, 0.4);
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

::selection {
    background: var(--primary-color);
    color: var(--white);
}


/* ===== LOGO IMAGE STYLING ===== */
.logo-img {
    width: 160px;
    height: 80px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(139, 21, 56, 0.3));
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 6px 12px rgba(139, 21, 56, 0.5));
    transform: scale(1.05);
}

/* Logo in footer */
.footer .logo-img {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}


.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.btn-primary {
    background: linear-gradient(135deg, #8B1538, #D4145A);
    color: #FFFFFF;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(139, 21, 56, 0.2);
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s, transform 0.1s;
    z-index: 10000;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
}

/* ===== PARTICLES BACKGROUND ===== */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.5;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.glitch-logo img {
    width: 350px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(139, 21, 56, 0.6));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(139, 21, 56, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 2rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.glitch {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
}

.typing-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.progress-bar {
    width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 2rem auto 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(0.75rem, 3vw, 1.5rem) clamp(1rem, 4vw, 2rem);
    gap: clamp(0.5rem, 2vw, 1rem);
}

.logo {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 1rem);
    flex-shrink: 0;
}

.logo-text h1 {
    font-size: clamp(1rem, 4vw, 1.5rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text p {
    font-size: clamp(0.65rem, 2vw, 0.8rem);
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    gap: clamp(1rem, 3vw, 2rem);
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: clamp(0.25rem, 1vw, 0.5rem) 0;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-size: clamp(0.85rem, 2vw, 1rem);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 1rem);
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: clamp(3px, 1vw, 5px);
    cursor: pointer;
    background: none;
    border: none;
    padding: clamp(0.25rem, 1vw, 0.5rem);
}

.hamburger span {
    width: clamp(20px, 5vw, 25px);
    height: clamp(2px, 0.5vw, 3px);
    background: var(--white);
    transition: all 0.3s ease;
    display: block;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Navigation - Flexible across ALL screen sizes */
@media (max-width: 1200px) {
    .nav-menu {
        gap: clamp(0.8rem, 2vw, 1.5rem);
    }
    
    .nav-link {
        font-size: clamp(0.8rem, 1.8vw, 0.95rem);
    }
}

@media (max-width: 900px) {
    .nav-menu {
        gap: clamp(0.6rem, 1.5vw, 1.2rem);
    }
    
    .nav-link {
        font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    }
}

/* Show hamburger menu when space becomes limited */
@media (max-width: 640px) {
    .nav-container {
        flex-wrap: nowrap;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        right: 0;
        width: 100vw;
        height: calc(100vh - 70px);
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: clamp(1.5rem, 4vw, 2rem);
        gap: clamp(1rem, 3vw, 1.5rem);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        z-index: 999;
        overflow-y: auto;
        transition: left 0.3s ease;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: clamp(1rem, 2vw, 1.5rem);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-color);
        background: rgba(139, 21, 56, 0.1);
    }

    .hamburger {
        display: flex !important;
    }

    .btn-primary {
        padding: clamp(0.5rem, 1.5vw, 0.8rem) clamp(1rem, 2.5vw, 1.5rem);
        font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: clamp(0.6rem, 2vw, 1rem) clamp(0.75rem, 3vw, 1.5rem);
    }

    .logo-img {
        width: clamp(80px, 20vw, 120px);
        height: auto;
    }

    .nav-buttons {
        gap: clamp(0.3rem, 1.5vw, 0.75rem);
    }

    .hamburger span {
        width: clamp(18px, 4vw, 22px);
        height: clamp(1.5px, 0.5vw, 2.5px);
    }

    .btn-primary {
        padding: clamp(0.4rem, 1vw, 0.6rem) clamp(0.8rem, 2vw, 1rem);
        font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    }
}

@media (max-width: 360px) {
    .nav-container {
        padding: clamp(0.5rem, 1.5vw, 0.8rem) clamp(0.5rem, 2vw, 1rem);
        gap: clamp(0.2rem, 1vw, 0.5rem);
    }

    .logo-img {
        width: clamp(60px, 15vw, 100px);
        height: auto;
    }

    .logo-text h1 {
        font-size: clamp(0.8rem, 3vw, 1rem);
    }

    .btn-primary {
        padding: clamp(0.3rem, 0.8vw, 0.5rem) clamp(0.6rem, 1.5vw, 0.8rem);
        font-size: clamp(0.6rem, 1vw, 0.75rem);
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(139, 21, 56, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    width: fit-content;
    animation: fadeInUp 1s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.2s both;
    text-align: left;
}

.text-gradient {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rotating-text {
    display: inline-block;
    position: relative;
    height: 1.2em;
    vertical-align: bottom;
}

.rotating-text span {
    position: absolute;
    opacity: 0;
    animation: rotate 9s linear infinite;
}

.rotating-text span:nth-child(1) { animation-delay: 0s; }
.rotating-text span:nth-child(2) { animation-delay: 3s; }
.rotating-text span:nth-child(3) { animation-delay: 6s; }

@keyframes rotate {
    0%, 33% { opacity: 0; transform: translateY(20px); }
    33.33%, 66.33% { opacity: 1; transform: translateY(0); }
    66.66%, 100% { opacity: 0; transform: translateY(-20px); }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.4s both;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease 0.8s both;
    text-align: left;
}

.stat-item {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
    animation: fadeIn 1s ease 1s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.floating-card h4 {
    color: var(--white);
    font-size: 1rem;
}

.card-1 { top: 10%; left: 10%; animation-delay: 0s; }
.card-2 { top: 50%; right: 10%; animation-delay: 1s; }
.card-3 { bottom: 10%; left: 30%; animation-delay: 2s; }

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.shape-1 { width: 300px; height: 300px; background: var(--primary-color); top: 20%; right: 10%; }
.shape-2 { width: 200px; height: 200px; background: var(--tech-blue); bottom: 30%; left: 20%; animation-delay: 2s; }
.shape-3 { width: 250px; height: 250px; background: var(--tech-cyan); top: 60%; right: 30%; animation-delay: 4s; }

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
    animation: fadeIn 1s ease 2s both;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-light);
    border-radius: 20px;
    margin: 1rem auto 0;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== SECTION STYLING ===== */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(139, 21, 56, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--dark-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 21, 56, 0.3);
    border-color: var(--primary-color);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: var(--primary-color);
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* ===== EXPERTISE SECTION ===== */
.expertise-section {
    background: var(--dark);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.expertise-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.expertise-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(139, 21, 56, 0.2);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
    transform: rotateZ(360deg);
}

.expertise-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.expertise-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 998;
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-visual {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 6rem 1rem 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .logo-text h1 {
        font-size: 1rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .btn-primary {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .nav-container {
        padding: 1rem 1rem;
    }

    .logo-img {
        width: 120px;
        height: 60px;
    }
}