/* ===================================
   REF - Recovery Egzersiz Fizyoterapi
   Corporate Website Styles
   Color Palette from Logo: #002B66 (Navy)
   =================================== */

/* CSS Custom Properties */
:root {
    --primary: #002B66;
    --primary-dark: #001A3D;
    --primary-light: #003D8F;
    --primary-50: #E6EDF5;
    --primary-100: #B3C9E0;
    --primary-200: #80A5CC;
    --primary-500: #002B66;

    --secondary: #2B303A;
    --secondary-light: #3D4451;
    --secondary-dark: #1A1E25;

    --accent: #0A8F96;
    --accent-light: #12B5BD;
    --accent-dark: #076A70;

    --bg-white: #FFFFFF;
    --bg-soft: #F8F9FA;
    --bg-light: #F0F2F5;
    --bg-dark: #0D1117;

    --text-primary: #1A1E25;
    --text-secondary: #4A5568;
    --text-muted: #718096;
    --text-light: #A0AEC0;
    --text-white: #FFFFFF;

    --border-light: #E2E8F0;
    --border-medium: #CBD5E0;

    --shadow-sm: 0 1px 3px rgba(0, 43, 102, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 43, 102, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 43, 102, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 43, 102, 0.15);

    --gradient-primary: linear-gradient(135deg, #002B66 0%, #003D8F 50%, #0A8F96 100%);
    --gradient-dark: linear-gradient(135deg, #0D1117 0%, #1A1E25 50%, #002B66 100%);
    --gradient-accent: linear-gradient(135deg, #0A8F96 0%, #12B5BD 100%);
    --gradient-subtle: linear-gradient(135deg, #F8F9FA 0%, #E6EDF5 100%);

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Lato', sans-serif;

    --section-padding: 100px;
    --container-max: 1280px;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Preloader
   =================================== */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden { opacity: 0; visibility: hidden; }

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

.preloader-logo-img {
    width: 160px;
    height: auto;
    margin: 0 auto 30px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--text-white);
    border-radius: var(--radius-full);
    animation: preloaderFill 1.5s ease forwards;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes preloaderFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ===================================
   Typography Utilities
   =================================== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(10, 143, 150, 0.08);
    border-radius: var(--radius-full);
    border: 1px solid rgba(10, 143, 150, 0.15);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.section-header { text-align: center; margin-bottom: 60px; }

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section { padding: var(--section-padding) 0; }

/* ===================================
   Button Styles
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
    white-space: nowrap;
}

.btn svg, .btn i { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: 0 4px 20px rgba(0, 43, 102, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 43, 102, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary-50);
    border-color: var(--primary);
}

.btn-lg { padding: 16px 32px; font-size: 0.95rem; }

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-medium);
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Nav Brand with Logo Images */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-logo {
    height: 38px;
    width: auto;
    transition: var(--transition-medium);
}

.nav-logo-white { display: block; }
.nav-logo-dark { display: none; }

.navbar.scrolled .nav-logo-white { display: none; }
.navbar.scrolled .nav-logo-dark { display: block; }

.nav-brand-name {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.3px;
    line-height: 1.3;
    transition: var(--transition-medium);
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 10px;
}

.navbar.scrolled .nav-brand-name {
    color: var(--text-secondary);
    border-color: var(--border-light);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    padding: 8px 12px;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
    background: rgba(255,255,255,0.1);
}

.navbar.scrolled .nav-link { color: var(--text-secondary); }

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary);
    background: var(--primary-50);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-link-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dropdown-chevron {
    width: 14px;
    height: 14px;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.nav-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--border-light);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.25s ease;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--primary-50);
    color: var(--primary);
}

.dropdown-item i, .dropdown-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--accent);
}

/* Nav CTA */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-white);
    transition: var(--transition-medium);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-cta:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-1px);
}

.navbar.scrolled .nav-cta {
    background: var(--gradient-primary);
    color: var(--text-white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 43, 102, 0.3);
}

