/* ============================================
   COLOR PALETTE - Light & Dark Theme
   ============================================ */
:root {
    /* Primary Colors */
    --primary-color: #2171f2;
    --primary-dark: #1a5cd9;
    --primary-light: #4a8ff5;
    
    /* Secondary Colors */
    --secondary-color: #3C8DBC;
    --secondary-dark: #2d6b91;
    --secondary-light: #5ba3d1;
    
    /* Accent Colors */
    --accent-green: #16a34a;
    --accent-green-dark: #15803d;
    --accent-red: #dc2626;
    --accent-yellow: #eab308;
    
    /* Text Colors - Light Theme */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    
    /* Background Colors - Light Theme */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-top-bar: #15803d; /* Dark green for top bar */
    
    /* Transparent Background Colors - Light Theme */
    --bg-primary-transparent: rgba(255, 255, 255, 0.9);
    --bg-secondary-transparent: rgba(248, 250, 252, 0.9);
    --bg-tertiary-transparent: rgba(241, 245, 249, 0.9);
    --bg-card-transparent: rgba(255, 255, 255, 0.92);
    
    /* Border Colors - Light Theme */
    --border-color: #e2e8f0;
    --border-dark: #cbd5e1;
    
    /* Shadow Colors */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    /* Hover Effects */
    --hover-opacity: 0.8;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Theme Colors */
[data-theme="dark"] {
    /* Text Colors - Dark Theme */
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-light: #94a3b8;
    
    /* Background Colors - Dark Theme */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --bg-top-bar: #0d5d2e; /* Darker green for top bar in dark mode */
    
    /* Transparent Background Colors - Dark Theme */
    --bg-primary-transparent: rgba(15, 23, 42, 0.9);
    --bg-secondary-transparent: rgba(30, 41, 59, 0.9);
    --bg-tertiary-transparent: rgba(51, 65, 85, 0.9);
    --bg-card-transparent: rgba(15, 23, 42, 0.92);
    
    /* Border Colors - Dark Theme */
    --border-color: #334155;
    --border-dark: #475569;
    
    /* Shadow Colors - Dark Theme */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.7);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.65;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    background-image: url('../MACH FEEDS.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 1rem; /* 16px base */
    letter-spacing: -0.011em; /* Subtle letter spacing for better readability */
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-primary);
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

[data-theme="dark"] body::before {
    opacity: 0.15;
}

/* Gradient corners for backgrounds */
.bg-primary-gradient::before,
.bg-secondary-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.03), rgba(60, 141, 188, 0.03));
    border-radius: 50%;
    transform: translate(30%, -30%);
    pointer-events: none;
    z-index: 0;
}

[data-theme="dark"] .bg-primary-gradient::before,
[data-theme="dark"] .bg-secondary-gradient::before {
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.08), rgba(60, 141, 188, 0.08));
}

.bg-primary-gradient,
.bg-secondary-gradient {
    position: relative;
}

.bg-primary-gradient > *,
.bg-secondary-gradient > * {
    position: relative;
    z-index: 1;
}

/* ============================================
   RESPONSIVE TYPOGRAPHY - Normal Sizes
   ============================================ */
/* All screens use consistent, normal sizes */
html {
    font-size: 16px;
}

body {
    font-size: 1rem; /* 16px - normal, readable size */
}

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

/* ============================================
   TOP CONTACT BAR
   ============================================ */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-green) 100%);
    color: var(--text-white);
    padding: 0.5rem 0;
    font-size: 0.875rem; /* 14px - normal small text */
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-weight: 400;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.95) 0%, rgba(60, 141, 188, 0.95) 50%, rgba(22, 163, 74, 0.95) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .top-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 50%, var(--accent-green-dark) 100%);
}

[data-theme="dark"] .top-bar::before {
    background: linear-gradient(135deg, rgba(26, 92, 217, 0.95) 0%, rgba(45, 107, 145, 0.95) 50%, rgba(21, 128, 61, 0.95) 100%);
    opacity: 1;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-bar-item:hover {
    transform: translateX(3px);
}

.top-bar-item .icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-bar-item:hover .icon {
    transform: scale(1.1);
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.navbar {
    background: var(--bg-primary);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container {
    display: flex;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-container:hover {
    transform: scale(1.05) rotate(5deg);
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] .logo-img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(1.1);
}

.brand-name {
    font-size: 1.25rem; /* 20px - normal brand size */
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.brand-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-name:hover {
    color: var(--secondary-color);
    transform: translateY(-1px);
}

.brand-name:hover::after {
    width: 100%;
}

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

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem; /* 15px - normal nav size */
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 80%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background-color: var(--bg-secondary);
    transform: translateY(-1px);
}

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

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    list-style: none;
    min-width: 200px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    margin-top: 0.5rem;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 0.75rem 1.5rem;
    display: block;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background-color: var(--bg-secondary);
    color: var(--primary-color);
}

.login-link {
    background-color: var(--primary-color);
    color: var(--text-white) !important;
    border-radius: 6px;
    margin-left: 0.5rem;
}

.login-link:hover {
    background-color: var(--primary-dark);
    color: var(--text-white) !important;
}

/* Theme Toggle */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-primary);
}

