/* RCONSOFT - Complete Responsive Stylesheet */
/* ========================================== */

:root {
    --sky-primary: #0ea5e9;
    --sky-dark: #0284c7;
    --sky-light: #e0f2fe;
    --sky-lighter: #f0f9ff;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --accent: #0ea5e9;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--gray-900);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== LOADING SCREEN ===== */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--sky-lighter);
    border-top-color: var(--sky-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    color: var(--gray-400);
    font-weight: 500;
    font-size: 0.95rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--gray-900);
    flex-shrink: 0;
}

.logo-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--sky-primary), var(--sky-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.logo span { color: var(--sky-primary); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-600);
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--sky-primary);
    background: var(--sky-lighter);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 16px; right: 16px;
    height: 2px;
    background: var(--sky-primary);
    border-radius: 2px;
}

.nav-cta {
    background: linear-gradient(135deg, var(--sky-primary), var(--sky-dark));
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-800);
    cursor: pointer;
    padding: 8px;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: white;
    z-index: 1001;
    padding: 80px 32px 32px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.open { right: 0; }

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-800);
}

.mobile-menu a:hover { color: var(--sky-primary); }

.mobile-close {
    position: absolute;
    top: 24px; right: 24px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-800);
    cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sky-primary), var(--sky-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

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

.btn-outline:hover {
    background: var(--sky-primary);
    color: white;
    transform: translateY(-3px);
}

.btn-white {
    background: white;
    color: var(--sky-primary);
    box-shadow: var(--shadow);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 6px 20px;
    background: var(--sky-lighter);
    color: var(--sky-primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

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

/* ===== CARDS ===== */
.card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: all 0.4s ease;
}

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

.card-icon {
    width: 64px; height: 64px;
    background: var(--sky-lighter);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--sky-primary);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    background: linear-gradient(135deg, var(--sky-primary), var(--sky-dark));
    color: white;
    transform: scale(1.1) rotate(-5deg);
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 80px 0 30px;
}

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

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
}

