/* ========================================
   VELOCITY AUTO GARAGE - PROFESSIONAL STYLESHEET
   Modern, Clean, & Corporate Design
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
    /* Primary Colors */
    --primary-navy: #0A2647;
    --primary-blue: #144272;
    --accent-blue: #205295;
    --light-blue: #2C74B3;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --gray: #E8EDF2;
    --dark-gray: #64748B;
    --text-dark: #1E293B;
    
    /* Accent Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 38, 71, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 38, 71, 0.12);
    --shadow-lg: 0 8px 32px rgba(10, 38, 71, 0.16);
    --shadow-xl: 0 16px 48px rgba(10, 38, 71, 0.20);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========== CONTAINER ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 38, 71, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.nav-brand i {
    font-size: 28px;
    color: var(--light-blue);
}

.brand-text strong {
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

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

.btn-primary-nav {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(44, 116, 179, 0.3);
    transition: var(--transition-base);
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 116, 179, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-base);
}

.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);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 38, 71, 0.95), rgba(20, 66, 114, 0.85));
    z-index: -1;
}

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

.hero-text {
    max-width: 700px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    margin-top: 40px;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--light-blue), #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 8px 24px rgba(44, 116, 179, 0.3);
    transition: var(--transition-base);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(44, 116, 179, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-base);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.feature-item i {
    font-size: 24px;
    color: var(--light-blue);
}

.feature-item span {
    font-size: 15px;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    margin: 0 auto 10px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

.scroll-indicator span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========== STATISTICS SECTION ========== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 48px;
    color: var(--light-blue);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(44, 116, 179, 0.1);
    color: var(--accent-blue);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 17px;
    color: var(--dark-gray);
    line-height: 1.8;
}

/* ========== SERVICES PREVIEW ========== */
.services-preview {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    position: relative;
    padding: 40px 30px;
    background: var(--white);
    border: 2px solid var(--gray);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.service-card:hover {
    border-color: var(--light-blue);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
    border-color: var(--primary-blue);
}

.service-card.featured * {
    color: var(--white) !important;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    padding: 6px 16px;
    background: var(--warning);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(44, 116, 179, 0.1), rgba(32, 82, 149, 0.1));
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.15);
}

.service-icon i {
    font-size: 36px;
    color: var(--accent-blue);
}

.service-card.featured .service-icon i {
    color: var(--white);
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.service-features i {
    color: var(--success);
    font-size: 16px;
}

.service-card.featured .service-features i {
    color: var(--light-blue);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 15px;
}

.service-link:hover {
    gap: 12px;
}

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

.btn-outline-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition-base);
}

.btn-outline-large:hover {
    background: var(--accent-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ========== WHY CHOOSE US ========== */
.why-choose-us {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.why-intro {
    font-size: 17px;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.why-items {
    margin-bottom: 40px;
}

.why-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.why-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    border-radius: var(--radius-md);
}

.why-icon i {
    font-size: 28px;
    color: var(--white);
}

.why-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.why-text p {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.7;
}

.why-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.image-badge i {
    font-size: 32px;
    color: var(--warning);
}

.image-badge strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
}

.image-badge p {
    font-size: 13px;
    color: var(--dark-gray);
    margin: 0;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 35px 30px;
    background: var(--white);
    border: 2px solid var(--gray);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    border-color: var(--light-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--warning);
    font-size: 18px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.testimonial-author p {
    font-size: 13px;
    color: var(--dark-gray);
}

/* ========== PROMO SECTION ========== */
.promo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
}

.promo-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
}

.promo-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--warning);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.promo-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.promo-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
}

.promo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.promo-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.promo-feature i {
    color: var(--success);
    font-size: 20px;
}

.promo-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.promo-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary-navy);
    padding: 80px 0 30px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand i {
    font-size: 28px;
    color: var(--light-blue);
}

.footer-brand strong {
    font-weight: 700;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 14px;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--light-blue);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--light-blue);
    font-size: 16px;
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: var(--light-blue);
}
/* ==========================================
   FOOTER FIX RESPONSIVE TOTAL
   ========================================== */

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

    .footer {
        padding: 60px 0 30px;
        margin-top: 60px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-quote blockquote {
        font-size: 22px;
    }

}


