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

/* Performance optimization */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Smooth scrolling with reduced motion support */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

:root {
    --primary-blue: #2563EB;
    --primary-red: #DC2626;
    --dark: #0F172A;
    --gray-900: #1E293B;
    --gray-800: #334155;
    --gray-700: #475569;
    --gray-600: #64748B;
    --gray-500: #94A3B8;
    --gray-400: #CBD5E1;
    --gray-300: #E2E8F0;
    --gray-200: #F1F5F9;
    --gray-100: #F8FAFC;
    --white: #FFFFFF;
    --success: #10B981;
    --warning: #F59E0B;
    --gold: #FFB800;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
}

/* Prevent layout shift */
body.loading {
    overflow: hidden;
}

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

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

/* Lazy loading optimization */
img[loading="lazy"] {
    content-visibility: auto;
}

/* Prevent CLS for images */
img:not([width]):not([height]) {
    aspect-ratio: attr(width) / attr(height);
}

a {
    text-decoration: none;
    color: inherit;
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1D4ED8 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

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

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-call:hover {
    background: #B91C1C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-900);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.logo-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1;
    text-align: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    transition: width 0.3s ease;
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.mobile-toggle span {
    width: 24px;
    height: 3px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(30, 41, 59, 0.70) 100%), 
                url('assets/hero.jpg');
    background-position: center 30%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-blend-mode: overlay;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%);
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    padding: 40px 20px;
    background: rgba(15, 23, 42, 0.40);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
}

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

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

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 
                 0 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 50%, #F87171 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-weight: 800;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(1.2);
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    max-width: 800px;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
}

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

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-400);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}


.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 14px;
    font-weight: 500;
    animation: bounce 2s ease-in-out infinite;
}

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

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: scale(1.05);
}

.trust-item svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.trust-item:hover svg {
    transform: rotate(5deg);
}

.trust-item strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.trust-item span {
    font-size: 14px;
    color: var(--gray-600);
}

/* ========================================
   CERTIFICATIONS SECTION
   ======================================== */
.certifications-section {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.certifications-header {
    text-align: center;
    margin-bottom: 48px;
}

.certifications-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.certifications-header p {
    font-size: 17px;
    color: var(--gray-600);
}

.certifications-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-8px);
}

.cert-badge {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    color: var(--primary-blue);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cert-item:hover .cert-badge {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.cert-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: 120px 0;
    background: var(--gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.service-card {
    position: relative;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    overflow: hidden;
}

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

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

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

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1D4ED8 100%);
    color: var(--white);
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.service-card.featured .service-title,
.service-card.featured .service-description,
.service-card.featured .service-features li {
    color: var(--white);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-card.featured .service-link {
    color: var(--white);
    border-color: var(--white);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    padding: 6px 16px;
    background: var(--gold);
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 100px;
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    color: var(--primary-blue);
    border-radius: 16px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

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

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.service-description {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    color: var(--gray-700);
    font-size: 15px;
    position: relative;
    padding-left: 24px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-link:hover {
    border-bottom-color: var(--primary-blue);
    gap: 12px;
}

/* ========================================
   DISCOUNTS SECTION
   ======================================== */
.discounts-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    position: relative;
    overflow: hidden;
}

.discounts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.discounts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.discount-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.discount-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.discount-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

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

.discount-card:hover .discount-image img {
    transform: scale(1.08);
}

.discount-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 24px;
}

.discount-badge {
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); }
    50% { transform: scale(1.05); box-shadow: 0 12px 32px rgba(37, 99, 235, 0.3); }
}

.discount-content {
    padding: 40px;
}

.discount-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.discount-amount {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1;
}

.discount-description {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 28px;
}

.discount-features {
    list-style: none;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--gray-100);
    border-radius: 12px;
}

.discount-features li {
    padding: 10px 0;
    color: var(--gray-700);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding-left: 28px;
}

.discount-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 18px;
}