.footer-brand p {
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.footer-social a {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--sky-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

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

.footer-links a {
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover { color: var(--sky-primary); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item i {
    color: var(--sky-primary);
    margin-top: 4px;
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
    position: fixed;
    right: 24px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sticky-btn {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.sticky-btn:hover { transform: scale(1.15); }

.sticky-btn .tooltip {
    position: absolute;
    right: 68px;
    background: var(--gray-900);
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.sticky-btn:hover .tooltip {
    opacity: 1;
    right: 72px;
}

.sticky-phone { background: linear-gradient(135deg, #ef4444, #dc2626); }
.sticky-whatsapp { background: linear-gradient(135deg, #22c55e, #16a34a); }
.sticky-email { background: linear-gradient(135deg, var(--sky-primary), var(--sky-dark)); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: var(--sky-lighter);
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-100);
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--gray-400);
    flex-wrap: wrap;
}

.breadcrumb-inner a:hover { color: var(--sky-primary); }

.breadcrumb-inner .current {
    color: var(--gray-800);
    font-weight: 600;
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--sky-lighter) 0%, var(--sky-light) 50%, var(--white) 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--gray-400);
    max-width: 600px;
}

/* ===== SERVICE DETAIL ===== */
.service-detail { padding: 80px 0; }

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-detail-content p {
    color: var(--gray-400);
    margin-bottom: 24px;
    line-height: 1.8;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature-list li i {
    width: 28px; height: 28px;
    background: var(--sky-lighter);
    color: var(--sky-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.service-detail-image { position: relative; }

.service-detail-image .img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--sky-lighter), var(--sky-light));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--sky-primary);
    box-shadow: var(--shadow-lg);
}

/* ===== PROCESS STEPS ===== */
.process-section {
    background: var(--gray-50);
    padding: 80px 0;
}

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

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px; right: -16px;
    width: 32px; height: 2px;
    background: var(--sky-primary);
    opacity: 0.3;
}

.process-number {
    width: 80px; height: 80px;
    background: white;
    border: 3px solid var(--sky-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--sky-primary);
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

/* ===== TECH STACK ===== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.tech-item {
    background: white;
    border: 2px solid var(--gray-100);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: var(--sky-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--sky-primary);
    margin-bottom: 12px;
    display: block;
}

.tech-item span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-800);
}

/* ===== FAQ ===== */
.faq-item {
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover { border-color: var(--sky-light); }

.faq-question {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    gap: 16px;
}

.faq-question i {
    color: var(--sky-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--gray-400);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
    max-height: 300px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--sky-primary), var(--sky-dark));
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-section p {
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FORM STYLES ===== */
.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--sky-primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-select { cursor: pointer; }

.form-textarea { resize: vertical; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sky-primary), var(--sky-dark));
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RIPPLE EFFECT ===== */
@keyframes ripple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* ===== HERO RESPONSIVE ===== */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--gray-900);
}

.hero-text {
    font-size: 1.15rem;
    color: var(--gray-400);
    margin-bottom: 32px;
    line-height: 1.8;
    max-width: 520px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.hero-stat-divider {
    width: 1px;
    background: var(--gray-200);
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== PORTFOLIO GRID ===== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    min-width: 380px;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
    scroll-snap-align: start;
    border: 1px solid var(--gray-100);
}

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

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: 20px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    border-color: var(--sky-primary);
    transform: translateX(8px);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-icon-phone { background: linear-gradient(135deg, var(--sky-primary), var(--sky-dark)); }
.contact-icon-whatsapp { background: linear-gradient(135deg, #22c55e, #16a34a); }
.contact-icon-email { background: linear-gradient(135deg, #f59e0b, #d97706); }
.contact-icon-clock { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.contact-icon-location { background: linear-gradient(135deg, #ec4899, #db2777); }

/* ===== TEAM GRID ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: 700;
}

/* ===== WHY CHOOSE GRID ===== */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== STATS BAR ===== */
.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

/* ===== RESPONSIVE: TABLET (1024px) ===== */
@media (max-width: 1024px) {
    .container { padding: 0 20px; }

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

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

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

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

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

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .process-step:not(:last-child)::after {
        display: none;
    }

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

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

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

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

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

    .page-hero h1 { font-size: 2.5rem; }

    .sticky-cta {
        right: 16px;
        bottom: 80px;
    }

    .sticky-btn {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
}

/* ===== RESPONSIVE: MOBILE (768px) ===== */
@media (max-width: 768px) {
    .container { padding: 0 16px; }

    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }

    .hero-title { font-size: 2rem; }
    .hero-text { font-size: 1rem; }
    .hero-stats { gap: 20px; margin-top: 32px; }
    .hero-stat-divider { display: none; }

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

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

    .testimonial-card {
        min-width: 300px;
        padding: 28px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

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

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

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .card {
        padding: 28px;
    }

    .service-detail {
        padding: 60px 0;
    }

    .service-detail-content h2 {
        font-size: 1.6rem;
    }

    .process-section {
        padding: 60px 0;
    }

    .faq-question {
        padding: 20px 24px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 24px;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 20px;
    }

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

    .contact-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .sticky-cta {
        right: 12px;
        bottom: 70px;
        gap: 8px;
    }

    .sticky-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .sticky-btn .tooltip {
        display: none;
    }

    .back-to-top {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        bottom: 16px;
        left: 16px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .navbar-inner {
        height: 64px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .hero-grid .animate-on-scroll.delay-2 {
        order: -1;
    }
}

/* ===== RESPONSIVE: SMALL MOBILE (480px) ===== */
@media (max-width: 480px) {
    .container { padding: 0 12px; }

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

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

    .page-hero h1 { font-size: 1.5rem; }

    .cta-section h2 { font-size: 1.5rem; }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
    }

    .card {
        padding: 20px;
        border-radius: 16px;
    }

    .card-icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }

    .testimonial-card {
        min-width: 280px;
        padding: 24px;
    }

    .process-number {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    .tech-item {
        padding: 16px;
    }

    .tech-item i {
        font-size: 2rem;
    }

    .team-avatar {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }

    .stats-bar-grid .counter {
        font-size: 2.5rem !important;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
    }

    .mobile-menu {
        width: 85%;
        padding: 70px 24px 24px;
    }
}

/* ===== HORIZONTAL SCROLL HIDE ===== */
.testimonials-scroll::-webkit-scrollbar {
    height: 6px;
}

.testimonials-scroll::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 10px;
}

.testimonials-scroll::-webkit-scrollbar-thumb {
    background: var(--sky-primary);
    border-radius: 10px;
}


/* ========================================== */
/* RESPONSIVE GRID UTILITIES - ADDED 2026     */
/* ========================================== */

/* ---- Base responsive grid classes ---- */
.r-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.r-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.r-grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.r-grid-contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.r-grid-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

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

.r-grid-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.r-grid-portfolio {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.r-grid-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: center;
}

.r-grid-team {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.r-grid-why {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.r-grid-process {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.r-grid-tech {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Service cards grid (services page) */
.r-grid-service-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.r-grid-service-cards .service-card-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
}

/* ---- Tablet (640px+) ---- */
@media (min-width: 640px) {
    .r-grid-2 { grid-template-columns: repeat(2, 1fr); }
    .r-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .r-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .r-grid-stats { grid-template-columns: repeat(2, 1fr); }
    .r-grid-team { grid-template-columns: repeat(2, 1fr); }
    .r-grid-why { grid-template-columns: repeat(2, 1fr); }
    .r-grid-process { grid-template-columns: repeat(2, 1fr); }
    .r-grid-tech { grid-template-columns: repeat(3, 1fr); }
    .r-grid-service-cards { grid-template-columns: repeat(2, 1fr); }
    .r-grid-service-cards .service-card-inner { grid-template-columns: auto 1fr; }
}

/* ---- Tablet landscape / small desktop (768px+) ---- */
@media (min-width: 768px) {
    .r-grid-contact { grid-template-columns: 1fr 1.2fr; gap: 60px; }
    .r-grid-hero { grid-template-columns: 1fr 1fr; gap: 60px; }
    .r-grid-about { grid-template-columns: 1fr 1fr; gap: 60px; }
    .r-grid-services { grid-template-columns: repeat(2, 1fr); }
    .r-grid-portfolio { grid-template-columns: repeat(2, 1fr); }
    .r-grid-stats { grid-template-columns: repeat(4, 1fr); }
    .r-grid-team { grid-template-columns: repeat(4, 1fr); }
    .r-grid-why { grid-template-columns: repeat(3, 1fr); }
    .r-grid-process { grid-template-columns: repeat(4, 1fr); }
    .r-grid-tech { grid-template-columns: repeat(6, 1fr); }
}

/* ---- Desktop (1024px+) ---- */
@media (min-width: 1024px) {
    .r-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .r-grid-4 { grid-template-columns: repeat(4, 1fr); }
    .r-grid-services { grid-template-columns: repeat(3, 1fr); }
    .r-grid-portfolio { grid-template-columns: repeat(3, 1fr); }
    .r-grid-about { grid-template-columns: 1fr 1fr; gap: 80px; }
    .r-grid-hero { grid-template-columns: 1fr 1fr; gap: 60px; }
}

/* ---- Large desktop (1280px+) ---- */
@media (min-width: 1280px) {
    .r-grid-service-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ========================================== */
/* CONTACT FORM RESPONSIVE                    */
/* ========================================== */

.contact-form-wrapper {
    background: white;
    border-radius: 32px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 20px;
        border-radius: 20px;
    }
    .contact-form-wrapper h3 {
        font-size: 1.4rem;
    }
}

/* ========================================== */
/* HERO STATS RESPONSIVE                      */
/* ========================================== */

.hero-stats-bar {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-divider {
    width: 1px;
    background: var(--gray-200);
}

@media (max-width: 640px) {
    .hero-stats-bar {
        gap: 16px;
        margin-top: 32px;
        justify-content: center;
    }
    .hero-stat-item {
        flex: 1;
        min-width: 80px;
    }
    .hero-stat-divider {
        display: none;
    }
    .hero-stat-item div:first-child {
        font-size: 1.6rem !important;
    }
}

/* ========================================== */
/* TESTIMONIALS RESPONSIVE                    */
/* ========================================== */

.testimonials-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    min-width: 340px;
    max-width: 380px;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
    scroll-snap-align: start;
    border: 1px solid var(--gray-100);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .testimonials-scroll {
        gap: 16px;
        padding-bottom: 16px;
    }
    .testimonial-card {
        min-width: 280px;
        max-width: 320px;
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        min-width: 260px;
        padding: 20px;
    }
}

/* ========================================== */
/* SERVICE DETAIL GRID RESPONSIVE             */
/* ========================================== */

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

/* ========================================== */
/* PROCESS STEPS RESPONSIVE                   */
/* ========================================== */

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: var(--sky-primary);
    opacity: 0.3;
}

@media (max-width: 767px) {
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (min-width: 640px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================== */
/* TECH GRID RESPONSIVE                       */
/* ========================================== */

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 640px) {
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* ========================================== */
/* PORTFOLIO GRID RESPONSIVE                  */
/* ========================================== */

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* ========================================== */
/* SERVICES GRID RESPONSIVE                   */
/* ========================================== */

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* ========================================== */
/* SERVICE CARDS (services.html) RESPONSIVE   */
/* ========================================== */

.service-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.service-card-item {
    display: block;
}

.service-card-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
}

@media (min-width: 640px) {
    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card-inner {
        grid-template-columns: auto 1fr;
        gap: 28px;
    }
}

/* ========================================== */
/* STATS BAR RESPONSIVE                       */
/* ========================================== */

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-bar-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
}

/* ========================================== */
/* TEAM GRID RESPONSIVE                       */
/* ========================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* ========================================== */
/* WHY CHOOSE GRID RESPONSIVE                 */
/* ========================================== */

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* ========================================== */
/* CONTACT INFO ITEMS RESPONSIVE              */
/* ========================================== */

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: 20px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    border-color: var(--sky-primary);
    transform: translateX(8px);
}

@media (max-width: 480px) {
    .contact-info-item {
        padding: 16px;
        gap: 12px;
    }
    .contact-info-item:hover {
        transform: translateX(4px);
    }
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ========================================== */
/* HERO SECTION RESPONSIVE                    */
/* ========================================== */

.hero-section {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 30%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 120px 0 80px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }
}

/* ========================================== */
/* CTA BUTTONS RESPONSIVE                     */
/* ========================================== */

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-buttons-center {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .cta-buttons .btn,
    .cta-buttons-center .btn {
        width: 100%;
    }
}

/* ========================================== */
/* FLOATING CARDS IN HERO RESPONSIVE          */
/* ========================================== */

.hero-floating-cards {
    position: relative;
}

.hero-floating-cards .float-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (max-width: 768px) {
    .hero-floating-cards .float-card {
        padding: 16px;
    }
    .hero-floating-cards .float-card div:first-child {
        width: 40px;
        height: 40px;
    }
}

/* ========================================== */
/* DECORATIVE ELEMENTS RESPONSIVE             */
/* ========================================== */

.hero-deco-1,
.hero-deco-2 {
    position: absolute;
    background: linear-gradient(135deg, var(--sky-primary), var(--sky-dark));
    border-radius: 24px;
    opacity: 0.2;
    z-index: 0;
}

.hero-deco-1 {
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
}

.hero-deco-2 {
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    opacity: 0.15;
}

@media (max-width: 768px) {
    .hero-deco-1,
    .hero-deco-2 {
        display: none;
    }
}

/* ========================================== */
/* ABOUT SECTION IMAGE RESPONSIVE             */
/* ========================================== */

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper .about-img {
    background: linear-gradient(135deg, var(--sky-lighter), var(--sky-light));
    border-radius: 32px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.about-image-wrapper .about-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: white;
    border-radius: 20px;
    padding: 24px 32px;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .about-image-wrapper .about-badge {
        bottom: -12px;
        right: -12px;
        padding: 16px 20px;
        border-radius: 16px;
    }
    .about-image-wrapper .about-badge div:first-child {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 480px) {
    .about-image-wrapper .about-badge {
        display: none;
    }
}

/* ========================================== */
/* PORTFOLIO CARD RESPONSIVE                  */
/* ========================================== */

.portfolio-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: white;
    border: 1px solid var(--gray-100);
    transition: all 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.portfolio-card .portfolio-img {
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-card .portfolio-img i {
    font-size: 5rem;
    color: white;
    opacity: 0.2;
}

@media (max-width: 640px) {
    .portfolio-card .portfolio-img i {
        font-size: 3rem;
    }
}

/* ========================================== */
/* STICKY CTA RESPONSIVE                      */
/* ========================================== */

@media (max-width: 768px) {
    .sticky-cta {
        right: 12px;
        bottom: 70px;
        gap: 8px;
    }
    .sticky-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    .sticky-btn .tooltip {
        display: none;
    }
}

/* ========================================== */
/* BACK TO TOP RESPONSIVE                     */
/* ========================================== */

@media (max-width: 768px) {
    .back-to-top {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        bottom: 16px;
        left: 16px;
    }
}

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

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .navbar-inner {
        height: 64px;
    }
    .logo {
        font-size: 1.3rem;
    }
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* ========================================== */
/* PAGE HERO RESPONSIVE                       */
/* ========================================== */

@media (max-width: 1024px) {
    .page-hero {
        padding: 120px 0 60px;
    }
    .page-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 50px;
    }
    .page-hero h1 {
        font-size: 1.8rem;
    }
    .page-hero p {
        font-size: 1rem;
    }
}

/* ========================================== */
/* SECTION SPACING RESPONSIVE                 */
/* ========================================== */

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 40px;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
    .service-detail {
        padding: 60px 0;
    }
    .process-section {
        padding: 60px 0;
    }
    .cta-section h2 {
        font-size: 1.8rem;
    }
    .cta-section p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
    .page-hero h1 {
        font-size: 1.5rem;
    }
    .cta-section h2 {
        font-size: 1.5rem;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    .card {
        padding: 24px;
        border-radius: 16px;
    }
    .card-icon {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }
    .process-number {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
    .tech-item {
        padding: 16px;
    }
    .tech-item i {
        font-size: 2rem;
    }
    .team-avatar {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }
    .contact-form-wrapper {
        padding: 20px;
    }
    .faq-question {
        padding: 20px 24px;
        font-size: 0.95rem;
    }
    .faq-answer {
        padding: 0 24px;
    }
    .faq-item.active .faq-answer {
        padding-bottom: 20px;
    }
}

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

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================== */
/* ANIMATED CARDS IN HERO RESPONSIVE          */
/* ========================================== */

@media (max-width: 768px) {
    .hero-section .hero-grid .animate-on-scroll.delay-2 {
        order: -1;
    }
}

/* ========================================== */
/* MOBILE MENU IMPROVEMENTS                   */
/* ========================================== */

@media (max-width: 480px) {
    .mobile-menu {
        width: 85%;
        padding: 70px 24px 24px;
    }
    .footer-social a {
        width: 38px;
        height: 38px;
    }
}