.nav-cta-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* Mobile CTA - hidden on desktop */
.nav-menu-cta-wrapper { display: none; }
.nav-cta-mobile { display: none; }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition-medium);
}

.navbar.scrolled .nav-toggle span { background: var(--primary); }

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(10, 143, 150, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 43, 102, 0.1) 0%, transparent 50%);
    animation: heroPattern 15s ease-in-out infinite alternate;
}

@keyframes heroPattern {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 200px;
    background: linear-gradient(to top, var(--bg-white), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Hero Logo */
.hero-logo-area {
    margin-bottom: 16px;
}

.hero-logo-img {
    width: 180px;
    height: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(10, 143, 150, 0.12);
    border: 1px solid rgba(10, 143, 150, 0.25);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-light);
    letter-spacing: 2px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px; height: 8px;
    background: var(--accent-light);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title { margin-bottom: 20px; }

.hero-title-sub {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.hero-actions .btn-outline {
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.2);
}

.hero-actions .btn-outline:hover {
    color: var(--text-white);
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.hero-stat-label,
.hero-stat-label-single {
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

.hero-stat-label-single {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-light);
    padding: 8px 16px;
    border: 1px solid rgba(10, 143, 150, 0.3);
    border-radius: var(--radius-full);
    background: rgba(10, 143, 150, 0.08);
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
}

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; }

.hero-image-wrapper {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.hero-image-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: floatBadge 4s ease-in-out infinite;
}

.hero-image-badge i { width: 24px; height: 24px; color: var(--accent); }

.hero-image-badge span {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
}

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

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-mouse {
    width: 24px; height: 36px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px; height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 3px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

/* ===================================
   About Section
   =================================== */
.about { background: var(--bg-white); }

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

.about-images { position: relative; }

.about-img-main img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 190px;
    height: 190px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 4px solid var(--bg-white);
    box-shadow: var(--shadow-lg);
}

.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

.about-floating-card {
    position: absolute;
    top: 20px;
    right: -10px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: floatBadge 5s ease-in-out infinite;
}

.floating-card-icon {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-md);
    color: var(--primary);
}

.floating-card-icon i { width: 20px; height: 20px; }

.about-floating-card strong {
    display: block;
    font-size: 0.85rem;
    color: var(--primary);
}

.about-floating-card span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: var(--text-white);
    flex-shrink: 0;
}

.about-feature-icon i { width: 20px; height: 20px; }

.about-feature h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Mission & Vision */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    padding: 40px;
    background: var(--bg-soft);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: var(--transition-medium);
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.mv-icon {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: var(--text-white);
    margin-bottom: 20px;
}

.mv-icon i { width: 24px; height: 24px; }

.mv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
}

.mv-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===================================
   Services Section
   =================================== */
.services { background: var(--bg-soft); }

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.service-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-medium);
    white-space: nowrap;
}

.service-tab i { width: 18px; height: 18px; flex-shrink: 0; }

.service-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.service-tab.active {
    background: var(--gradient-primary);
    color: var(--text-white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 43, 102, 0.25);
}

.service-panel { display: none; }
.service-panel.active { display: block; animation: fadeIn 0.4s ease; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.service-panel-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-panel-text p {
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.service-list li i { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

.service-panel-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Sub Services */
.sub-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.sub-service-card {
    padding: 28px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition-medium);
    text-align: center;
}

.sub-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-100);
}

.sub-service-icon {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-md);
    color: var(--primary);
    margin: 0 auto 16px;
}

.sub-service-icon i { width: 24px; height: 24px; }

.sub-service-card h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.sub-service-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===================================
   Technology Section
   =================================== */
.technology { background: var(--bg-white); }

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

.tech-card {
    padding: 28px;
    background: var(--bg-soft);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition-medium);
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.tech-card-featured {
    grid-column: span 3;
    background: var(--gradient-dark);
    border-color: transparent;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    padding: 40px;
}