.discount-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 32px;
    background: rgba(37, 99, 235, 0.05);
    border-left: 4px solid var(--primary-blue);
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.discount-note svg {
    flex-shrink: 0;
    color: var(--primary-blue);
    margin-top: 2px;
}

.discount-note p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: 120px 0;
    background: var(--white);
}

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

.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.about-image-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.badge-number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.badge-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-700);
}

.about-image-secondary {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-top: 60px;
}

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

.about-content .section-badge {
    text-align: left;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    margin: 40px 0;
}

.about-feature {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    color: var(--primary-blue);
    border-radius: 12px;
    flex-shrink: 0;
}

.about-feature strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: 120px 0;
    background: var(--gray-100);
}

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

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(37, 99, 235, 0.05);
    line-height: 1;
    pointer-events: none;
}

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

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--gray-600);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

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

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 120px 0;
    background: var(--white);
}

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

.contact-description {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    color: var(--primary-blue);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.contact-item a {
    color: var(--primary-blue);
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-red);
}

.contact-item span {
    font-size: 15px;
    color: var(--gray-600);
}

.contact-form-wrapper {
    background: var(--gray-100);
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-note {
    font-size: 14px;
    color: var(--gray-600);
    text-align: center;
    margin-top: 8px;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn:disabled .btn-text {
    display: none;
}

.btn:disabled .btn-loader {
    display: block;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--gray-500);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    color: var(--gray-400);
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: var(--gray-500);
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-500);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-500);
    transition: color 0.3s ease;
}

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

