/* ============================================ */
/* VELOCE TECH - ENHANCED STYLESHEET            */
/* ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

:root {
    --bg-primary: #FDF8F2;
    --text-primary: #2C3E50;
    --brand-primary: #C73D2B;
    --brand-light: #e64d3a;
    --brand-soft: #f9e4df;
    --border-light: #eae2d9;
    --card-bg: #ffffff;
    --shadow-subtle: 0 4px 15px -8px rgba(0,0,0,0.1);
    --body-text: 12px;
    --nav-text: 12px;
    --button-text: 11px;
    --space-xs: 3px;
    --space-sm: 5px;
    --space-md: 10px;
    --space-lg: 15px;
    --space-xl: 20px;
    --space-xxl: 25px;
    --container-max: 1200px;
    --container-padding: 15px;
    --border-radius-card: 12px;
    --border-radius-button: 30px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-size: var(--body-text);
    line-height: 1.4;
    font-weight: 400;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 2.6rem); margin-bottom: 10px; }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 12px; }
h3 { font-size: 1.3rem; font-family: 'Poppins', sans-serif; font-weight: 600; margin-bottom: 6px; }
h4 { font-size: 1.1rem; font-family: 'Poppins', sans-serif; font-weight: 600; margin-bottom: 5px; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================ */
/* HEADER & NAVIGATION - ENHANCED              */
/* ============================================ */
.header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(4px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(199,61,43,0.15);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    width: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    padding: 10px var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

/* Logo with rounded container */
.logo-img {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff9f5, #fff2ea);
    padding: 6px 12px;
    border-radius: 60px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.8);
    transition: all 0.2s ease;
}

.logo-img img {
    width: 180px;
    height: 50px;
    object-fit: contain;
    display: block;
    transition: transform 0.2s;
}

.logo-img:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(199,61,43,0.1);
}

.logo-img:hover img {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-md);
}

.nav-links a {
    font-size: var(--nav-text);
    font-weight: 500;
    padding: 6px 0;
    position: relative;
    white-space: nowrap;
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-primary), #e68a7a);
    transition: width 0.25s ease;
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-primary);
}

.nav-buttons {
    display: flex;
    gap: var(--space-xs);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 16px;
    font-size: var(--button-text);
    font-weight: 600;
    border-radius: var(--border-radius-button);
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1.5px solid transparent;
    letter-spacing: 0.02em;
}

.btn-small { padding: 4px 14px; font-size: 10px; }
.btn-large { padding: 8px 24px; font-size: 12px; }

.btn-primary {
    background-color: var(--brand-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--brand-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(199,61,43,0.2);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.btn-outline:hover {
    background-color: var(--brand-primary);
    color: white;
    transform: translateY(-1px);
}

/* ============================================ */
/* HERO SECTION                                 */
/* ============================================ */
.hero {
    padding: 30px 0 25px;
    background: linear-gradient(135deg, var(--bg-primary) 60%, rgba(199,61,43,0.03));
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.hero-content {
    max-width: 550px;
}

.hero-pre {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-primary);
    margin-bottom: 8px;
    display: block;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 2.6rem);
    line-height: 1.1;
    margin-bottom: 12px;
}

.title-accent {
    color: var(--brand-primary);
    display: block;
    font-weight: 800;
}

.hero-description {
    font-size: 13px;
    color: #4a5568;
    margin-bottom: 18px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 20px;
    font-size: 11px;
    color: #5a6a7a;
    flex-wrap: wrap;
}

.hero-stats i {
    color: var(--brand-primary);
    margin-right: 4px;
}

.hero-image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-light);
    height: 100%;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-container:hover img {
    transform: scale(1.03);
}

/* ============================================ */
/* PROGRESS TRACKER                             */
/* ============================================ */
.progress-section {
    background-color: white;
    border-radius: 40px;
    padding: 18px 22px;
    margin: 15px 0 25px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-subtle);
    overflow-x: auto;
}

.progress-section h3 {
    margin-bottom: 15px;
}

.progress-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    word-break: break-word;
}

.progress-status {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e7d32;
    font-size: 1rem;
}

