/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    --primary-color: #4A90E2; /* Light blue */
    --secondary-color: #FFB84D; /* Sunrise yellow/orange */
    --accent-color: #FF6B6B; /* Coral accent */
    --dark-color: #2C3E50;
    --light-color: #F8F9FA;
    --text-dark: #4A5568;
    --text-light: #718096;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

* {
    -webkit-tap-highlight-color: transparent;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px var(--shadow-hover);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #4A5568;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link:hover {
    color: var(--primary-color);
}

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

.nav-link.active {
    color: var(--primary-color);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: var(--light-color);
}

.mobile-menu-toggle:active {
    background: rgba(74, 144, 226, 0.1);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Hero Section with Parallax
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    will-change: transform;
    filter: brightness(0.4) contrast(1.1) saturate(1.2);
    animation: backgroundZoom 30s ease-in-out infinite alternate;
}

@keyframes backgroundZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 62, 80, 0.7) 0%,
        rgba(74, 144, 226, 0.6) 50%,
        rgba(44, 62, 80, 0.7) 100%
    );
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 184, 77, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 144, 226, 0.25) 0%, transparent 50%);
    z-index: 1;
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

/* Gradient Orbs */
.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
    animation: orbFloat 20s ease-in-out infinite;
}

.hero-gradient-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 184, 77, 0.4) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    animation-duration: 25s;
}

.hero-gradient-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.4) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    animation-duration: 30s;
    animation-delay: -5s;
}

.hero-gradient-orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 184, 77, 0.3) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-duration: 22s;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    color: var(--white);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.badge-icon {
    font-size: 1.1rem;
    display: inline-block;
    animation: iconPulse 2s ease-in-out infinite;
}

.badge-text {
    font-size: 0.875rem;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-title .title-line {
    display: block;
    font-size: 0.4em;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-primary);
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-size: 1rem;
}

.hero-title .title-main {
    display: block;
    color: var(--white);
    text-shadow: 
        0 2px 20px rgba(0, 0, 0, 0.5),
        0 4px 40px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    font-weight: 800;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease 0.5s both;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.6s both;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: featurePulse 3s ease-in-out infinite;
}

@keyframes featurePulse {
    0%, 100% {
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(255, 255, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.3),
            0 0 30px rgba(255, 255, 255, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

.hero-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.hero-feature:hover::before {
    left: 100%;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-feature svg {
    width: 20px;
    height: 20px;
    stroke-width: 3;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.4s ease;
}

.hero-feature:hover svg {
    transform: scale(1.15) rotate(5deg);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease 0.8s both;
    flex-wrap: wrap;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-number {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    display: block;
}


.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.7s both;
    margin-bottom: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 1s ease 1s both;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

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

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

.scroll-indicator span {
    font-size: 0.8rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    font-weight: 500;
}

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

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

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    min-height: 44px;
    min-width: 120px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    padding: 18px 42px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    justify-content: center;
    width: 100%;
    margin-top: 0.5rem;
}

.contact-form .btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.contact-form .btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.2), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    opacity: 0;
    z-index: -1;
    filter: blur(15px);
    transition: opacity 0.4s ease;
}

.btn-primary:hover::after {
    opacity: 0.6;
}

.btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(74, 144, 226, 0.3));
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ffa726 100%);
    color: var(--white);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 184, 77, 0.5),
        0 0 60px rgba(255, 184, 77, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 184, 77, 0.8);
}

.btn-primary:hover svg {
    transform: translateX(6px) scale(1.1);
    filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.4));
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    padding: 18px 42px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-secondary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(74, 144, 226, 0.3));
    opacity: 0;
    z-index: -2;
    filter: blur(15px);
    transition: opacity 0.4s ease;
}

.btn-secondary:hover::after {
    opacity: 0.6;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 255, 255, 0.4),
        0 0 50px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover svg {
    transform: rotate(15deg) scale(1.1);
    filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.4));
}

.btn-block {
    width: 100%;
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 80px 0;
}

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

@media (max-width: 480px) {
    section {
        padding: 50px 0;
    }
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    color: #2D3748;
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 2rem auto 0;
    line-height: 1.7;
    font-weight: 400;
}

.services .section-header {
    margin-bottom: 4rem;
}

.services .section-title {
    font-size: 3rem;
}

.services .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-color) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(74, 144, 226, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 184, 77, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.25rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(74, 144, 226, 0.15);
    border-color: rgba(74, 144, 226, 0.3);
}

