/* ===================================
   SOS TOTAL CARE - MODERN MICROSITE
   Horizontal Navigation Design
   =================================== */

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

:root {
    /* Colors */
    --color-primary: #E60006;
    --color-primary-dark: #C00005;
    --color-navy: #032553;
    --color-bg-dark: #0a0e27;
    --color-bg-darker: #050812;
    --color-white: #ffffff;
    --color-gray-light: #e5e7eb;
    --color-gray: #9ca3af;
    --color-gray-dark: #4b5563;
    --color-success: #16A53F;
    --color-warning: #FDBC09;
    --color-info: #149FEC;
    --color-purple: #5B1A8E;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(230, 0, 6, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(230, 0, 6, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(230, 0, 6, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(230, 0, 6, 0.3);
    --shadow-glow: 0 0 20px rgba(230, 0, 6, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--color-bg-darker);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================
   FIXED NAVIGATION
   ================== */

.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 8, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(230, 0, 6, 0.2);
    transition: var(--transition-normal);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-sos {
    font-size: 1.5rem;
    color: var(--color-primary);
    letter-spacing: 0.05em;
}

.logo-divider {
    color: var(--color-gray);
    font-size: 1.5rem;
}

.logo-text {
    font-size: 0.95rem;
    color: var(--color-white);
    letter-spacing: 0.1em;
}

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

.nav-item {
    padding: 0.6rem 1.25rem;
    background: transparent;
    border: none;
    color: var(--color-gray);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-item:hover {
    color: var(--color-white);
    background: rgba(230, 0, 6, 0.1);
}

.nav-item.active {
    color: var(--color-white);
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border: none;
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
    margin-left: 1rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ==================
   MAIN CONTAINER
   ================== */

.main-container {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

.section {
    min-height: calc(100vh - 70px);
    display: none;
    opacity: 0;
    transition: opacity var(--transition-slow);
    padding: var(--spacing-xl) var(--spacing-lg);
}

.section.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
    animation: fadeIn var(--transition-slow) ease-in;
}

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

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-white), var(--color-gray-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-gray);
    font-weight: 400;
}

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

.hero-section {
    position: relative;
    justify-content: center;
    align-items: center;
    overflow: visible;
    padding-bottom: 2rem;
    background: var(--color-bg);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(230, 0, 6, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(3, 37, 83, 0.3) 0%, transparent 50%);
    z-index: 0;
}

/* Main Logo Hero - Top Featured Logo */
.main-logo-hero {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    animation: logoEntrance 1.2s ease-out;
}

.main-hero-logo {
    width: 520px;
    max-width: 85%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(230, 0, 6, 0.5));
    animation: heroLogoPulse 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.main-hero-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 25px 60px rgba(230, 0, 6, 0.7));
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.7) translateY(-30px);
    }
    60% {
        opacity: 1;
        transform: scale(1.05) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes heroLogoPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 20px 50px rgba(230, 0, 6, 0.5));
    }
    50% {
        transform: scale(1.03);
        filter: drop-shadow(0 25px 60px rgba(230, 0, 6, 0.7));
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    text-align: center;
    padding: 0 2rem;
}

.hero-logo-showcase {
    margin-top: -1rem;
    margin-bottom: 0;
    animation: fadeInScale 1s ease-out;
}

.hero-brand-logo {
    width: 337px;
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(230, 0, 6, 0.3));
    animation: pulse 3s ease-in-out infinite;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 10px 30px rgba(230, 0, 6, 0.3));
    }
    50% {
        transform: scale(1.02);
        filter: drop-shadow(0 15px 40px rgba(230, 0, 6, 0.5));
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(230, 0, 6, 0.1);
    border: 1px solid rgba(230, 0, 6, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    animation: float 3s ease-in-out infinite;
}

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

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

.hero-title {
    margin-bottom: var(--spacing-md);
}

.title-highlight {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary), #ff3333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.title-main {
    display: block;
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-white);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(230, 0, 6, 0.2);
    border-radius: 16px;
    min-width: 180px;
    transition: var(--transition-normal);
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

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

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-gray);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    font-family: var(--font-primary);
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

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

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(230, 0, 6, 0.5);
}

.btn-outline:hover {
    background: rgba(230, 0, 6, 0.1);
    border-color: var(--color-primary);
}