.theme-toggle:hover {
    background: var(--bg-tertiary);
    transform: scale(1.05);
}

.theme-toggle .icon-moon {
    display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun {
    display: none;
}

[data-theme="dark"] .theme-toggle .icon-moon {
    display: block;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s;
    border-radius: 2px;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* ============================================
   HERO SECTION WITH SLIDER
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="light"] .hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

@media (min-width: 768px) {
    .hero {
        padding: 7rem 2rem;
        min-height: 700px;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 8rem 2rem;
        min-height: 800px;
    }
}

[data-theme="dark"] .hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

[data-theme="dark"] .hero-slide {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    transition: opacity 0.5s ease-in-out;
}

.hero-slide img[loading="lazy"] {
    opacity: 0;
}

.hero-slide img.loaded,
.hero-slide img[loading="eager"] {
    opacity: 1;
}

.hero-slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 2;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--text-white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.hero-slider-dot.active {
    background: var(--text-white);
    transform: scale(1.2);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.hero-title-clean {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title-clean {
        font-size: 3.5rem;
    }
}

.hero-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0.95;
    max-width: 600px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

/* Legacy hero title styles for backward compatibility */
.hero-content h1 {
    font-size: 2rem; /* 32px - normal large heading */
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.hero-title.wave-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .hero-title.wave-text {
        font-size: 2.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title.wave-text {
        font-size: 3.25rem;
    }
}

.hero-title.wave-text span {
    display: inline-block;
    opacity: 0;
    animation: typing 0.08s forwards;
}

/* Typing animation delays for each character - sequential typing effect */
.hero-title.wave-text span:nth-child(1) { animation-delay: 0s; }
.hero-title.wave-text span:nth-child(2) { animation-delay: 0.08s; }
.hero-title.wave-text span:nth-child(3) { animation-delay: 0.16s; }
.hero-title.wave-text span:nth-child(4) { animation-delay: 0.24s; }
.hero-title.wave-text span:nth-child(5) { animation-delay: 0.32s; }
.hero-title.wave-text span:nth-child(6) { animation-delay: 0.4s; }
.hero-title.wave-text span:nth-child(7) { animation-delay: 0.48s; }
.hero-title.wave-text span:nth-child(8) { animation-delay: 0.56s; }
.hero-title.wave-text span:nth-child(9) { animation-delay: 0.64s; }
.hero-title.wave-text span:nth-child(10) { animation-delay: 0.72s; }
.hero-title.wave-text span:nth-child(11) { animation-delay: 0.8s; }
.hero-title.wave-text span:nth-child(12) { animation-delay: 0.88s; }
.hero-title.wave-text span:nth-child(13) { animation-delay: 0.96s; }
.hero-title.wave-text span:nth-child(14) { animation-delay: 1.04s; }
.hero-title.wave-text span:nth-child(15) { animation-delay: 1.12s; }
.hero-title.wave-text span:nth-child(16) { animation-delay: 1.2s; }
.hero-title.wave-text span:nth-child(17) { animation-delay: 1.28s; }
.hero-title.wave-text span:nth-child(18) { animation-delay: 1.36s; }
.hero-title.wave-text span:nth-child(19) { animation-delay: 1.44s; }
.hero-title.wave-text span:nth-child(20) { animation-delay: 1.52s; }
.hero-title.wave-text span:nth-child(21) { animation-delay: 1.6s; }
.hero-title.wave-text span:nth-child(22) { animation-delay: 1.68s; }
.hero-title.wave-text span:nth-child(23) { animation-delay: 1.76s; }
.hero-title.wave-text span:nth-child(24) { animation-delay: 1.84s; }
.hero-title.wave-text span:nth-child(25) { animation-delay: 1.92s; }
.hero-title.wave-text span:nth-child(26) { animation-delay: 2s; }
.hero-title.wave-text span:nth-child(27) { animation-delay: 2.08s; }
.hero-title.wave-text span:nth-child(28) { animation-delay: 2.16s; }
.hero-title.wave-text span:nth-child(29) { animation-delay: 2.24s; }
.hero-title.wave-text span:nth-child(30) { animation-delay: 2.32s; }
.hero-title.wave-text span:nth-child(31) { animation-delay: 2.4s; }
.hero-title.wave-text span:nth-child(32) { animation-delay: 2.48s; }
.hero-title.wave-text span:nth-child(33) { animation-delay: 2.56s; }
.hero-title.wave-text span:nth-child(34) { animation-delay: 2.64s; }
.hero-title.wave-text span:nth-child(35) { animation-delay: 2.72s; }
.hero-title.wave-text span:nth-child(36) { animation-delay: 2.8s; }
.hero-title.wave-text span:nth-child(37) { animation-delay: 2.88s; }
.hero-title.wave-text span:nth-child(38) { animation-delay: 2.96s; }
.hero-title.wave-text span:nth-child(39) { animation-delay: 3.04s; }
.hero-title.wave-text span:nth-child(40) { animation-delay: 3.12s; }
.hero-title.wave-text span:nth-child(41) { animation-delay: 3.2s; }
.hero-title.wave-text span:nth-child(42) { animation-delay: 3.28s; }
.hero-title.wave-text span:nth-child(43) { animation-delay: 3.36s; }
.hero-title.wave-text span:nth-child(44) { animation-delay: 3.44s; }
.hero-title.wave-text span:nth-child(45) { animation-delay: 3.52s; }

@keyframes typing {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

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

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 2.25rem; /* 36px */
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem; /* 40px */
    }
}

.hero-content p {
    font-size: 1rem; /* 16px - normal body text */
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-content p {
        font-size: 1.0625rem; /* 17px */
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.about-us-hero .hero-buttons {
    margin-top: 2.5rem;
    justify-content: flex-start;
}

.about-us-hero .btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.about-us-hero .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.about-us-hero .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.about-us-hero .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: 2px solid transparent;
    font-size: 0.9375rem; /* 15px - normal button text */
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem; /* 16px */
    }
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-xl);
    background: var(--text-white);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   STATS SECTION - Enhanced
   ============================================ */
.stats-section {
    padding: 5rem 2rem;
    background: var(--bg-primary);
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .stats-section {
    background: var(--bg-card-transparent);
    backdrop-filter: blur(3px);
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.08), rgba(60, 141, 188, 0.08));
    border-radius: 50%;
    transform: translate(-30%, 30%);
    z-index: 0;
}

[data-theme="dark"] .stats-section::after {
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.08), rgba(60, 141, 188, 0.08));
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.08), rgba(60, 141, 188, 0.08));
    border-radius: 50%;
    transform: translate(30%, -30%);
    z-index: 0;
}