/* ========================================
   ANIMATIONS
   ======================================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

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

/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero .container {
        max-width: 100%;
    }
    
    .hero {
        padding: 160px 0 100px;
        background-position: center center;
        background-size: cover;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .service-card.featured {
        transform: scale(1);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .discounts-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .btn-call {
        display: none;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-subtitle {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-items {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .certifications-logos {
        gap: 32px;
    }
    
    .cert-badge {
        width: 64px;
        height: 64px;
    }
    
    .cert-badge svg {
        width: 32px;
        height: 32px;
    }
    
    .cert-item span {
        font-size: 12px;
    }
    
    .about-images {
        grid-template-columns: 1fr;
    }
    
    .about-image-secondary {
        margin-top: 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-subtitle {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .discount-image {
        height: 240px;
    }
    
    .discount-content {
        padding: 32px 24px;
    }
    
    .discount-title {
        font-size: 24px;
    }
    
    .discount-amount {
        font-size: 40px;
    }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
    /* Hero Background - Small Mobile */
    .hero {
        background-position: center center;
        background-size: cover;
        min-height: 100vh;
        min-height: calc(var(--vh, 1vh) * 100);
    }
    
    /* Container */
    .container {
        padding: 0 12px;
    }
    
    /* Navigation */
    .logo svg {
        width: 32px;
        height: 32px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .logo-subtitle {
        font-size: 9px;
    }
    
    /* Hero */
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 5px 10px;
        margin-bottom: 16px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .hero-cta {
        gap: 10px;
        margin-bottom: 32px;
    }
    
    .hero-cta .btn {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .hero-stats {
        padding: 20px 12px;
        gap: 12px;
    }
    
    .stat-item {
        flex: 1 1 100%;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    /* Trust Bar */
    .trust-bar {
        padding: 24px 0;
    }
    
    .trust-item {
        padding: 12px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .trust-item svg {
        width: 28px;
        height: 28px;
    }
    
    .trust-item strong {
        font-size: 14px;
    }
    
    .trust-item span {
        font-size: 12px;
    }
    
    /* Certifications */
    .certifications-section {
        padding: 40px 0;
    }
    
    .certifications-header h3 {
        font-size: 24px;
    }
    
    .certifications-header p {
        font-size: 14px;
    }
    
    .cert-badge {
        width: 56px;
        height: 56px;
    }
    
    .cert-badge svg {
        width: 28px;
        height: 28px;
    }
    
    .cert-item span {
        font-size: 11px;
    }
    
    /* Sections */
    .services,
    .about,
    .testimonials,
    .discounts-section,
    .contact {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 32px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    /* Services */
    .services-grid {
        gap: 16px;
    }
    
    .service-card {
        padding: 24px 16px;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
    }
    
    .service-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 14px;
    }
    
    .service-features li {
        font-size: 13px;
        padding: 6px 0;
    }
    
    /* Discounts */
    .discounts-grid {
        gap: 24px;
    }
    
    .discount-image {
        height: 200px;
    }
    
    .discount-content {
        padding: 24px 16px;
    }
    
    .discount-title {
        font-size: 20px;
    }
    
    .discount-amount {
        font-size: 32px;
    }
    
    .discount-description {
        font-size: 14px;
    }
    
    .discount-features {
        padding: 16px;
    }
    
    .discount-features li {
        font-size: 13px;
        padding: 8px 0;
    }
    
    .discount-note {
        padding: 16px;
        font-size: 13px;
        flex-direction: column;
        text-align: center;
    }
    
    /* About */
    .about-text {
        font-size: 15px;
    }
    
    .about-feature strong {
        font-size: 16px;
    }
    
    .about-feature p {
        font-size: 14px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 20px 16px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .testimonial-author strong {
        font-size: 14px;
    }
    
    .testimonial-author span {
        font-size: 12px;
    }
    
    /* CTA */
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-subtitle {
        font-size: 14px;
    }
    
    /* Contact */
    .contact-description {
        font-size: 15px;
    }
    
    .contact-item strong {
        font-size: 14px;
    }
    
    .contact-item a,
    .contact-item span {
        font-size: 14px;
    }
    
    .contact-form-wrapper {
        padding: 24px 16px;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-note {
        font-size: 12px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-logo span {
        font-size: 20px;
    }
    
    .footer-description {
        font-size: 14px;
    }
    
    .footer-col h4 {
        font-size: 16px;
    }
    
    .footer-col ul li a {
        font-size: 14px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    /* Cookie Consent */
    .cookie-consent {
        padding: 16px;
    }
    
    .cookie-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .cookie-text h4 {
        font-size: 14px;
    }
    
    .cookie-text p {
        font-size: 12px;
    }
    
    .cookie-actions .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    /* Accessibility */
    .accessibility-toolbar {
        right: 12px;
        bottom: 12px;
    }
    
    .accessibility-toggle {
        width: 44px;
        height: 44px;
    }
    
    .accessibility-menu {
        min-width: 200px;
        padding: 16px;
    }
    
    .accessibility-menu h4 {
        font-size: 14px;
    }
    
    .accessibility-option {
        font-size: 13px;
        padding: 10px;
    }
}

/* ========================================
   COOKIE CONSENT
   ======================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 24px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

.cookie-icon {
    flex-shrink: 0;
    color: var(--primary-blue);
}

.cookie-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-actions .btn {
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
}

/* ========================================
   ACCESSIBILITY TOOLBAR
   ======================================== */
.accessibility-toolbar {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
}

.accessibility-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.accessibility-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.4);
}

.accessibility-toggle:focus {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

.accessibility-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 20px;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.accessibility-menu h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
}

.accessibility-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    text-align: left;
}

.accessibility-option:hover {
    background: var(--gray-100);
    color: var(--primary-blue);
}

.accessibility-option:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.accessibility-option svg {
    flex-shrink: 0;
}

/* ========================================
   SKIP TO CONTENT
   ======================================== */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    z-index: 10001;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 20px;
    outline: 3px solid var(--primary-red);
    outline-offset: 2px;
}

/* ========================================
   ACCESSIBILITY STATES
   ======================================== */
body.high-contrast {
    --gray-900: #000000;
    --gray-700: #1a1a1a;
    --gray-600: #333333;
    --white: #FFFFFF;
    --primary-blue: #0000FF;
    --primary-red: #FF0000;
}

body.high-contrast .navbar,
body.high-contrast .footer {
    background: #000000;
    color: #FFFFFF;
}

body.high-contrast .service-card,
body.high-contrast .testimonial-card,
body.high-contrast .discount-card {
    border: 2px solid #000000;
}

body.text-large {
    font-size: 18px;
}

body.text-large .hero-title {
    font-size: 64px;
}

body.text-large .section-title {
    font-size: 56px;
}

body.text-xlarge {
    font-size: 20px;
}

body.text-xlarge .hero-title {
    font-size: 72px;
}

body.text-xlarge .section-title {
    font-size: 64px;
}

/* ========================================
   RESPONSIVE - COOKIE & ACCESSIBILITY
   ======================================== */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .cookie-actions {
        width: 100%;
    }
    
    .cookie-actions .btn {
        flex: 1;
    }
    
    .accessibility-toolbar {
        right: 16px;
        bottom: 16px;
    }
    
    .accessibility-toggle {
        width: 48px;
        height: 48px;
    }
    
    .accessibility-menu {
        right: -8px;
    }
}

/* ========================================
   LOADING OVERLAY
   ======================================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.loading-spinner svg {
    animation: rotate 1.5s linear infinite;
}

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

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   ======================================== */

/* GPU acceleration for animations */
.btn,
.service-card,
.testimonial-card,
.discount-card,
.nav-link,
.trust-item {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Optimize font loading */
@font-face {
    font-family: 'Inter';
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-display: swap;
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .navbar,
    .hero-cta,
    .cookie-consent,
    .accessibility-toolbar,
    .footer-social,
    .mobile-toggle {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    a {
        text-decoration: underline;
    }
    
    .hero {
        background: white !important;
        color: black !important;
    }
    
    .hero-title,
    .hero-subtitle {
        color: black !important;
    }
}

/* ========================================
   FOCUS VISIBLE (Better Accessibility)
   ======================================== */
:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
    border-radius: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ========================================
   DARK MODE SUPPORT
   ======================================== */
@media (prefers-color-scheme: dark) {
    /* Optional: Add dark mode styles if needed */
}

/* ========================================
   MOBILE-SPECIFIC OPTIMIZATIONS
   ======================================== */

/* Prevent text size adjustment on orientation change */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Improve tap targets for mobile */
@media (max-width: 768px) {
    a, button, input, select, textarea {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Prevent zoom on input focus (iOS) */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px !important;
    }
    
    /* Optimize touch scrolling */
    .nav-menu,
    .accessibility-menu,
    .cookie-consent {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Remove hover effects on touch devices */
    @media (hover: none) {
        .btn:hover,
        .service-card:hover,
        .testimonial-card:hover,
        .discount-card:hover {
            transform: none;
        }
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 60px;
        background-attachment: scroll;
        background-position: center center;
        background-size: cover;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: nowrap;
    }
    
    .stat-item {
        flex: 1;
    }
    
    .stat-divider {
        display: block;
        height: 30px;
    }
}

/* ========================================
   NEW PAGES STYLES
   ======================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #7C3AED 100%);
    padding: 140px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Detail Page */
.services-detail {
    padding: 80px 0;
    background: var(--gray-100);
}

.service-detail-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.service-detail-icon {
    font-size: 64px;
    min-width: 80px;
    text-align: center;
}

.service-detail-content h2 {
    color: var(--dark);
    font-size: 28px;
    margin-bottom: 16px;
}

.service-detail-content > p {
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.service-features li {
    color: var(--gray-700);
    font-size: 15px;
    padding: 8px 0;
}

.service-pricing {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), #7C3AED);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
}

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(135deg, var(--primary-red) 0%, #DC2626 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.emergency-banner h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.emergency-banner p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    background: var(--white);
    color: var(--primary-red);
    padding: 18px 48px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-xl);
}

.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-2xl);
}

.cta-button-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 18px 48px;
    border-radius: 12px;
    border: 2px solid var(--white);
    font-weight: 700;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 16px;
}

.cta-button-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    text-align: center;
}