.btn-icon {
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.hero-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.trust-separator {
    color: var(--color-gray-dark);
}

/* Core Values Box Container */
.values-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 1rem;
    padding: 1.25rem 1.5rem 1.5rem;
    background: linear-gradient(145deg, rgba(20, 25, 50, 0.95), rgba(10, 14, 39, 0.98));
    border: 2px solid rgba(230, 0, 6, 0.5);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(230, 0, 6, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    z-index: 10;
}

/* Core Values Header */
.values-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    white-space: nowrap;
}

.values-header-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.values-header-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    text-transform: uppercase;
    margin: 0;
}

/* Values List */
.values-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item {
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(30, 35, 60, 0.6), rgba(15, 20, 40, 0.7));
    border-left: 3px solid var(--color-primary);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: linear-gradient(135deg, rgba(40, 45, 75, 0.7), rgba(20, 25, 50, 0.8));
    border-left-color: #ff3333;
    transform: translateX(4px);
}

.value-item-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.value-item-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.value-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
    letter-spacing: 0.02em;
}

.value-item-desc {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--color-gray);
    margin: 0;
    padding-left: 2rem;
}

/* Values Floating */
.values-floating {
    display: flex;
    justify-content: center;
    gap: 1rem;
    pointer-events: all;
}

.value-float {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0.5rem;
    background: linear-gradient(180deg, rgba(40, 45, 70, 0.95), rgba(20, 25, 45, 0.98));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 0, 6, 0.4);
    border-radius: 10px;
    min-width: 90px;
    opacity: 1;
    pointer-events: all;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.value-float:hover {
    transform: translateY(-3px);
    border-color: var(--color-primary);
    box-shadow: 
        0 8px 20px rgba(230, 0, 6, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    background: linear-gradient(180deg, rgba(50, 55, 85, 0.95), rgba(25, 30, 55, 0.98));
}

.value-float:active {
    transform: translateY(1px);
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.5),
        inset 0 2px 4px rgba(0, 0, 0, 0.3);
}
    border-color: var(--color-primary);
    box-shadow: 0 5px 20px rgba(230, 0, 6, 0.4);
}

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

.value-icon {
    font-size: 2rem;
}

.value-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-white);
    text-align: center;
    line-height: 1.2;
}

/* Value Modal - JavaScript controlled */
.value-modal-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.value-modal-wrapper.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.value-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    cursor: pointer;
    text-decoration: none;
}

.value-modal-content {
    position: relative;
    max-width: 600px;
    width: 90%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(5, 8, 18, 0.98));
    border: 2px solid var(--color-primary);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(230, 0, 6, 0.3);
    animation: slideUp 0.4s ease-out;
    z-index: 1;
}

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

.value-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(230, 0, 6, 0.2);
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0;
    font-family: inherit;
}

.value-modal-close:hover {
    background: var(--color-primary);
    transform: rotate(90deg);
}

.value-modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.value-modal-icon {
    font-size: 3rem;
}

.value-modal-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-white), var(--color-gray-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-modal-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-gray-light);
    font-weight: 400;
}

.value-modal-text strong {
    color: var(--color-white);
    font-weight: 700;
}

/* Legacy Banner */
.legacy-banner {
    position: relative;
    z-index: 2;
    margin-top: -0.25rem;
    margin-bottom: 0;
    padding: 0 2rem;
}

.legacy-content {
    max-width: 620px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(230, 0, 6, 0.15), rgba(3, 37, 83, 0.2));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(230, 0, 6, 0.3);
    border-radius: 16px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.legacy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 0, 6, 0.5), transparent);
}

.legacy-icon {
    font-size: 2rem;
    flex-shrink: 0;
    animation: shield-glow 3s ease-in-out infinite;
}

@keyframes shield-glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(230, 0, 6, 0.3));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(230, 0, 6, 0.6));
        transform: scale(1.05);
    }
}

.legacy-text {
    flex: 1;
}

.legacy-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--color-white), var(--color-gray-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legacy-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-gray-light);
    font-weight: 400;
}

.legacy-seal {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: rgba(230, 0, 6, 0.1);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    min-width: 80px;
    min-height: 80px;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(230, 0, 6, 0.4);
}