.tech-card-featured::after {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(10, 143, 150, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.tech-card-featured h3 { color: var(--text-white); font-size: 1.4rem; }
.tech-card-featured p { color: rgba(255,255,255,0.7); }

.tech-card-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.tech-card-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-md);
    color: var(--primary);
    margin-bottom: 16px;
}

.tech-card-featured .tech-card-icon {
    background: rgba(255,255,255,0.1);
    color: var(--accent-light);
}

.tech-card-icon i { width: 22px; height: 22px; }

.tech-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.tech-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.tech-card-tags {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.tech-card-tags span {
    padding: 4px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.15);
}

/* ===================================
   Process Section
   =================================== */
.process { background: var(--bg-soft); }

.process-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 28px;
    top: 0; bottom: 0;
    width: 2px;
    background: var(--border-light);
}

.process-step {
    display: flex;
    gap: 24px;
    margin-bottom: 36px;
    position: relative;
}

.process-step:last-child { margin-bottom: 0; }

.process-step-number {
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-white);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 43, 102, 0.25);
}

.process-step-content {
    padding: 24px 28px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    flex: 1;
    transition: var(--transition-medium);
}

.process-step-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.process-step-icon {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-sm);
    color: var(--primary);
    margin-bottom: 12px;
}

.process-step-icon i { width: 20px; height: 20px; }

.process-step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.process-step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===================================
   Team Section
   =================================== */
.team { background: var(--bg-white); }

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

.team-card {
    background: var(--bg-soft);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition-medium);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-card-founder { border-color: var(--primary-100); }

.team-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-card-image img { transform: scale(1.05); }

.team-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,43,102,0.6), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 16px;
    opacity: 0;
    transition: var(--transition-medium);
}

.team-card:hover .team-card-overlay { opacity: 1; }

.team-social {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--text-white);
    backdrop-filter: blur(10px);
}

.team-social:hover { background: rgba(255,255,255,0.3); }

.team-card-info { padding: 24px; }

.team-card-role {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.team-card-founder .team-card-role {
    background: var(--gradient-accent);
    color: var(--text-white);
}

.team-card:not(.team-card-founder) .team-card-role {
    background: var(--primary-50);
    color: var(--primary);
}

.team-card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.team-card-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===================================
   Partners Section
   =================================== */
.partners {
    background: var(--gradient-dark);
    color: var(--text-white);
}

.partners .section-label {
    background: rgba(10, 143, 150, 0.15);
    border-color: rgba(10, 143, 150, 0.3);
}

.partners .section-title { color: var(--text-white); }
.partners .section-subtitle { color: rgba(255,255,255,0.6); }

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

.partner-card {
    padding: 30px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-medium);
}

.partner-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.partner-icon {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 143, 150, 0.15);
    border-radius: var(--radius-md);
    color: var(--accent-light);
    margin: 0 auto 14px;
}

.partner-icon i { width: 24px; height: 24px; }

.partner-card h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
}

/* ===================================
   Gallery Section
   =================================== */
.gallery { background: var(--bg-white); }

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
}

.gallery-item-large {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,43,102,0.7), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-medium);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
}

/* ===================================
   FAQ Section
   =================================== */
.faq { background: var(--bg-soft); }

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.faq-header-side {
    position: sticky;
    top: 100px;
}

.faq-header-side .section-title {
    text-align: left;
}

.faq-header-side p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition-medium);
}

.faq-item.active {
    border-color: var(--primary-100);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
    width: 18px; height: 18px;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: var(--transition-medium);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer { max-height: 200px; }

.faq-answer p {
    padding: 0 22px 18px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   Contact Section
   =================================== */
.contact { background: var(--bg-white); }

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

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

.contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: var(--transition-medium);
}

.contact-card:hover {
    border-color: var(--primary-100);
    box-shadow: var(--shadow-sm);
}

.contact-card-icon {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-sm);
    color: var(--primary);
    flex-shrink: 0;
}

.contact-card-icon i,
.contact-card-icon svg { width: 18px; height: 18px; }

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-card a { color: var(--primary); font-weight: 500; }
.contact-card a:hover { text-decoration: underline; }