.service-areas h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 12px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.area-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-blue), #7C3AED);
    color: var(--white);
}

/* About Page */
.about-story {
    padding: 80px 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 24px;
    text-align: center;
}

.story-content .lead {
    font-size: 20px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 24px;
    font-weight: 500;
}

.story-content p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Mission & Values */
.mission-values {
    padding: 80px 0;
    background: var(--gray-100);
}

.mission-values h2 {
    font-size: 36px;
    color: var(--dark);
    text-align: center;
    margin-bottom: 48px;
}

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

.value-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
}

/* Why Choose About */
.why-choose-about {
    padding: 80px 0;
}

.why-choose-about h2 {
    font-size: 36px;
    color: var(--dark);
    text-align: center;
    margin-bottom: 48px;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.choose-item {
    text-align: center;
    padding: 32px;
}

.choose-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.choose-item h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 8px;
}

.choose-item p {
    font-size: 14px;
    color: var(--gray-600);
}

/* Certifications About */
.certifications-about {
    padding: 80px 0;
    background: var(--gray-100);
}

.certifications-about h2 {
    font-size: 36px;
    color: var(--dark);
    text-align: center;
    margin-bottom: 16px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.cert-item {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.cert-badge {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.cert-item p {
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
}

/* Community Commitment */
.community-commitment {
    padding: 80px 0;
}

.community-commitment h2 {
    font-size: 36px;
    color: var(--dark);
    text-align: center;
    margin-bottom: 16px;
}

.community-commitment .lead {
    text-align: center;
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 48px;
}

.commitment-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.commitment-item {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.commitment-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.commitment-item h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 12px;
}

.commitment-item p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #7C3AED 100%);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

/* FAQ Page */
.faq-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.faq-category {
    margin-bottom: 48px;
}

.faq-category h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary-blue);
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 32px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-blue);
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 0 32px 24px;
    color: var(--gray-700);
    font-size: 16px;
    line-height: 1.7;
}