.progress-status.done {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.progress-status.in-progress {
    background-color: #fff8e1;
    color: #f57c00;
}

.progress-content {
    flex: 1;
    min-width: 0;
}

.progress-content h4 {
    margin-bottom: 2px;
    font-size: 13px;
    word-break: break-word;
}

.progress-content p {
    color: #6b7a8a;
    font-size: 10px;
    word-break: break-word;
}

/* ============================================ */
/* SECTION LAYOUT                               */
/* ============================================ */
.section {
    padding: 30px 0 25px;
}

.bg-light {
    background-color: rgba(199,61,43,0.02);
}

.section-header {
    text-align: center;
    margin-bottom: 22px;
}

.section-subtitle {
    font-size: 13px;
    color: #5a6a7a;
    max-width: 650px;
    margin: 0 auto;
}

/* ============================================ */
/* SERVICE CATEGORIES                           */
/* ============================================ */
.main-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 25px;
}

.category-card {
    background-color: white;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-subtle);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-3px);
}

.category-image {
    height: 160px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    padding: 18px;
}

.category-icon {
    width: 48px;
    height: 48px;
    background-color: var(--brand-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.category-icon i {
    font-size: 1.5rem;
    color: var(--brand-primary);
}

.category-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.category-desc {
    color: #5a6a7a;
    margin-bottom: 15px;
    line-height: 1.4;
    font-size: 12px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 10px 0;
}

.service-tag {
    background-color: var(--brand-soft);
    color: var(--brand-primary);
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 9px;
    font-weight: 500;
}

.learn-more {
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 11px;
    display: inline-block;
    margin-top: 5px;
}

.learn-more:hover {
    text-decoration: underline;
}

/* ============================================ */
/* SERVICE SUB-CARDS - IMPROVED MOBILE BEHAVIOR */
/* ============================================ */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.service-subcard {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    min-width: 0; /* Allows shrinking below content width */
}

.service-subcard:hover {
    box-shadow: var(--shadow-subtle);
    transform: translateY(-2px);
}

.service-subcard-image {
    height: 110px;
    overflow: hidden;
}

.service-subcard-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-subcard:hover .service-subcard-image img {
    transform: scale(1.05);
}

.service-subcard-content {
    padding: 14px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.service-subcard h4 {
    color: var(--brand-primary);
    margin-bottom: 8px;
    font-size: 1rem;
}

.service-subcard ul {
    list-style: none;
}

.service-subcard li {
    margin-bottom: 4px;
    font-size: 11px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    word-break: break-word;
}

.service-subcard li i {
    color: var(--brand-primary);
    font-size: 9px;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-subcard .sub-desc {
    color: #5a6a7a;
    margin-top: 8px;
    font-size: 10px;
    border-top: 1px dashed var(--border-light);
    padding-top: 6px;
}

/* Hybrid grid (3 items) specific */
.service-grid.hybrid-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (min-width: 1200px) {
    .service-grid.hybrid-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================ */
/* PLATFORMS, HOSTING, SOCIAL, PORTFOLIO        */
/* ============================================ */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.platform-card {
    background-color: white;
    border-radius: 40px;
    padding: 15px 12px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-2px);
    border-color: var(--brand-primary);
}

.platform-image {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--brand-soft);
}

.platform-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.platform-card h4 {
    margin-bottom: 4px;
    font-size: 13px;
}

.platform-accounts {
    font-size: 10px;
    color: #6b7a8a;
}

.hosting-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 20px 0;
}

.hosting-card {
    background-color: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.hosting-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-subtle);
}

.hosting-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
}

.hosting-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hosting-content {
    padding: 15px;
    flex: 1;
}

.hosting-content h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.hosting-content p {
    color: #5a6a7a;
    margin-bottom: 4px;
    font-size: 11px;
}

.hosting-company {
    font-weight: 600;
    color: var(--brand-primary);
    font-size: 11px;
}

.social-section {
    background-color: white;
    border-radius: 40px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid var(--border-light);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    text-align: center;
}

.social-item {
    padding: 10px;
    transition: transform 0.3s ease;
}

.social-item:hover {
    transform: translateY(-2px);
}

.social-avatar {
    width: 60px;
    height: 60px;
    margin: 0 auto 8px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--brand-soft);
}

.social-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-handle {
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 11px;
}

.social-stats {
    font-size: 10px;
    color: #6b7a8a;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.portfolio-item {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-subtle);
}

.portfolio-image {
    height: 160px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 14px;
    word-break: break-word;
}