[data-theme="dark"] .stats-section::before {
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.08), rgba(60, 141, 188, 0.08));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-card-transparent);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.08), rgba(60, 141, 188, 0.08));
    border-radius: 50%;
    transform: translate(30%, -30%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(33, 113, 242, 0.15);
    border-color: var(--primary-color);
}

.stat-card:hover::before {
    transform: translate(20%, -20%) scale(1.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3.5rem;
    }
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* ============================================
   ABOUT SECTION - Centered Layout
   ============================================ */
.about-section {
    padding: 5rem 2rem;
    background: var(--bg-secondary);
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .about-section {
    background: var(--bg-secondary);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.08), rgba(60, 141, 188, 0.08));
    border-radius: 50%;
    transform: translate(-30%, -30%);
    z-index: 0;
}

[data-theme="dark"] .about-section::before {
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.08), rgba(60, 141, 188, 0.08));
}

.about-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 2.25rem;
    }
}

.about-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    letter-spacing: 0;
}

@media (min-width: 768px) {
    .about-description {
        font-size: 1.0625rem;
    }
}

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

@media (min-width: 768px) {
    .about-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.about-feature-card {
    background: transparent;
    padding: 0;
    text-align: center;
    border: none;
    box-shadow: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.about-feature-card:nth-child(1) {
    animation-delay: 0.3s;
}

.about-feature-card:nth-child(2) {
    animation-delay: 0.4s;
}

.about-feature-card:nth-child(3) {
    animation-delay: 0.5s;
}

.about-feature-card:nth-child(4) {
    animation-delay: 0.6s;
}

.about-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.about-feature-card:hover .about-feature-icon {
    transform: scale(1.1);
}

.about-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.about-feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.about-feature-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.about-action {
    margin-top: 2rem;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
    opacity: 0;
}

.about-action {
    margin-top: 2.5rem;
}

/* ============================================
   PRODUCTS SECTION - Reusable Card Components
   ============================================ */
.products-section {
    padding: 5rem 2rem;
    background: var(--bg-primary-transparent);
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(3px);
}

[data-theme="dark"] .products-section {
    background: var(--bg-primary-transparent);
    backdrop-filter: blur(3px);
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.08), rgba(60, 141, 188, 0.08));
    border-radius: 50%;
    transform: translate(-30%, -30%);
    z-index: 0;
}