.seal-year {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.seal-text {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--color-white);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

/* ==================
   SERVICES SECTION
   ================== */

.services-section {
    justify-content: flex-start;
}

/* Mobile dropdown - hidden on desktop */
.service-dropdown-mobile {
    display: none;
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(10, 14, 39, 0.6);
    border: 2px solid rgba(230, 0, 6, 0.2);
    border-radius: 12px;
    color: var(--color-gray);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.service-tab:hover {
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.service-tab.active {
    background: linear-gradient(135deg, rgba(230, 0, 6, 0.2), rgba(230, 0, 6, 0.1));
    border-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-glow);
}

.tab-icon {
    font-size: 1.25rem;
}

.tab-text {
    font-size: 0.9rem;
}

.services-grid-container {
    position: relative;
    flex: 1;
    width: 100%;
}

.services-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    animation: fadeIn var(--transition-slow);
}

.services-grid.active {
    display: grid;
}

.service-tile {
    position: relative;
    padding: 1.1rem;
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(230, 0, 6, 0.2);
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-tile:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.service-tile.featured {
    border-width: 2px;
    border-color: var(--color-primary);
    background: rgba(230, 0, 6, 0.05);
}

.tile-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.85rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tile-icon {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.tile-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.15rem;
}

.tile-provider {
    display: none;
}

.tile-desc {
    font-size: 0.85rem;
    color: var(--color-gray);
    line-height: 1.4;
    flex: 1;
}

.tile-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.tile-benefits span {
    padding: 0.4rem 0.85rem;
    background: rgba(230, 0, 6, 0.1);
    border: 1px solid rgba(230, 0, 6, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-white);
}

.tile-btn {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: transparent;
    border: 1px solid rgba(230, 0, 6, 0.5);
    color: var(--color-primary);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tile-btn:hover {
    background: rgba(230, 0, 6, 0.1);
    border-color: var(--color-primary);
}

.tile-data {
    display: none !important;
}

/* ==================
   APPROACH SECTION
   ================== */

.approach-section {
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.approach-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach-header {
    text-align: center;
}

.approach-interactive {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Step Navigation */
.approach-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
}

.approach-step-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.875rem 1.25rem;
    background: rgba(10, 14, 39, 0.6);
    border: 2px solid rgba(230, 0, 6, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    min-width: 100px;
}

.approach-step-btn:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    z-index: 10;
}

.approach-step-btn.active {
    background: linear-gradient(135deg, rgba(230, 0, 6, 0.2), rgba(230, 0, 6, 0.1));
    border-color: var(--color-primary);
    border-width: 3px;
    box-shadow: var(--shadow-glow);
    transform: translateY(-8px) scale(1.05);
    z-index: 10;
}

.step-number {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
}

.approach-step-btn.active .step-number {
    color: var(--color-white);
}

.step-icon {
    font-size: 2rem;
    transition: var(--transition-normal);
}

.approach-step-btn:hover .step-icon,
.approach-step-btn.active .step-icon {
    transform: scale(1.2);
}

.step-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gray);
    text-align: center;
}

.approach-step-btn.active .step-name {
    color: var(--color-white);
}

.step-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(230, 0, 6, 0.3), rgba(230, 0, 6, 0.1));
    position: relative;
}

.step-connector::after {
    content: '→';
    position: absolute;
    right: -8px;
    top: -9px;
    color: rgba(230, 0, 6, 0.5);
    font-size: 1.2rem;
}

/* Step Details Display */
.approach-details {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-detail {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: rgba(10, 14, 39, 0.6);
    border: 2px solid rgba(230, 0, 6, 0.2);
    border-radius: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-slow);
    min-height: 100%;
}

.approach-detail.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.detail-desc {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 1rem;
}

.detail-highlights {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.detail-highlights span {
    padding: 0.5rem 1rem;
    background: rgba(230, 0, 6, 0.1);
    border: 1px solid rgba(230, 0, 6, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-white);
}

/* ==================
   SLA SECTION
   ================== */

.sla-section {
    justify-content: flex-start;
}

.sla-toggle {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-lg);
}

.sla-toggle-btn {
    padding: 0.7rem 1.5rem;
    background: rgba(10, 14, 39, 0.6);
    border: 2px solid rgba(230, 0, 6, 0.2);
    border-radius: 10px;
    color: var(--color-gray);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.sla-toggle-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-white);
}

.sla-toggle-btn.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-glow);
}

.sla-grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 0 1.5rem;
    width: 100%;
}

.sla-grid.active {
    display: grid;
    animation: fadeIn var(--transition-slow);
}

.sla-card {
    padding: 1.25rem;
    background: rgba(10, 14, 39, 0.6);
    border: 2px solid rgba(230, 0, 6, 0.2);
    border-radius: 16px;
    transition: var(--transition-normal);
}