.contact-whatsapp-btn { margin-top: 8px; width: fit-content; }

.contact-map {
    min-height: 420px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo-img {
    width: 100px;
    height: auto;
    margin-bottom: 12px;
}

.footer-subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 6px;
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    line-height: 1.5;
}

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

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

.footer-social a:hover {
    background: var(--accent);
    color: var(--text-white);
}

.footer-social a i, .footer-social a svg { width: 16px; height: 16px; }

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 18px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    transition: var(--transition-fast);
}

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

.footer-contact ul { display: flex; flex-direction: column; gap: 12px; }

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}

.footer-contact li i,
.footer-contact li svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent-light); }

.footer-contact a {
    color: rgba(255,255,255,0.55);
    transition: var(--transition-fast);
}

.footer-contact a:hover { color: var(--accent-light); }

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-legal {
    margin-top: 8px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
}

.footer-powered-by {
    margin-top: 16px;
    display: flex;
    justify-content: center;
}

.powered-by-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition-medium);
}

.powered-by-link:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
}

.powered-by-link span {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.5px;
}

.powered-by-logo {
    height: 14px;
    width: auto;
    opacity: 0.5;
    transition: var(--transition-fast);
}

.powered-by-link:hover .powered-by-logo {
    opacity: 0.8;
}

/* ===================================
   WhatsApp Float
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    background: #25D366;
    color: var(--text-white);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-medium);
    animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i { width: 20px; height: 20px; }

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 35px rgba(37, 211, 102, 0.6); }
}

/* ===================================
   Back to Top
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 42px; height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    color: var(--primary);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-medium);
}

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

.back-to-top:hover {
    background: var(--primary);
    color: var(--text-white);
}

.back-to-top i { width: 18px; height: 18px; }

/* ===================================
   Scroll Reveal
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE - Tablet
   =================================== */