[data-theme="dark"] .products-section::before {
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.08), rgba(60, 141, 188, 0.08));
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    font-weight: 400;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .product-card-wide {
        grid-column: span 3;
    }
    
    /* For 5 cards: 3 on first row, 2 on second row */
    .products-grid .product-card:nth-child(4) {
        grid-column: 1 / 2;
    }
    
    .products-grid .product-card:nth-child(5) {
        grid-column: 2 / 3;
    }
    
    .products-grid .product-card-see-more {
        grid-column: 3 / 4;
    }
}

@media (min-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Reusable Product Card Component */
.product-card {
    background: var(--bg-card-transparent);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    backdrop-filter: blur(8px);
}

.product-card-wide {
    border-radius: 28px;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    border-radius: 20px;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(33, 113, 242, 0.15), var(--shadow-xl);
    border-color: var(--primary-color);
}

[data-theme="dark"] .product-card:hover {
    box-shadow: 0 20px 40px rgba(33, 113, 242, 0.25), var(--shadow-xl);
}

.product-card:hover::before {
    opacity: 0.05;
}

.product-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--bg-tertiary);
    border-radius: 20px 20px 0 0;
}

.product-card-image > img:not(.product-bg-image):not(.product-foreground-image) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-image > img:not(.product-bg-image):not(.product-foreground-image) {
    transform: scale(1.1);
}

.product-card-image .product-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.3;
    filter: blur(2px);
    z-index: 1;
}

.product-card-image .product-foreground-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.product-card:hover .product-card-image .product-bg-image {
    opacity: 1;
    filter: blur(0);
}

.product-card:hover .product-card-image .product-foreground-image {
    transform: translate(-50%, -50%) scale(1.15);
}

.product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

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

.product-card-content {
    padding: 1.75rem;
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 20px 20px;
}

.product-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-card-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    position: relative;
    padding: 0.5rem 0;
}

.product-card-link svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-link:hover {
    color: var(--secondary-color);
    gap: 0.75rem;
}

.product-card-link:hover svg {
    transform: translateX(4px);
}

/* See More Card Styles */
.product-card-see-more {
    position: relative;
    overflow: hidden;
}

.see-more-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.15) 0%, rgba(60, 141, 188, 0.15) 100%);
    z-index: 0;
}

.see-more-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(33, 113, 242, 0.3);
}

.product-card-see-more:hover .see-more-icon {
    transform: translate(-50%, -50%) scale(1.15) rotate(90deg);
    box-shadow: 0 12px 32px rgba(33, 113, 242, 0.4);
}

.product-card-see-more .product-card-image {
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.1) 0%, rgba(60, 141, 188, 0.1) 100%);
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-see-more:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px) scale(1.02);
}

.product-card-see-more .product-card-title {
    color: var(--primary-color);
}

.product-card-see-more:hover .product-card-title {
    color: var(--secondary-color);
}

.product-card-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Glassmorphism effect for cards (optional enhancement) */
.product-card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .product-card-glass {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============================================
   ABOUT US HERO SECTION - Clean Text Layout
   ============================================ */
.about-us-hero {
    padding: 5rem 2rem;
    background: var(--bg-secondary);
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .about-us-hero {
    background: var(--bg-secondary);
}

.about-us-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.08), rgba(60, 141, 188, 0.08));
    border-radius: 50%;
    transform: translate(-30%, -30%);
    z-index: 0;
}

.about-us-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-us-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    letter-spacing: -0.03em;
    text-align: center;
}

@media (min-width: 768px) {
    .about-us-title {
        font-size: 3.5rem;
        text-align: left;
    }
}

.about-us-intro {
    margin-bottom: 3rem;
}

.about-us-who-we-are {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.about-us-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .about-us-section-title {
        font-size: 2.25rem;
    }
}

.about-us-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-us-lead strong {
    font-weight: 700;
    color: var(--primary-color);
}

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

.about-us-priorities {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--bg-card-transparent);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
}