.service-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.3);
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(10px);
}

.service-card:hover .service-icon::after {
    opacity: 0.5;
}

.service-icon svg {
    width: 42px;
    height: 42px;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    color: #2D3748;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary-color);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    text-align: left;
    background: var(--light-color);
    padding: 1.25rem;
    border-radius: 12px;
    margin-top: 1.25rem;
}

.service-features li {
    padding: 0.6rem 0;
    color: #4A5568;
    position: relative;
    padding-left: 2.5rem;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    line-height: 1.6;
}

.service-features li:hover {
    transform: translateX(5px);
    color: var(--primary-color);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0.5rem;
    top: 0.6rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-features li:hover::before {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.2);
}

/* ============================================
   Promotions Section
   ============================================ */
.promotions {
    background: linear-gradient(135deg, var(--light-color) 0%, #E8F4FD 100%);
    padding: 80px 0;
}

.promotions-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.promotions-track {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    border-radius: 15px;
    box-shadow: 0 10px 40px var(--shadow);
}

.promotion-card {
    min-width: 100%;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: var(--white);
}

.promotion-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    display: block;
    object-fit: contain;
    transition: var(--transition);
    background: var(--white);
}

.promotion-card:hover .promotion-image {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .promotion-image {
        max-height: 400px;
    }
}

/* ============================================
   Portfolio Section
   ============================================ */
.portfolio {
    background: linear-gradient(180deg, var(--light-color) 0%, var(--white) 100%);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(74, 144, 226, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 184, 77, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.portfolio .container {
    position: relative;
    z-index: 1;
}

.portfolio .section-header {
    margin-bottom: 1.5rem;
}

.portfolio-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.1);
    gap: 0.875rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0.5rem 1rem;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
}

.portfolio-gallery::-webkit-scrollbar {
    height: 10px;
}

.portfolio-gallery::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin: 0 20px;
}

.portfolio-gallery::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    transition: background 0.3s;
}

.portfolio-gallery::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    aspect-ratio: 4 / 3;
    min-width: 180px;
    max-height: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
    background: var(--white);
    border: 2px solid transparent;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(255, 184, 77, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.portfolio-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(74, 144, 226, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(74, 144, 226, 0.3);
}

.portfolio-item:hover::before {
    opacity: 1;
}

.portfolio-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background: var(--light-color);
}

.portfolio-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, transparent 70%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.portfolio-item:hover .portfolio-image-wrapper::after {
    opacity: 1;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1) contrast(1);
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.05);
}

.portfolio-cta {
    text-align: center;
    margin-top: 2rem;
}

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

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-text h4 {
    color: #2D3748;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    background: var(--light-color);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    min-width: 100%;
    scroll-snap-align: start;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.star {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 3px 10px var(--shadow);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
}

.slider-btn-prev {
    left: -25px;
}

.slider-btn-next {
    right: -25px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: linear-gradient(135deg, var(--light-color) 0%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(74, 144, 226, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 184, 77, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-brand {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid rgba(74, 144, 226, 0.1);
    transition: all 0.4s ease;
}

.contact-brand:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(74, 144, 226, 0.15);
    border-color: rgba(74, 144, 226, 0.2);
}

.contact-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.contact-brand:hover .contact-logo {
    transform: scale(1.05) rotate(2deg);
}

.contact-brand h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.contact-brand p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.15);
    border-color: rgba(74, 144, 226, 0.2);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.4);
}

.contact-icon svg {
    width: 26px;
    height: 26px;
}

.contact-details h4 {
    color: #2D3748;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    min-height: 44px;
    padding: 0.25rem 0;
    font-weight: 500;
}

.contact-details a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.contact-details a:active {
    transform: scale(0.98);
}

.social-item {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(255, 184, 77, 0.05));
}

.social-link-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.social-link-contact:hover {
    color: var(--secondary-color);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 0.5rem;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(74, 144, 226, 0.1);
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-color);
}