/* Blog Page */
.blog-grid {
    padding: 80px 0;
    background: var(--gray-100);
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.blog-image {
    height: 240px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #7C3AED 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--white);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-content {
    padding: 32px;
}

.blog-meta {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.blog-content h2 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.4;
}

.blog-content > p {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-highlights {
    list-style: none;
    margin-bottom: 24px;
}

.blog-highlights li {
    font-size: 14px;
    color: var(--gray-600);
    padding: 4px 0;
}

.blog-read-more {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #7C3AED;
    transform: translateX(4px);
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: var(--dark);
    text-align: center;
    color: var(--white);
}

.newsletter-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.newsletter-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 280px;
    padding: 16px 24px;
    border-radius: 12px;
    border: 2px solid var(--gray-700);
    background: var(--gray-800);
    color: var(--white);
    font-size: 16px;
}

.newsletter-form input::placeholder {
    color: var(--gray-500);
}

.newsletter-form button {
    padding: 16px 48px;
    white-space: nowrap;
}

/* Responsive - New Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .service-detail-card {
        flex-direction: column;
        padding: 24px;
    }
    
    .service-detail-icon {
        font-size: 48px;
    }
    
    .service-detail-content h2 {
        font-size: 22px;
    }
    
    .emergency-banner h2 {
        font-size: 28px;
    }
    
    .cta-button-large {
        padding: 16px 32px;
        font-size: 18px;
    }
    
    .cta-button-secondary {
        margin-left: 0;
        margin-top: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .values-grid,
    .choose-grid,
    .cert-grid,
    .commitment-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        width: 100%;
    }
}

/* Extra small devices (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .hero-cta .btn {
        font-size: 14px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Optimize images for retina displays */
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}