.priorities-intro {
    font-size: 1.0625rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.priorities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.priority-check {
    font-size: 1.5rem;
    color: var(--accent-green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.priority-content {
    flex: 1;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.priority-content strong {
    color: var(--text-primary);
    font-weight: 700;
}

.about-us-mission-vision {
    margin-bottom: 3rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .motto-card {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .mission-vision-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .motto-card {
        grid-column: span 1;
    }
}

.mission-vision-card {
    background: var(--bg-card-transparent);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.mission-vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(33, 113, 242, 0.12);
    border-color: var(--primary-color);
}

.mv-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.mv-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.mv-motto {
    font-size: 1.25rem;
    font-weight: 600;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.6;
    margin: 0;
}

.about-us-closing {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.05), rgba(60, 141, 188, 0.05));
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
}

.closing-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

.closing-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* What You Expect Insights */
.expect-insights {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.expect-insight-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-card-transparent);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.expect-insight-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(33, 113, 242, 0.12);
    border-color: var(--primary-color);
}

.expect-insight-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.expect-insight-item:hover .expect-insight-icon {
    transform: scale(1.1) rotate(5deg);
}

.expect-insight-content {
    flex: 1;
}

.expect-insight-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.expect-insight-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.expect-balance {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.1), rgba(60, 141, 188, 0.1));
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    display: flex;
    gap: 1.5rem;
    align-items: center;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.expect-balance:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(33, 113, 242, 0.2);
    border-color: var(--secondary-color);
}

.expect-balance-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(33, 113, 242, 0.3);
}

.expect-balance-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.expect-balance-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Mobile - Stack expect insight items vertically */
@media (max-width: 768px) {
    .expect-insight-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }

    .expect-insight-icon {
        margin: 0 auto;
    }

    .expect-insight-content {
        text-align: center;
    }

    .expect-balance {
        flex-direction: column;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .expect-balance-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .expect-insight-item {
        padding: 1rem;
    }

    .expect-balance {
        padding: 1.5rem 1.25rem;
    }
}

/* ============================================
   ANIMATED CAROUSEL SECTIONS
   ============================================ */
.about-carousel-section {
    padding: 5rem 2rem;
    background: var(--bg-primary);
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .about-carousel-section {
    background: var(--bg-primary);
}

.carousel-section-alt {
    background: var(--bg-secondary);
}

[data-theme="dark"] .carousel-section-alt {
    background: var(--bg-secondary);
}

.about-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.08), rgba(60, 141, 188, 0.08));
    border-radius: 50%;
    transform: translate(30%, -30%);
    z-index: 0;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
    padding: 2rem 0;
}

.carousel-container {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.carousel-container::-webkit-scrollbar {
    height: 6px;
}

.carousel-container::-webkit-scrollbar-track {
    background: transparent;
}

.carousel-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.carousel-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    will-change: transform;
}

.carousel-card {
    min-width: calc(20% - 1.2rem);
    max-width: 320px;
    background: var(--bg-card-transparent);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1400px) {
    .carousel-card {
        min-width: calc(25% - 1.125rem);
        max-width: 300px;
    }
}

@media (max-width: 1024px) {
    .carousel-card {
        min-width: calc(33.333% - 1rem);
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .carousel-card {
        min-width: calc(50% - 0.75rem);
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .carousel-card {
        min-width: calc(100% - 0.75rem);
        max-width: 100%;
    }
}

.carousel-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 28px rgba(33, 113, 242, 0.15);
    border-color: var(--primary-color);
}

.carousel-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(33, 113, 242, 0.2);
    flex-shrink: 0;
}

.carousel-content-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.carousel-card:hover .carousel-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(33, 113, 242, 0.3);
}

.carousel-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.carousel-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    margin: 0;
}

/* Values carousel - animate left to right (moves from right to left visually) */
.values-carousel .carousel-track {
    animation: scrollLeft 40s linear infinite;
}

/* Why Choose carousel - animate right to left (moves from left to right visually) */
.why-choose-carousel .carousel-track {
    animation: scrollRight 40s linear infinite;
}