/* Mobile */
@media (max-width: 768px) {

    .footer {
        padding: 50px 0 20px;
        text-align: center;
    }

    /* Quote */
    .footer-quote {
        margin-bottom: 40px;
    }

    .footer-quote blockquote {
        font-size: 18px;
        line-height: 1.6;
    }

    /* CTA Section */
    .footer-cta-section {
        padding: 40px 0;
        margin-bottom: 40px;
    }

    .footer-cta-section h3 {
        font-size: 22px;
    }

    .footer-cta-section p {
        font-size: 14px;
    }

    /* GRID JADI 1 KOLOM */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
        margin-bottom: 30px;
    }

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

    .footer-col ul {
        padding: 0;
    }

    .footer-col ul li {
        margin-bottom: 8px;
    }

    /* Social Links */
    .social-links {
        align-items: center;
    }

    /* Footer Bottom */
    .footer-bottom {
        padding-top: 20px;
    }

}


/* Small Mobile */
@media (max-width: 480px) {

    .footer-quote blockquote {
        font-size: 16px;
    }

    .footer-cta-section h3 {
        font-size: 20px;
    }

    .footer-col h4 {
        font-size: 15px;
    }

    .footer-col p,
    .footer-col ul li,
    .footer-bottom p {
        font-size: 13px;
    }

}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-blue), var(--light-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
    z-index: 998;
    animation: pulse-wa 2s infinite;
}

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

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes pulse-wa {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6);
    }
}

/* Fade In Animation for Elements */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================================================
   FULL RESPONSIVE SYSTEM
   Arsiteka Living Studio
   ====================================================== */


/* ===== EXTRA LARGE SCREEN ===== */
@media (min-width: 1400px) {

    .container {
        max-width: 1320px;
    }

    .hero-title {
        font-size: 80px;
    }

}


/* ===== LAPTOP & TABLET LANDSCAPE ===== */
@media (max-width: 1200px) {

    .projects-grid,
    .portfolio-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


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

    :root {
        --section-padding: 80px 0;
    }

    /* Hero */
    .hero-title {
        font-size: 48px;
    }

    /* Grid Layout */
    .story-grid,
    .vm-grid,
    .service-card,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .software-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .duration-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Timeline */
    .timeline-item {
        grid-template-columns: 1fr;
    }

}


/* ===== MOBILE ===== */
@media (max-width: 768px) {

    html {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    :root {
        --section-padding: 60px 0;
    }

    /* ================= NAVBAR ================= */

    /* =========================
   MOBILE NAVBAR FIX
========================= */
@media (max-width: 768px) {

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #fff;
        transition: 0.3s;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #0f172a;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: 0.3s ease;
        gap: 1.5rem;
    }

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

    .nav-link {
        font-size: 1.2rem;
    }
}


    /* ================= HERO ================= */

    .hero {
        min-height: 100vh;
        height: auto;
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 34px;
        line-height: 1.3;
    }

    .hero-title br,
    .hero-subtitle br {
        display: none;
    }

    .hero-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }


    /* ================= SECTION ================= */

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 15px;
    }


    /* ================= GRID ================= */

    .projects-grid,
    .portfolio-grid,
    .testimonials-grid,
    .team-grid,
    .values-grid,
    .stats-grid {
        grid-template-columns: 1fr !important;
    }


    /* ================= BLOG ================= */

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-image {
        height: 240px;
    }


    /* ================= FORM ================= */

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

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }


    /* ================= FOOTER ================= */

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

    .software-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .duration-grid {
        grid-template-columns: 1fr;
    }


    /* WhatsApp */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

}


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

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

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

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .why-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ===================================
   MOBILE (max 768px)
=================================== */
@media (max-width: 768px) {

    .nav-menu {
        width: 100%;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .stats-grid,
    .services-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .promo-title {
        font-size: 1.6rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}


/* ===================================
   SMALL MOBILE (max 480px)
=================================== */
@media (max-width: 480px) {

    .container {
        padding: 0 1rem;
    }

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

    .section-title {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline-large {
        width: 100%;
        text-align: center;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .promo-card {
        padding: 2rem 1.5rem;
    }
}