.sla-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.sla-card.critical { border-color: #dc2626; }
.sla-card.high { border-color: #f97316; }
.sla-card.medium { border-color: #eab308; }
.sla-card.low { border-color: #22c55e; }

.sla-badge {
    display: inline-block;
    padding: 0.4rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.sla-card.critical .sla-badge { background: rgba(220, 38, 38, 0.2); color: #fca5a5; }
.sla-card.high .sla-badge { background: rgba(249, 115, 22, 0.2); color: #fdba74; }
.sla-card.medium .sla-badge { background: rgba(234, 179, 8, 0.2); color: #fde047; }
.sla-card.low .sla-badge { background: rgba(34, 197, 94, 0.2); color: #86efac; }

.sla-time {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.sla-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.sla-list {
    list-style: none;
    padding: 0;
}

.sla-list li {
    padding: 0.35rem 0;
    color: var(--color-gray);
    font-size: 0.875rem;
    padding-left: 1.5rem;
    position: relative;
}

.sla-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.sla-cta {
    text-align: center;
    padding: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.sla-cta p {
    font-size: 1rem;
    color: var(--color-gray);
    margin-bottom: 0.75rem;
}

.sla-phone {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-normal);
}

.sla-phone:hover {
    color: var(--color-white);
    text-shadow: 0 0 20px rgba(230, 0, 6, 0.5);
}

/* ==================
   MODALS
   ================== */

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--color-bg-dark);
    border: 2px solid rgba(230, 0, 6, 0.3);
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/sos-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    border-radius: 20px;
}

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(230, 0, 6, 0.1);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: rotate(90deg);
}

.modal-body {
    padding: 3rem;
    position: relative;
    z-index: 1;
}

.modal-body h3 {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.modal-body p {
    font-size: 1.05rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.modal-body ul {
    list-style: none;
    padding: 0;
}

.modal-body ul li {
    padding: 0.75rem 0;
    color: var(--color-gray);
    font-size: 1rem;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.6;
}

.modal-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
    font-size: 1.1rem;
}

.modal-footer {
    padding: 1.5rem 3rem 2rem;
    border-top: 1px solid rgba(230, 0, 6, 0.2);
    display: flex;
    justify-content: center;
}

/* Contact Modal */
.modal-content.contact-modal {
    max-width: 600px;
}

.modal-content.contact-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/sos-total-care-fullOLD.png');
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    border-radius: 20px;
}

.contact-header {
    padding: 3rem 3rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(230, 0, 6, 0.2);
    position: relative;
    z-index: 1;
}

.contact-header h2 {
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.contact-header p {
    font-size: 1.05rem;
    color: var(--color-gray);
}

.contact-body {
    padding: 2.5rem 3rem;
    position: relative;
    z-index: 1;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem;
    background: rgba(10, 14, 39, 0.6);
    border: 2px solid rgba(230, 0, 6, 0.2);
    border-radius: 16px;
    text-decoration: none;
    transition: var(--transition-normal);
}

.contact-method:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.method-icon {
    font-size: 2.5rem;
}

.method-title {
    font-size: 0.95rem;
    color: var(--color-gray);
    font-weight: 500;
}

.method-value {
    font-size: 1.1rem;
    color: var(--color-primary);
    font-weight: 700;
    text-align: center;
}

.contact-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.trust-badge {
    padding: 0.6rem 1.25rem;
    background: rgba(230, 0, 6, 0.1);
    border: 1px solid rgba(230, 0, 6, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-white);
}

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

.footer {
    position: relative;
    background: rgba(5, 8, 18, 0.95);
    border-top: 1px solid rgba(230, 0, 6, 0.2);
    padding: 2rem;
    margin-top: 0;
    z-index: 5;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo:visited {
    color: inherit;
    text-decoration: none;
}

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

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--color-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

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

.footer-links span {
    color: var(--color-gray-dark);
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--color-gray-dark);
}

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

@media (max-width: 1024px) {
    .approach-steps {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .approach-step-btn {
        min-width: 90px;
        padding: 1rem 1.25rem;
    }
    
    .step-connector {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(5, 8, 18, 0.98);
        border-top: 1px solid rgba(230, 0, 6, 0.2);
        padding: 1rem;
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-cta {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
    
    .title-highlight {
        font-size: 2.5rem;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .hero-stats-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-box {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-trust {
        font-size: 0.85rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .values-floating {
        flex-wrap: wrap;
        padding: 0 1rem;
    }
    
    .value-float {
        min-width: 80px;
    }
    
    .legacy-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1.25rem;
        gap: 1.25rem;
    }
    
    .legacy-icon {
        font-size: 2.5rem;
    }
    
    .legacy-title {
        font-size: 1.25rem;
    }
    
    .legacy-subtitle {
        font-size: 0.9rem;
    }
    
    .legacy-seal {
        min-width: 90px;
        min-height: 90px;
        padding: 1rem;
    }
    
    .seal-year {
        font-size: 1.15rem;
    }
    
    .seal-text {
        font-size: 0.65rem;
    }
    
    .service-tabs {
        gap: 0.75rem;
    }
    
    .service-tab {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .approach-steps {
        gap: 0.5rem;
    }
    
    .approach-step-btn {
        min-width: 70px;
        padding: 0.875rem 0.75rem;
    }
    
    .step-number {
        font-size: 1.2rem;
    }
    
    .step-icon {
        font-size: 2rem;
    }
    
    .step-name {
        font-size: 0.8rem;
    }
    
    .detail-title {
        font-size: 1.5rem;
    }
    
    .detail-desc {
        font-size: 1rem;
    }
    
    .approach-detail {
        padding: 2rem 1.5rem;
    }
    
    .sla-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .modal-content {
        margin: 1rem;
    }
    
    .modal-body,
    .contact-body {
        padding: 2rem 1.5rem;
    }
    
    .contact-header {
        padding: 2rem 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .title-highlight {
        font-size: 2rem;
    }
    
    .title-main {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* ==================
   ENHANCED MOBILE STYLES
   ================== */

/* Mobile Portrait (320px - 480px) */
@media (max-width: 480px) and (orientation: portrait) {
    .hero-section {
        padding-top: 70px;
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile browsers */
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-logo-showcase {
        margin-top: 0;
        margin-bottom: 0.5rem;
    }
    
    .hero-brand-logo {
        width: 200px;
        max-width: 60%;
    }
    
    .title-highlight {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .title-main {
        font-size: 1.35rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-stats-row {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
        width: 100%;
        padding: 0 0.5rem;
    }
    
    .stat-box {
        padding: 0.5rem 0.75rem;
        min-width: auto;
        flex: 1;
        max-width: 110px;
        text-align: center;
    }
    
    .stat-icon {
        font-size: 1.25rem;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .hero-trust {
        flex-wrap: wrap;
        gap: 0.5rem;
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .trust-separator {
        display: none;
    }
    
    .trust-item {
        background: rgba(230, 0, 6, 0.1);
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
        font-size: 0.7rem;
    }
    
    .hero-actions {
        gap: 0.75rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Core Values Box - Mobile Portrait */
    .values-box {
        margin-top: 1.5rem;
        padding: 1rem 1rem 1.25rem;
        border-radius: 12px;
    }
    
    /* Core Values Header - Mobile Portrait */
    .values-header {
        margin-bottom: 0.75rem;
    }
    
    .values-header-line {
        width: 30px;
    }
    
    .values-header-title {
        font-size: 0.65rem;
    }
    
    /* Values Cards - Mobile Portrait */
    .values-floating {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .value-float {
        min-width: 60px;
        max-width: 60px;
        padding: 0.5rem;
        border-radius: 8px;
        opacity: 1;
        animation: none;
    }
    
    .value-icon {
        font-size: 1.25rem;
    }
    
    .value-title {
        font-size: 0.55rem;
        line-height: 1.2;
        display: none;
    }
    
    /* Legacy Banner - Mobile */
    .legacy-banner {
        position: relative;
        margin-top: 1rem;
        margin-bottom: 0;
        padding: 0 0.5rem;
    }
    
    .legacy-content {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .legacy-icon {
        font-size: 1.75rem;
    }
    
    .legacy-title {
        font-size: 1rem;
    }
    
    .legacy-seal {
        min-width: 60px;
        min-height: 60px;
        padding: 0.5rem;
    }
    
    .seal-year {
        font-size: 0.85rem;
    }
    
    .seal-text {
        font-size: 0.5rem;
    }
    
    /* Service Tabs - Mobile Horizontal Scroll */
    .services-section {
        padding: 1rem 0;
        overflow-x: hidden;
    }
    
    /* Hide regular tabs on mobile portrait - use dropdown instead */
    .service-tabs {
        display: none;
    }
    
    /* Mobile Category Dropdown */
    .service-dropdown-mobile {
        display: block;
        position: relative;
        margin: 0 0.75rem 1rem;
        z-index: 50;
    }
    
    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0.875rem 1rem;
        background: rgba(10, 14, 39, 0.8);
        border: 2px solid var(--color-primary);
        border-radius: 12px;
        color: var(--color-white);
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: rgba(230, 0, 6, 0.3);
        -webkit-touch-callout: none;
        touch-action: manipulation;
        position: relative;
        z-index: 51;
    }
    
    .dropdown-toggle:hover,
    .dropdown-toggle.active {
        background: rgba(230, 0, 6, 0.15);
    }
    
    .dropdown-icon {
        font-size: 1.25rem;
        margin-right: 0.5rem;
    }
    
    .dropdown-text {
        flex: 1;
        text-align: left;
    }
    
    .dropdown-arrow {
        font-size: 0.75rem;
        transition: transform 0.3s ease;
    }
    
    .dropdown-toggle.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        display: none;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        border: 2px solid rgba(230, 0, 6, 0.3);
        border-radius: 12px;
        overflow: hidden;
        z-index: 200;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .dropdown-menu.open {
        display: block;
        animation: fadeIn 0.2s ease;
    }
    
    .dropdown-item {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0.875rem 1rem;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(230, 0, 6, 0.1);
        color: var(--color-gray);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all 0.2s ease;
        -webkit-tap-highlight-color: rgba(230, 0, 6, 0.3);
        -webkit-touch-callout: none;
        touch-action: manipulation;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-item:hover,
    .dropdown-item.active {
        background: rgba(230, 0, 6, 0.1);
        color: var(--color-white);
    }
    
    .dropdown-item.active {
        background: rgba(230, 0, 6, 0.2);
    }
    
    .item-icon {
        font-size: 1.1rem;
        margin-right: 0.75rem;
    }

    .service-tab {
        flex-shrink: 0;
        padding: 0.4rem 0.5rem;
        font-size: 0.65rem;
        gap: 0.2rem;
    }
    
    .tab-icon {
        font-size: 0.85rem;
    }
    
    .tab-text {
        font-size: 0.65rem;
        white-space: nowrap;
    }
    
    /* Service Tiles - Mobile */
    .services-grid {
        display: none;
        grid-template-columns: 1fr;
        padding: 0 0.75rem;
        margin: 0;
        gap: 0.75rem;
        max-width: 100%;
    }
    
    .services-grid.active {
        display: grid;
    }
    
    .service-tile {
        padding: 1rem;
        width: 100%;
    }
    
    .tile-icon {
        font-size: 1.75rem;
    }
    
    .tile-title {
        font-size: 0.95rem;
    }
    
    .tile-provider {
        font-size: 0.7rem;
    }
    
    .tile-desc {
        font-size: 0.85rem;
    }
    
    .tile-benefits {
        gap: 0.35rem;
    }
    
    .tile-benefits span {
        font-size: 0.65rem;
        padding: 0.2rem 0.4rem;
    }
    
    /* Approach Section - Mobile */
    .approach-section {
        padding: 1.5rem 0.5rem 1rem;
    }
    
    .approach-container {
        gap: 1rem;
    }
    
    .approach-header {
        margin-bottom: 0.75rem;
    }
    
    .approach-steps {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0.5rem 0.75rem;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 0.35rem;
        width: 100%;
    }
    
    .approach-steps::-webkit-scrollbar {
        display: none;
    }
    
    .approach-step-btn {
        flex-shrink: 0;
        min-width: 58px;
        padding: 0.5rem 0.4rem;
    }
    
    .step-number {
        font-size: 0.9rem;
    }
    
    .step-icon {
        font-size: 1.25rem;
    }
    
    .step-name {
        font-size: 0.6rem;
    }
    
    .step-connector {
        display: none;
    }
    
    .approach-details {
        min-height: auto;
        margin: 0 0.5rem;
    }
    
    .approach-detail {
        position: relative;
        padding: 1.25rem 1rem;
        margin: 0;
        min-height: auto;
    }
    
    .detail-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .detail-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .detail-desc {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }
    
    .detail-highlights {
        gap: 0.4rem;
    }
    
    .detail-highlights span {
        padding: 0.3rem 0.5rem;
        font-size: 0.65rem;
    }
    
    /* SLA Section - Mobile */
    .sla-grid {
        padding: 0 0.75rem;
        gap: 1rem;
    }
    
    .sla-card {
        padding: 1.25rem;
    }
    
    .sla-time {
        font-size: 2rem;
    }
    
    .sla-label {
        font-size: 0.9rem;
    }
    
    /* Value Modals - Mobile */
    .value-modal-wrapper:target,
    .value-modal.active {
        padding: 1rem;
    }
    
    .value-modal-content {
        padding: 1.5rem;
        max-width: 100%;
        border-radius: 16px;
    }
    
    .value-modal-icon {
        font-size: 2rem;
    }
    
    .value-modal-title {
        font-size: 1.25rem;
    }
    
    .value-modal-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .value-modal-close {
        width: 32px;
        height: 32px;
        font-size: 1.5rem;
        top: 0.75rem;
        right: 0.75rem;
    }
    
    /* Contact Modal - Mobile */
    .modal-content,
    .contact-modal-content {
        margin: 0.5rem;
        max-height: 95vh;
    }
    
    .modal-header,
    .contact-header {
        padding: 1.25rem;
    }
    
    .modal-body,
    .contact-body {
        padding: 1.25rem;
    }
    
    /* Section Headers - Mobile */
    .section-header {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
}

/* Mobile Landscape - Target by height since landscape mobiles have short height */
/* This catches iPhones and similar devices in landscape orientation */
@media (max-height: 500px) and (orientation: landscape) {
    /* Force mobile navigation in landscape */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(5, 8, 18, 0.98);
        border-top: 1px solid rgba(230, 0, 6, 0.2);
        padding: 1rem;
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: flex !important;
    }
    
    .nav-cta {
        display: none;
    }
    
    .header-container {
        padding: 0.5rem 1rem;
    }
    
    .brand-logo {
        height: 32px;
    }
    
    /* Hero - Make scrollable with stacked layout */
    .hero-section {
        padding-top: 50px;
        min-height: auto;
        height: auto;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .hero-content {
        padding: 1rem 1.5rem 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0.75rem;
        min-height: auto;
    }
    
    .hero-logo-showcase {
        margin: 0;
    }
    
    .hero-brand-logo {
        width: 200px;
    }
    
    .hero-title {
        text-align: center;
        margin-bottom: 0;
    }
    
    .title-highlight {
        font-size: 1.4rem;
    }
    
    .title-main {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        display: block;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }
    
    .hero-stats-row {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.5rem;
        width: 100%;
        justify-content: center;
    }
    
    .stat-box {
        padding: 0.4rem 0.5rem;
        min-width: auto;
        flex: 1;
        max-width: 120px;
    }
    
    .stat-icon {
        font-size: 1rem;
    }
    
    .stat-value {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.55rem;
    }
    
    .hero-trust {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .trust-separator {
        display: none;
    }
    
    .hero-actions {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }
    
    .btn-lg {
        padding: 0.5rem 0.875rem;
        font-size: 0.75rem;
    }
    
    /* Core Values Box - Landscape */
    .values-box {
        margin-top: 0.75rem;
        padding: 0.5rem 1rem 0.75rem;
        border-radius: 10px;
        order: 9;
    }
    
    /* Core Values Header - Landscape */
    .values-header {
        margin-bottom: 0.5rem;
    }
    
    .values-header-line {
        width: 25px;
    }
    
    .values-header-title {
        font-size: 0.6rem;
        letter-spacing: 0.15em;
    }
    
    /* Values - Compact horizontal row in Landscape */
    .values-floating {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.4rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.25rem;
    }
    
    .value-float {
        padding: 0.4rem 0.6rem;
        min-width: auto;
        flex-shrink: 0;
        opacity: 1;
        animation: none;
    }
    
    .value-icon {
        font-size: 1rem;
    }
    
    .value-title {
        font-size: 0.6rem;
        display: none;
    }
    
    /* Legacy Banner - Compact version - before values */
    .legacy-banner {
        display: flex;
        padding: 0.4rem 1rem;
        margin-top: 0.5rem;
        margin-bottom: 0;
        order: 9;
    }
    
    .legacy-icon {
        font-size: 1.25rem;
    }
    
    .legacy-title {
        font-size: 0.75rem;
    }
    
    .legacy-seal {
        padding: 0.3rem 0.6rem;
    }
    
    .seal-year {
        font-size: 0.6rem;
    }
    
    .seal-text {
        font-size: 0.5rem;
    }
    
    /* All sections need to be scrollable in landscape */
    .main-container {
        margin-top: 50px;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .section {
        min-height: auto;
        height: auto;
        padding: 1rem;
        overflow-y: auto;
    }
    
    .section-header {
        margin-bottom: 1rem;
    }
    
    /* Services - Landscape */
    .services-section {
        padding-top: 50px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0.5rem;
    }
    
    .service-tab {
        flex-shrink: 0;
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .service-tile {
        padding: 1rem;
    }
    
    .service-icon {
        font-size: 1.75rem;
    }
    
    .service-name {
        font-size: 0.85rem;
    }
    
    /* Approach - Landscape */
    .approach-section {
        padding: 1rem;
    }
    
    .approach-steps {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0.25rem;
    }
    
    .approach-step-btn {
        flex-shrink: 0;
        padding: 0.5rem 0.75rem;
        min-width: 80px;
    }
    
    .step-icon {
        font-size: 1.5rem;
    }
    
    .step-name {
        font-size: 0.7rem;
    }
    
    .step-connector {
        width: 20px;
    }
    
    .approach-details {
        min-height: 200px;
    }
    
    .approach-detail {
        padding: 1rem;
    }
    
    .detail-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .detail-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .detail-desc {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .detail-highlights span {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    /* SLA - Landscape */
    .sla-section {
        padding: 1rem;
    }
    
    .sla-toggle-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .sla-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .sla-card {
        padding: 0.75rem;
    }
    
    .sla-badge {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
    }
    
    .sla-time {
        font-size: 1.25rem;
    }
    
    .sla-title {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .sla-list li {
        font-size: 0.7rem;
        padding: 0.25rem 0;
    }
    
    .sla-cta {
        padding: 0.75rem;
    }
    
    .sla-phone {
        font-size: 1.25rem;
    }
    
    /* Modals - Landscape */
    .value-modal-content,
    .modal-content,
    .contact-modal-content {
        max-height: 90vh;
        overflow-y: auto;
        padding: 1.5rem;
    }
    
    .value-modal-close {
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
        top: 0.5rem;
        right: 0.5rem;
    }
}

/* Medium Mobile (375px - 414px width) */
@media (min-width: 375px) and (max-width: 414px) {
    .hero-brand-logo {
        width: 220px;
    }
    
    .title-highlight {
        font-size: 1.9rem;
    }
    
    .title-main {
        font-size: 1.5rem;
    }
    
    .value-float {
        min-width: 70px;
        max-width: 70px;
    }
    
    .value-title {
        font-size: 0.6rem;
    }
}

/* Larger Mobile (414px+) */
@media (min-width: 414px) and (max-width: 480px) {
    .hero-brand-logo {
        width: 250px;
    }
    
    .title-highlight {
        font-size: 2.1rem;
    }
    
    .title-main {
        font-size: 1.6rem;
    }
    
    .value-float {
        min-width: 75px;
        max-width: 80px;
    }
    
    .values-floating {
        gap: 0.6rem;
    }
}

/* Fix for iOS Safari bottom bar */
@supports (-webkit-touch-callout: none) {
    .hero-section {
        min-height: -webkit-fill-available;
    }
}

/* Mobile Navigation Enhancement */
@media (max-width: 768px) {
    .nav-menu {
        gap: 0.5rem;
    }
    
    .nav-item {
        padding: 0.875rem 1rem;
        width: 100%;
        text-align: center;
        border-radius: 8px;
    }
    
    .nav-item:hover,
    .nav-item.active {
        background: rgba(230, 0, 6, 0.15);
    }
    
    .nav-cta {
        margin-top: 0.5rem;
        padding: 1rem;
    }
    
    /* Mobile Toggle Animation */
    .mobile-toggle {
        width: 28px;
        height: 20px;
        position: relative;
        cursor: pointer;
        background: none;
        border: none;
    }
    
    .mobile-toggle span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: var(--color-white);
        border-radius: 2px;
        left: 0;
        transition: var(--transition-fast);
    }
    
    .mobile-toggle span:nth-child(1) {
        top: 0;
    }
    
    .mobile-toggle span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }
    
    .mobile-toggle span:nth-child(3) {
        bottom: 0;
    }
    
    /* Hamburger to X animation when menu is open */
    .mobile-toggle.active span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }
}

/* Touch-friendly tap targets */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-item,
    .service-tab,
    .approach-step-btn,
    .value-float,
    .service-tile,
    .tile-btn {
        min-height: 44px;
    }
    
    .value-float {
        min-height: auto;
        padding: 0.75rem;
    }
}

/* ==================
   UTILITIES
   ================== */

.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-gray { color: var(--color-gray); }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

/* Hide on mobile */
@media (max-width: 768px) {
    .hide-mobile { display: none !important; }
}

/* Hide on desktop */
@media (min-width: 769px) {
    .hide-desktop { display: none !important; }
}