/* Allow manual scrolling on mobile - pause animation when user scrolls */
@media (max-width: 768px) {
    .carousel-container {
        overflow-x: auto;
        overflow-y: hidden;
        cursor: grab;
    }

    .carousel-container:active {
        cursor: grabbing;
    }

    .values-carousel .carousel-track,
    .why-choose-carousel .carousel-track {
        animation-play-state: running;
    }

    /* Pause animation when user interacts with scroll */
    .carousel-container:active .carousel-track,
    .carousel-container:focus .carousel-track,
    .carousel-container.scrolling .carousel-track {
        animation-play-state: paused;
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause on hover */
.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

/* ============================================
   ABOUT HERO SECTION - Compact Intro (Legacy - can be removed)
   ============================================ */
.about-hero-section {
    padding: 4rem 2rem;
    background: var(--bg-secondary);
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .about-hero-section {
    background: var(--bg-secondary);
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.08), rgba(60, 141, 188, 0.08));
    border-radius: 50%;
    transform: translate(-30%, -30%);
    z-index: 0;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .about-hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-hero-main {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .about-hero-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    
    .about-hero-main {
        grid-column: span 1;
        grid-row: span 2;
    }
    
    .about-hero-motto {
        grid-column: span 1;
    }
}

.about-hero-card {
    background: var(--bg-card-transparent);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.about-hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33, 113, 242, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-hero-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(33, 113, 242, 0.15);
    border-color: var(--primary-color);
}

.about-hero-card:hover::before {
    opacity: 1;
}

.about-hero-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.about-hero-card:hover .about-hero-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(33, 113, 242, 0.3);
}

.about-hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.about-hero-subtitle {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.about-hero-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

.about-hero-motto-text {
    font-size: 1.25rem;
    font-weight: 600;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ============================================
   ABOUT COMBINED SECTION - Core Values & Why Choose
   ============================================ */
.about-combined-section {
    padding: 4rem 2rem;
    background: var(--bg-primary);
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .about-combined-section {
    background: var(--bg-primary);
}

.about-combined-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.08), rgba(60, 141, 188, 0.08));
    border-radius: 50%;
    transform: translate(30%, -30%);
    z-index: 0;
}

.about-combined-block {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.about-combined-block:last-child {
    margin-bottom: 0;
}

/* Core Values Compact Grid */
.about-values-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .about-values-compact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-values-compact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-compact-card {
    background: var(--bg-card-transparent);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    backdrop-filter: blur(8px);
}

.value-compact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(33, 113, 242, 0.12);
    border-color: var(--primary-color);
}

.value-compact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-compact-card:hover .value-compact-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-compact-content {
    flex: 1;
}

.value-compact-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.value-compact-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Compact Grid */
.why-choose-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

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

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

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

.why-choose-compact-card {
    background: var(--bg-card-transparent);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    backdrop-filter: blur(8px);
}

.why-choose-compact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(33, 113, 242, 0.12);
    border-color: var(--primary-color);
}

.why-choose-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-compact-card:hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-choose-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.why-choose-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   WHAT YOU EXPECT SECTION
   ============================================ */
.expect-content-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card-transparent);
    border-radius: 28px;
    padding: 3rem 2.5rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.expect-content-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33, 113, 242, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expect-content-card:hover::before {
    opacity: 1;
}

.expect-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    text-align: left;
    position: relative;
    z-index: 1;
}

.expect-content-card > .expect-item:last-of-type {
    margin-bottom: 0;
}

.expect-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(33, 113, 242, 0.2);
}

.expect-item:hover .expect-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(33, 113, 242, 0.3);
}

.expect-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.expect-text {
    flex: 1;
}

.expect-item-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.expect-item-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.expect-highlight {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.08), rgba(60, 141, 188, 0.08));
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    display: flex;
    gap: 1.5rem;
    align-items: center;
    text-align: left;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expect-highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(33, 113, 242, 0.2);
    border-color: var(--secondary-color);
}

.expect-highlight-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(33, 113, 242, 0.3);
}

.expect-highlight-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}

.expect-highlight-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .expect-content-card {
        padding: 2rem 1.5rem;
    }
    
    .expect-item {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .expect-icon {
        align-self: flex-start;
    }
    
    .expect-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .expect-highlight-icon {
        align-self: center;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 5rem 2rem;
    background: var(--bg-secondary);
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .services-section {
    background: var(--bg-secondary);
}

.services-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.08), rgba(60, 141, 188, 0.08));
    border-radius: 50%;
    transform: translate(30%, 30%);
    z-index: 0;
}

[data-theme="dark"] .services-section::before {
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.08), rgba(60, 141, 188, 0.08));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

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

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: minmax(280px, auto);
    }
    
    .service-card:nth-child(1) {
        grid-row: span 1;
    }
    
    .service-card:nth-child(2) {
        grid-row: span 1;
    }
    
    .service-card:nth-child(3) {
        grid-row: span 1;
    }
    
    .service-card:nth-child(4) {
        grid-row: span 1;
    }
}

/* Custom Service Feature Cards with Images */
.services-custom-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.service-feature-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--bg-card-transparent);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33, 113, 242, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(33, 113, 242, 0.15);
    border-color: var(--primary-color);
}

.service-feature-card:hover::before {
    opacity: 1;
}

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

.service-feature-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.service-feature-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.service-feature-text:last-child {
    margin-bottom: 0;
}

.service-feature-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-feature-card:hover .service-feature-image {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(33, 113, 242, 0.2);
}