.form-header h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.form-header p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light-color);
    min-height: 48px;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    touch-action: manipulation;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0a0a0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.15);
    transform: translateY(-2px);
    background: var(--white);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary-color);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-family: var(--font-primary);
    line-height: 1.6;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234A5568' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 1.25rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-top: 1rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Mobile Responsive Design
   ============================================ */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .mobile-menu-toggle {
        display: flex;
    }

    .logo-text {
        font-size: 1rem;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .nav-wrapper {
        padding: 0.75rem 0;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0.5rem;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 1.25rem;
        display: block;
        border-radius: 10px;
        min-height: 48px;
        display: flex;
        align-items: center;
        transition: all 0.2s ease;
    }

    .nav-link:hover,
    .nav-link:active {
        background: var(--light-color);
        color: var(--primary-color);
        transform: translateX(5px);
    }

    .nav-link::after {
        display: none;
    }

    /* Hero Mobile */
    .hero {
        min-height: 600px;
        height: 100vh;
    }

    .hero-background {
        background-attachment: scroll;
    }

    .hero-gradient-orb {
        opacity: 0.4;
    }

    .hero-content {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 10px 20px;
        margin-bottom: 1.5rem;
        gap: 6px;
    }

    .badge-icon {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
        line-height: 1.2;
    }

    .hero-title .title-line {
        font-size: 0.85rem;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hero-features {
        gap: 0.75rem;
        margin-bottom: 2rem;
        flex-direction: column;
        align-items: center;
    }

    .hero-feature {
        font-size: 0.85rem;
        padding: 0.625rem 1.25rem;
    }

    .hero-feature svg {
        width: 16px;
        height: 16px;
    }

    .hero-stats {
        gap: 2rem;
        margin-top: 2.5rem;
        padding-top: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .hero-buttons {
        gap: 1rem;
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 1rem;
        padding: 14px 28px;
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }

    .btn {
        width: 100%;
    }

    .scroll-indicator {
        bottom: 30px;
    }

    .scroll-mouse {
        width: 26px;
        height: 42px;
    }

    .scroll-indicator span {
        font-size: 0.75rem;
    }

    /* Section Titles Mobile */
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-title::after {
        width: 60px;
        height: 4px;
        bottom: -12px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-top: 1.5rem;
        line-height: 1.6;
    }

    /* Services Mobile - Single Card View with Swipe */
    .services .section-header {
        margin-bottom: 1.75rem;
    }

    .services .section-title {
        font-size: 1.85rem;
    }

    .services .section-subtitle {
        font-size: 0.95rem;
    }

    .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 1rem;
        padding: 0.5rem 0.5rem 1rem;
        margin-top: 1.5rem;
        overscroll-behavior-x: contain;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        min-width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        scroll-snap-align: start;
        flex-shrink: 0;
        padding: 1.75rem 1.5rem;
    }

    .service-card:hover {
        transform: none;
    }

    .service-card:active {
        transform: scale(0.98);
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .service-icon svg {
        width: 36px;
        height: 36px;
    }

    .service-title {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .service-description {
        font-size: 0.95rem;
        margin-bottom: 1.1rem;
        line-height: 1.6;
    }

    .service-features {
        padding: 1rem;
        margin-top: 1rem;
    }

    .service-features li {
        padding: 0.5rem 0;
        padding-left: 2.25rem;
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .service-features li::before {
        left: 0.375rem;
        top: 0.5rem;
        width: 18px;
        height: 18px;
        font-size: 0.9rem;
    }

    /* Portfolio Mobile - Single Item View with Swipe */
    .portfolio {
        padding: 25px 0;
    }

    .portfolio .section-header {
        margin-bottom: 1.25rem;
    }

    .portfolio-gallery {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        gap: 0.875rem;
        padding: 0.5rem 0.5rem 1.25rem;
        margin-bottom: 1rem;
    }

    .portfolio-gallery::-webkit-scrollbar {
        height: 8px;
    }

    .portfolio-gallery::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 10px;
        margin: 0 10px;
    }

    .portfolio-item {
        scroll-snap-align: start;
        flex-shrink: 0;
        aspect-ratio: 4 / 3;
        border-radius: 14px;
        min-width: 160px;
        max-height: 240px;
    }

    .portfolio-item:active {
        transform: scale(0.98);
    }

    /* About Mobile */
    .about-content {
        padding: 0;
    }

    .about-description {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .feature-item {
        padding: 1rem;
        background: var(--white);
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

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

    /* Promotions Mobile */
    .promotions {
        padding: 60px 0;
    }

    .promotions-slider {
        padding: 0 50px;
        margin-bottom: 2rem;
    }

    .promotion-card {
        border-radius: 10px;
    }

    .promotions-cta-content {
        padding: 2rem 1.5rem;
    }

    .promotions-cta-content h3 {
        font-size: 1.5rem;
    }

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

    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    /* Testimonials Mobile */
    .testimonials-slider {
        padding: 0 60px;
        margin-bottom: 2rem;
    }

    .slider-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    .slider-btn-prev {
        left: 10px;
    }

    .slider-btn-next {
        right: 10px;
    }

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

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .testimonial-author {
        margin-top: 1.5rem;
    }

    /* Contact Mobile */
    .contact {
        padding: 50px 0;
    }

    .contact .section-header {
        margin-bottom: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info-wrapper {
        gap: 2rem;
    }

    .contact-brand {
        padding: 2rem 1.5rem;
    }

    .contact-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 1.25rem;
    }

    .contact-brand h3 {
        font-size: 1.35rem;
    }

    .contact-brand p {
        font-size: 0.95rem;
    }

    .contact-info {
        gap: 1.25rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1.25rem;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    .form-header p {
        font-size: 0.95rem;
    }

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

    .contact-item {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        padding: 1.25rem;
    }

    .contact-item:active {
        transform: scale(0.98);
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    .contact-icon svg {
        width: 24px;
        height: 24px;
    }

    .contact-details {
        width: 100%;
    }

    .contact-details h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .contact-details p {
        font-size: 0.95rem;
        line-height: 1.6;
        word-break: break-word;
    }

    .contact-details a {
        font-size: 0.95rem;
        line-height: 1.6;
        word-break: break-word;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 16px 18px;
    }

    .form-group textarea {
        min-height: 150px;
    }

    /* Footer Mobile */
    .footer {
        padding: 50px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

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

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

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

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

    section {
        padding: 60px 0;
    }
}

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

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

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 8px 16px;
        margin-bottom: 1.25rem;
    }

    .badge-icon {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-title .title-line {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.75rem;
        line-height: 1.6;
    }

    .hero-features {
        gap: 0.625rem;
        margin-bottom: 1.75rem;
    }

    .hero-feature {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .hero-feature svg {
        width: 14px;
        height: 14px;
    }

    .hero-stats {
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .hero-buttons {
        gap: 0.75rem;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 0.95rem;
        padding: 14px 24px;
        min-height: 48px;
    }

    .scroll-indicator {
        bottom: 25px;
    }

    .scroll-mouse {
        width: 24px;
        height: 38px;
    }

    .scroll-indicator span {
        font-size: 0.7rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-top: 1rem;
    }

    .services .section-title {
        font-size: 1.65rem;
    }

    .services .section-subtitle {
        font-size: 0.875rem;
    }

    .service-card {
        min-width: calc(100% - 0.75rem);
        max-width: calc(100% - 0.75rem);
        padding: 1.5rem 1.25rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.875rem;
    }

    .service-icon svg {
        width: 32px;
        height: 32px;
    }

    .service-title {
        font-size: 1.2rem;
        margin-bottom: 0.625rem;
        line-height: 1.3;
    }

    .service-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .service-features {
        padding: 0.875rem;
        margin-top: 0.875rem;
    }

    .service-features li {
        padding: 0.45rem 0;
        padding-left: 2rem;
        font-size: 0.825rem;
        line-height: 1.6;
    }

    .service-features li::before {
        left: 0.25rem;
        top: 0.45rem;
        width: 16px;
        height: 16px;
        font-size: 0.85rem;
    }

    .portfolio-item {
        min-width: 75%;
    }

    .testimonials-slider {
        padding: 0 50px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .testimonial-card {
        padding: 1.75rem 1.25rem;
    }

    .contact {
        padding: 40px 0;
    }

    .contact .section-header {
        margin-bottom: 2rem;
    }

    .contact-content {
        gap: 2rem;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1.25rem 1rem;
        gap: 1rem;
    }

    .contact-icon {
        width: 55px;
        height: 55px;
    }

    .contact-icon svg {
        width: 26px;
        height: 26px;
    }

    .contact-details {
        width: 100%;
    }

    .contact-details h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .contact-details p {
        font-size: 0.9rem;
        line-height: 1.5;
        word-break: break-word;
    }

    .contact-details a {
        font-size: 0.9rem;
        line-height: 1.5;
        word-break: break-word;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 1.75rem 1.25rem;
    }

    .form-group {
        gap: 0.75rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .portfolio {
        padding: 20px 0;
    }

    .portfolio .section-header {
        margin-bottom: 1rem;
    }

    .portfolio-gallery {
        gap: 0.625rem;
        padding: 0.5rem 0.25rem 0.75rem;
    }

    .portfolio-item {
        min-width: 140px;
        max-height: 200px;
        border-radius: 12px;
    }

    section {
        padding: 45px 0;
    }
}

/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-background {
        background-attachment: scroll;
    }
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