.portfolio-category {
    font-size: 9px;
    text-transform: uppercase;
    color: var(--brand-primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.portfolio-content h4 {
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.portfolio-content p {
    color: #5a6a7a;
    font-size: 11px;
    margin-bottom: 10px;
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    background-color: white;
    padding: 18px 15px;
    border-radius: 40px;
    border: 1px solid var(--border-light);
    margin: 20px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--brand-primary);
    line-height: 1;
}

.stat-label {
    font-size: 10px;
    color: #6b7a8a;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--text-primary) 0%, #1a2b38 100%);
    color: white;
    padding: 35px;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    background-image: url('https://images.pexels.com/photos/3183150/pexels-photo-3183150.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.cta-banner h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.cta-banner p {
    opacity: 0.9;
    font-size: 13px;
}

.cta-banner .btn-primary {
    background-color: white;
    color: var(--text-primary);
}

.cta-banner .btn-primary:hover {
    background-color: rgba(255,255,255,0.9);
}

/* ============================================ */
/* CONTACT PAGE STYLES                          */
/* ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 20px 0;
}

.contact-info h3, .contact-form h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
}

.contact-form button {
    margin-top: 5px;
}

/* Form status messages */
.form-success {
    color: #2e7d32;
    background: #e8f5e9;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
}

.form-error {
    color: #c62828;
    background: #ffebee;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
}

/* ============================================ */
/* FOOTER – CLEAN BALANCED VERSION              */
/* ============================================ */
.footer {
    background-color: #1a2634;
    color: rgba(255, 255, 255, 0.8);
    padding: 25px 0 15px;
    margin-top: 40px;
    border-radius: 30px 30px 0 0;
    font-size: 11px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.footer-col h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 13px;
}

/* Contact */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
}

.footer-contact-item i {
    color: var(--brand-primary);
}

/* Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 4px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Social */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

.footer-social a {
    color: white;
    font-size: 13px;
    transition: transform 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    color: var(--brand-primary);
}

/* Bottom */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 10px;
    font-size: 10px;
}

/* ============================================ */
/* HAMBURGER MENU                               */
/* ============================================ */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.bar {
    width: 22px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================ */
/* FLOATING WHATSAPP ICON                       */
/* ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b359;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ============================================ */
/* RESPONSIVE BREAKPOINTS                       */
/* ============================================ */
@media (max-width: 1024px) {
    .main-categories, .portfolio-grid, .platforms-grid, .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-bar {
        grid-template-columns: repeat(3, 1fr);
    }
    .hosting-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 30px;
    }
}

@media (max-width: 900px) {
    .navbar {
        min-height: 70px;
    }
    .logo-img {
        padding: 4px 10px;
    }
    .logo-img img {
        width: 130px;
        height: 38px;
    }
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        border-top: 1px solid var(--border-light);
        display: none;
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .nav-links a::after {
        bottom: -4px;
    }
    .nav-buttons {
        width: 100%;
        justify-content: center;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .hero-content {
        max-width: 100%;
    }
    .progress-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .main-categories, .portfolio-grid, .platforms-grid, .social-grid {
        grid-template-columns: 1fr;
    }
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer {
        border-radius: 25px 25px 0 0;
        padding: 20px 0 12px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    .footer-col {
        align-items: center;
        text-align: center;
    }
    .footer-contact-item {
        justify-content: center;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-stats {
        justify-content: space-between;
    }
    .stats-bar {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .hosting-card {
        flex-direction: column;
        text-align: center;
    }
    .hosting-image {
        width: 100%;
        height: 120px;
    }
    .cta-banner {
        flex-direction: column;
        text-align: center;
    }
    .progress-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .progress-item {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    .progress-status {
        width: 40px;
        height: 40px;
    }
    .progress-content h4 {
        font-size: 14px;
    }
    .progress-content p {
        font-size: 11px;
    }
    .progress-section {
        padding: 15px;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    /* Extra mobile fixes for service boxes */
    .service-subcard-content {
        padding: 12px;
    }
    .service-subcard li {
        font-size: 10px;
        gap: 5px;
    }
    .service-subcard h4 {
        font-size: 0.9rem;
    }
}

/* ============================================ */
/* EXTRA SMALL DEVICES (<= 480px)               */
/* ============================================ */
@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    .service-grid.hybrid-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== GLOBAL HEADER COLOR SWAP ===== */
/* Makes the header background the site's cream, and the logo container white */
.header {
    background: var(--bg-primary) !important;   /* Use the site's cream color (#FDF8F2) */
}

.logo-img {
    background: #ffffff !important;             /* White logo box */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);     /* subtle shadow to lift logo */
}