.service-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-feature-card:hover .service-feature-image img {
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .service-feature-card {
        grid-template-columns: 1fr 1fr;
        padding: 3rem;
    }

    .service-feature-reverse {
        grid-template-columns: 1fr 1fr;
    }

    .service-feature-reverse .service-feature-content {
        order: 2;
    }

    .service-feature-reverse .service-feature-image {
        order: 1;
    }

    .service-feature-image {
        height: 320px;
    }
}

@media (min-width: 1024px) {
    .service-feature-title {
        font-size: 2.5rem;
    }

    .service-feature-text {
        font-size: 1.125rem;
    }

    .service-feature-image {
        height: 380px;
    }
}

.service-card {
    background: var(--bg-card-transparent);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(33, 113, 242, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 72px;
    height: 72px;
    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(--text-white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(33, 113, 242, 0.3);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.service-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 5rem 2rem;
    background: var(--bg-primary-transparent);
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(3px);
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.08), rgba(60, 141, 188, 0.08));
    border-radius: 50%;
    transform: translate(-30%, -30%);
    z-index: 0;
}

[data-theme="dark"] .testimonials-section::before {
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.08), rgba(60, 141, 188, 0.08));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(280px, auto);
    }
    
    .testimonial-card:nth-child(1) {
        grid-row: span 1;
    }
    
    .testimonial-card:nth-child(2) {
        grid-row: span 1;
        margin-top: 2rem;
    }
    
    .testimonial-card:nth-child(3) {
        grid-row: span 1;
    }
}

.testimonial-card {
    background: var(--bg-card-transparent);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.testimonial-quote {
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

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

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.testimonial-author-name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-author-role {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.85) 0%, rgba(60, 141, 188, 0.85) 100%);
    color: var(--text-white);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(2px);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Ensure sections have proper stacking */
section {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.75rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

.section-title {
    text-align: center;
    font-size: 1.75rem; /* 28px - normal section title */
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2rem; /* 32px */
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.25rem; /* 36px */
    }
}

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

.feature-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.125rem; /* 18px - normal card heading */
    font-weight: 600;
    letter-spacing: 0;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem; /* 15px - normal card text */
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 5rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    background: url('../MACH FEEDS.png') center/cover no-repeat;
    background-position: center center;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

[data-theme="dark"] .footer::before {
    opacity: 0.12;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.05), rgba(60, 141, 188, 0.05));
    border-radius: 50%;
    transform: translate(40%, 40%);
    z-index: 0;
}

[data-theme="dark"] .footer::after {
    background: linear-gradient(135deg, rgba(33, 113, 242, 0.1), rgba(60, 141, 188, 0.1));
}

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

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 350px;
    position: relative;
    z-index: 1;
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.01em;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.footer-contact a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.footer-section h4 {
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9375rem;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: -1rem;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-color);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 1.25rem;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.875rem;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.875rem;
}

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

.footer-links span {
    color: var(--text-light);
    opacity: 0.5;
}