@media (max-width: 1024px) {
    :root { --section-padding: 80px; }

    .hero-content { grid-template-columns: 1fr; gap: 40px; padding-top: 100px; }
    .hero-visual { justify-content: center; }
    .hero-image { height: 380px; }
    .hero-image-wrapper { max-width: 340px; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-main img { height: 360px; }
    .about-img-secondary { bottom: -20px; right: 20px; width: 160px; height: 160px; }
    .about-floating-card { right: 10px; }

    .service-panel-grid { grid-template-columns: 1fr; }
    .service-panel-image img { height: 280px; }

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

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

    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .team-card-founder { grid-column: span 2; }
    .team-card-founder .team-card-image { height: 320px; }

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

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item-large { grid-column: span 2; }

    .faq-layout { grid-template-columns: 1fr; gap: 30px; }
    .faq-header-side { position: static; text-align: center; }
    .faq-header-side .section-title { text-align: center; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { min-height: 350px; }

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

/* ===================================
   RESPONSIVE - Mobile
   =================================== */
@media (max-width: 768px) {
    :root { --section-padding: 60px; }

    /* --- Body scroll lock when menu open --- */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    /* --- Nav Toggle (Hamburger) fix --- */
    .nav-toggle { display: flex; }

    .nav-toggle.active span {
        background: var(--primary) !important;
    }

    /* --- Mobile Menu --- */
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%;
        max-width: 320px;
        height: auto;
        max-height: 100vh;
        max-height: 100dvh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 80px 20px 28px;
        gap: 4px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.18);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1000;
        border-bottom-left-radius: var(--radius-xl);
    }

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

    .nav-menu > li {
        width: 100%;
    }

    .nav-menu .nav-link {
        display: block;
        color: var(--text-primary);
        width: 100%;
        padding: 14px 16px;
        font-size: 0.92rem;
        font-weight: 500;
        border-radius: var(--radius-sm);
        transition: var(--transition-fast);
        border-left: 3px solid transparent;
    }

    .nav-menu .nav-link:hover {
        color: var(--primary);
        background: var(--primary-50);
        border-left-color: var(--primary);
    }

    .nav-menu .nav-link.active {
        color: var(--primary);
        background: var(--primary-50);
        border-left-color: var(--primary);
        font-weight: 600;
    }

    /* Mobile Dropdown */
    .nav-dropdown { width: 100%; }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 4px 4px 4px 8px;
        min-width: auto;
        display: none;
        background: var(--bg-soft);
        border-radius: var(--radius-sm);
        margin: 2px 0;
        border-left: none;
    }

    /* Override desktop hover - mobile uses .open class via JS */
    .nav-dropdown:hover .nav-dropdown-menu {
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown:hover .dropdown-chevron {
        transform: none;
    }

    .dropdown-item {
        padding: 10px 12px;
        font-size: 0.85rem;
        border-radius: var(--radius-sm);
    }

    .dropdown-item i,
    .dropdown-item svg {
        display: none;
    }

    .dropdown-item:hover {
        background: var(--primary-50);
    }

    /* Dropdown chevron rotation */
    .nav-dropdown.open > .nav-link-dropdown .dropdown-chevron {
        transform: rotate(180deg);
    }

    /* --- Nav CTA on mobile --- */
    .nav-cta-desktop { display: none !important; }
    .nav-menu-cta-wrapper {
        display: block;
        width: 100%;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--border-light);
    }
    .nav-cta-mobile {
        display: flex !important;
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        background: var(--gradient-primary);
        color: var(--text-white);
        border-color: transparent;
        border-radius: var(--radius-full);
        font-family: var(--font-heading);
        font-size: 0.88rem;
        font-weight: 600;
        gap: 8px;
        align-items: center;
        box-shadow: 0 4px 15px rgba(0, 43, 102, 0.3);
        transition: var(--transition-medium);
    }
    .nav-cta-mobile:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(0, 43, 102, 0.4);
    }
    .nav-cta-text { display: inline; }

    /* --- Mobile Menu Overlay --- */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.45);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
        z-index: -1;
    }

    .nav-menu.active::before {
        opacity: 1;
        pointer-events: auto;
    }

    /* --- Hero Mobile --- */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 100px 20px 60px;
        text-align: center;
    }
    .hero-text { display: flex; flex-direction: column; align-items: center; }
    .hero-badge { font-size: 0.7rem; letter-spacing: 1.5px; padding: 6px 14px; }
    .hero-logo-img { width: 140px; }
    .hero-description { text-align: center; max-width: 100%; font-size: 1rem; }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    .hero-actions .btn-lg {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.88rem;
    }
    .hero-image { height: 320px; }
    .hero-image-badge { left: 10px; bottom: 20px; padding: 10px 14px; }
    .hero-image-badge span { font-size: 0.65rem; }
    .hero-stats {
        gap: 16px;
        justify-content: center;
        width: 100%;
    }
    .hero-stat-number { font-size: 1.6rem; }
    .hero-visual { justify-content: center; }
    .hero-image-wrapper { max-width: 300px; }
    .hero-scroll-indicator { display: none; }

    /* --- About Mobile --- */
    .about-grid { grid-template-columns: 1fr; gap: 30px; margin-bottom: 50px; }
    .about-img-main img { height: 300px; }
    .about-img-secondary { bottom: -20px; right: 20px; width: 140px; height: 140px; }
    .about-floating-card { right: 10px; padding: 10px 14px; }
    .about-floating-card strong { font-size: 0.78rem; }
    .about-floating-card span { font-size: 0.68rem; }

    /* --- MV Cards Mobile --- */
    .mv-grid { grid-template-columns: 1fr; gap: 16px; }
    .mv-card { padding: 28px; }

    /* --- Services Mobile --- */
    .services-tabs {
        gap: 6px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .services-tabs::-webkit-scrollbar { display: none; }
    .service-tab {
        padding: 10px 14px;
        font-size: 0.78rem;
        flex-shrink: 0;
    }
    .service-panel-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }
    .service-panel-text h3 { font-size: 1.2rem; }
    .service-panel-image img { height: 220px; }

    /* --- Sub Services Mobile --- */
    .sub-services-grid { grid-template-columns: 1fr; gap: 12px; }
    .sub-service-card { padding: 20px; }

    /* --- Tech Grid Mobile --- */
    .tech-grid { grid-template-columns: 1fr; gap: 12px; }
    .tech-card-featured { grid-column: span 1; padding: 28px; }
    .tech-card { padding: 20px; }

    /* --- Process Mobile --- */
    .process-step { gap: 16px; }
    .process-step-number { width: 44px; height: 44px; font-size: 0.75rem; }
    .process-line { left: 22px; }
    .process-step-content { padding: 18px 20px; }
    .process-step-content h3 { font-size: 0.95rem; }

    /* --- Team Mobile --- */
    .team-grid { grid-template-columns: 1fr; gap: 20px; }
    .team-card-founder { grid-column: span 1; }
    .team-card-image { height: 260px; }
    .team-card-info { padding: 20px; }
    .team-card-info h3 { font-size: 1.05rem; }

    /* --- Partners Mobile --- */
    .partners-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .partner-card { padding: 20px 14px; }
    .partner-card h4 { font-size: 0.82rem; }

    /* --- Gallery Mobile --- */
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .gallery-item-large { grid-column: span 2; }

    /* --- FAQ Mobile --- */
    .faq-layout { grid-template-columns: 1fr; gap: 24px; }
    .faq-header-side { position: static; text-align: center; }
    .faq-header-side .section-title { text-align: center; }
    .faq-question { padding: 16px 18px; font-size: 0.88rem; }
    .faq-answer p { padding: 0 18px 16px; font-size: 0.85rem; }

    /* --- Contact Mobile --- */
    .contact-grid { grid-template-columns: 1fr; gap: 24px; }
    .contact-map { min-height: 300px; }
    .contact-whatsapp-btn {
        width: 100%;
        justify-content: center;
    }

    /* --- Footer Mobile --- */
    .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; }
    .footer-social { justify-content: center; }
    .footer-links ul { align-items: center; }
    .footer-contact ul { align-items: center; }
    .footer-contact li { justify-content: center; }

    /* --- WhatsApp Float Mobile --- */
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 14px; border-radius: 50%; bottom: 20px; right: 20px; }

    /* --- Back to top Mobile --- */
    .back-to-top { bottom: 20px; left: 20px; width: 38px; height: 38px; }

    /* --- Section spacing --- */
    .section-header { margin-bottom: 40px; }
    .section-title { font-size: clamp(1.5rem, 5vw, 2.2rem); }
    .section-subtitle { font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .hero-content { padding: 90px 16px 50px; }
    .hero-logo-img { width: 110px; }
    .hero-image-wrapper { max-width: 260px; }
    .hero-image { height: 260px; }
    .hero-actions { flex-direction: column; }
    .hero-stats { flex-direction: column; align-items: center; gap: 12px; }
    .hero-stat-divider { width: 40px; height: 1px; }
    .hero-badge { font-size: 0.65rem; padding: 5px 12px; letter-spacing: 1px; }

    .about-img-main img { height: 240px; }
    .about-img-secondary { width: 120px; height: 120px; right: 10px; }
    .about-floating-card { display: none; }

    .services-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
    .service-tab { flex-shrink: 0; }
    .service-panel-grid { padding: 16px; }

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

    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item-large { grid-column: span 1; }

    .team-card-image { height: 220px; }

    .process-step-number { width: 38px; height: 38px; font-size: 0.7rem; }
    .process-line { left: 19px; }
    .process-step { gap: 12px; }

    .contact-card { padding: 14px 16px; }

    .section-title { font-size: clamp(1.3rem, 5vw, 1.8rem); }
    .section-label { font-size: 0.68rem; letter-spacing: 2px; padding: 5px 12px; }
}