/* Footer Mobile Styles */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0.75rem 1.5rem;
    }

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

    .footer-brand {
        max-width: 100%;
    }

    .footer-brand-header {
        justify-content: center;
    }

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

    .footer-section ul {
        align-items: center;
    }

    .footer-section ul li a::before {
        display: none;
    }

    .footer-section ul li a:hover {
        padding-left: 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 1.5rem;
        gap: 0.75rem;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Reorder contact form before contact info on mobile */
    .contact-info {
        order: 2;
    }

    .contact-form-wrapper {
        order: 1;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 0.75rem 1.25rem;
    }

    .footer-content {
        gap: 2rem;
        margin-bottom: 1.5rem;
    }

    .footer-brand h3 {
        font-size: 1.25rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.25rem;
    }
    
    .nav-menu a {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .nav-brand {
        gap: 0.75rem;
    }

    .logo-circle {
        width: 50px;
        height: 50px;
    }

    .logo-text-top {
        font-size: 0.4rem;
        top: -6px;
    }

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

    .brand-name {
        font-size: 1.25rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-primary);
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem;
        gap: 0;
        border-top: 1px solid var(--border-color);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

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

    .nav-menu a {
        padding: 1rem;
        border-radius: 8px;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--bg-secondary);
        margin: 0.5rem 0 0 1rem;
        padding: 0.5rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .login-link {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .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(7px, -6px);
    }

    .hero {
        padding: 2.5rem 0.75rem;
    }

    .hero-content h1 {
        font-size: 1.75rem; /* 28px on mobile */
    }

    .hero-content p {
        font-size: 0.9375rem; /* 15px on mobile */
    }

    .section-title {
        font-size: 1.5rem; /* 24px on mobile */
    }

    /* Reduce section padding on mobile */
    .stats-section,
    .about-section,
    .products-section,
    .services-section,
    .testimonials-section,
    .cta-section,
    .about-carousel-section,
    .about-us-hero {
        padding: 2.5rem 0.75rem;
    }

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

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

    .about-feature-card {
        padding: 1.25rem;
    }

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

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        padding: 1.25rem;
    }

    .product-card-image {
        height: 200px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

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

    .hero {
        padding: 2rem 0.75rem;
    }

    .hero-content h1 {
        font-size: 1.5rem; /* 24px on small mobile */
    }

    .section-title {
        font-size: 1.375rem; /* 22px on small mobile */
    }

    /* Further reduce section padding on small mobile */
    .stats-section,
    .about-section,
    .products-section,
    .services-section,
    .testimonials-section,
    .cta-section,
    .about-carousel-section,
    .about-us-hero {
        padding: 2rem 0.75rem;
    }

    .feature-card,
    .about-feature-card {
        padding: 1.25rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .stat-number {
        font-size: 1.75rem; /* 28px on mobile */
    }

    .products-grid {
        gap: 1.25rem;
    }

    .product-card {
        padding: 1rem;
    }

    .product-card-image {
        height: 180px;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 4rem;
    }
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info-card {
        padding: 1.5rem 1.25rem;
    }

    .contact-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }

    .contact-info-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
    }

    .contact-info-card p {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .contact-info {
        gap: 1.25rem;
    }

    .contact-info-card {
        padding: 1.25rem 1rem;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
}

.contact-info-card {
    background: var(--bg-card-transparent);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(33, 113, 242, 0.15);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(33, 113, 242, 0.3);
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.contact-info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.contact-form-card {
    background: var(--bg-card-transparent);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .contact-form-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .contact-form-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-form {
        gap: 1.25rem;
    }

    .contact-form-input,
    .contact-form-textarea {
        padding: 0.875rem 1rem;
        font-size: 0.9375rem;
    }

    .contact-form-textarea {
        min-height: 100px;
    }

    .contact-form-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .g-recaptcha {
        justify-content: center;
        transform: scale(0.9);
        transform-origin: center;
    }
}

@media (max-width: 480px) {
    .contact-form-card {
        padding: 1.5rem 1rem;
    }

    .contact-form-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .contact-form-input,
    .contact-form-textarea {
        padding: 0.75rem 0.875rem;
    }

    .g-recaptcha {
        transform: scale(0.85);
    }
}

.contact-form-card:hover {
    box-shadow: 0 12px 32px rgba(33, 113, 242, 0.12);
    border-color: var(--primary-color);
}

.contact-form-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

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

.contact-form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-form-label .required {
    color: #dc2626;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.contact-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(33, 113, 242, 0.1);
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.recaptcha-error {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #dc2626;
}

.recaptcha-help {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-style: italic;
}

.g-recaptcha {
    margin-top: 0.5rem;
    display: flex;
    justify-content: flex-start;
}

.contact-form-button {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(33, 113, 242, 0.3);
}

.contact-form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 113, 242, 0.4);
}

.contact-form-button:active {
    transform: translateY(0);
}

.contact-form-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.alert {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.9375rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #059669;
}

.alert-error {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #dc2626;
}

.alert-error ul {
    list-style: disc;
    list-style-position: inside;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1.2fr;
        align-items: start;
    }
}

/* ============================================
   PWA INSTALL PROMPT
   ============================================ */
.pwa-install-prompt {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: var(--bg-card-transparent);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.25rem 1.5rem;
    z-index: 9999;
    backdrop-filter: blur(10px);
    transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.pwa-install-prompt.pwa-prompt-show {
    bottom: 0;
    opacity: 1;
}

.pwa-prompt-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.pwa-prompt-text {
    flex: 1;
    min-width: 200px;
}

.pwa-prompt-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.pwa-prompt-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.pwa-prompt-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pwa-install-btn,
.pwa-dismiss-btn {
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    outline: none;
}

.pwa-install-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-white);
    box-shadow: 0 2px 8px rgba(33, 113, 242, 0.3);
}

.pwa-install-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 113, 242, 0.4);
}

.pwa-dismiss-btn {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.pwa-dismiss-btn:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .pwa-prompt-content {
        flex-direction: column;
        align-items: stretch;
    }

    .pwa-prompt-buttons {
        width: 100%;
    }

    .pwa-install-btn,
    .pwa-dismiss-btn {
        flex: 1;
    }
}
