/* ============================================
   Modern Professional Design System
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Professional Color Palette */
    --primary: #1A1F2E;
    --primary-light: #2D3447;
    --accent: #FF6B35;
    --accent-light: #FF8C61;
    --accent-dark: #E55A2B;
    --success: #10B981;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-tertiary: #F3F4F6;
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Shadows */
    --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);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

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

.cta-phone {
    background: var(--accent);
    color: white !important;
    padding: 0.625rem 1.25rem !important;
    border-radius: 6px;
    font-weight: 600;
}

.cta-phone::after {
    display: none;
}

.cta-phone:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:hover {
    background: var(--bg-secondary);
}

.mobile-menu-toggle:active {
    background: var(--bg-tertiary);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

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

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

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

/* ============================================
   Hero Section - Professional Redesign
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: var(--space-lg);
    background: linear-gradient(135deg, #0F1419 0%, #1A1F2E 50%, #2D3447 100%);
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    mask-image: linear-gradient(to left, transparent 0%, black 50%);
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 50%);
    z-index: 1;
}

.hero-overlay,
.hero-particles {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 5rem;
}

.hero-content .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
    border: 2px solid rgba(255, 107, 53, 0.5);
    color: #FFE5DC;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
    box-shadow: 
        0 4px 20px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.hero-badge::after {
    display: none;
}

.hero-badge::before {
    display: none;
}

.badge-icon {
    display: none;
}

.hero-title {
    font-size: clamp(2.25rem, 7vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-sm);
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.hero-description {
    font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin-bottom: var(--space-md);
    line-height: 1.6;
    font-weight: 400;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    max-width: 700px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.125rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), var(--success));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.benefit-icon {
    color: var(--success);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.benefit-icon .icon {
    width: 100%;
    height: 100%;
}

.hero-cta-container {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-sm);
    align-items: flex-start;
    max-width: 600px;
}

.cta-primary-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    flex: 1;
    min-width: auto;
}

.cta-secondary-wrapper {
    display: flex;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    min-height: 0;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
    border: none;
    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.15), transparent);
    transition: left 0.4s ease;
}

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

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-hero-cta {
    padding: 0.8125rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 8px;
    position: relative;
    min-height: 44px;
    height: 44px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-text {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
    line-height: 1;
}

.cta-main {
    font-size: 0.9375rem;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1;
    display: inline-block;
}

.cta-sub {
    font-size: 0.8125rem;
    opacity: 0.95;
    font-weight: 500;
    white-space: nowrap;
    line-height: 1;
    display: inline-block;
}

.btn-primary .cta-text {
    flex-direction: row;
    gap: 0.625rem;
    align-items: center;
}

.btn-primary .cta-main {
    margin-right: 0;
}

.btn-secondary .cta-text {
    font-size: 0.9375rem;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1;
}

.cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    line-height: 0;
}

.cta-icon .icon {
    width: 100%;
    height: 100%;
    fill: currentColor;
    display: block;
}

.btn-primary .cta-icon {
    width: 1rem;
    height: 1rem;
}

.btn-secondary .cta-icon {
    width: 1rem;
    height: 1rem;
}

.cta-note {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.375rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hero-trust {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(255, 107, 53, 0.4);
    padding: 0.875rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-top: 80px;
}

.trust-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.98);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-trust::before {
    display: none;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-sm);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.scroll-indicator .arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    margin: var(--space-sm) auto;
    animation: bounce 2s infinite;
}

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

/* ============================================
   Sections
   ============================================ */
section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-md);
    letter-spacing: -0.5px;
}

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

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

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    background: white;
    padding: var(--space-xl);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-card:active {
    transform: translateY(-2px);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.service-icon .icon {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   About - Enhanced Design
   ============================================ */
.about {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.about-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .about-main {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    width: 100%;
}

.about-intro-card {
    background: white;
    padding: var(--space-xl);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent);
    position: relative;
    width: 100%;
}

.about-intro-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: var(--space-lg);
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.about-intro {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

.about-intro strong {
    color: var(--accent);
    font-weight: 700;
}

.about-description {
    background: white;
    padding: var(--space-xl);
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    width: 100%;
}

.about-description p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.about-description p:last-child {
    margin-bottom: 0;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    width: 100%;
}

.feature-item {
    background: white;
    padding: var(--space-xl);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: left;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.08));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255, 107, 53, 0.25);
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover .feature-icon::before {
    opacity: 1;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.12));
    border-color: rgba(255, 107, 53, 0.4);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.feature-icon .icon {
    width: 28px;
    height: 28px;
    fill: var(--accent);
    position: relative;
    z-index: 1;
    transition: var(--transition);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.feature-item:hover .feature-icon .icon {
    fill: var(--accent-dark);
    transform: scale(1.1);
}

.feature-item strong {
    display: block;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-xs);
    margin-top: var(--space-xs);
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    margin-top: var(--space-xs);
}

/* ============================================
   Process
   ============================================ */
.process {
    background: var(--primary);
    color: white;
}

.process .section-title,
.process .section-subtitle {
    color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--space-md);
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

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

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-card {
    background: white;
    padding: var(--space-xl);
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.contact-card:active {
    transform: translateY(-2px);
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    color: var(--accent);
}

.contact-icon .icon {
    width: 100%;
    height: 100%;
}

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

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

.contact-card a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--accent-dark);
}

.contact-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

/* ============================================
   Ready When You Are Section - Modern Redesign
   ============================================ */
.ready-section {
    position: relative;
    background: linear-gradient(135deg, #1A1F2E 0%, #2D3447 50%, #1A1F2E 100%);
    border-radius: 24px;
    padding: var(--space-3xl);
    margin-top: var(--space-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.ready-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.ready-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ready-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.4);
    color: var(--accent-light);
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(10px);
}

.ready-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-md);
    letter-spacing: -1px;
    line-height: 1.2;
}

.ready-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ready-features {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
    padding: var(--space-lg) 0;
}

.ready-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.ready-feature:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.ready-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
}

.ready-feature-icon .icon {
    width: 100%;
    height: 100%;
}

.ready-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.btn-ready-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    border: none;
    min-height: 64px;
}

.btn-ready-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
}

.btn-ready-primary:active {
    transform: translateY(-1px);
}

.btn-ready-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    min-height: 64px;
}

.btn-ready-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-icon .icon {
    width: 100%;
    height: 100%;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.btn-main {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
}

.btn-sub {
    font-size: 0.875rem;
    opacity: 0.95;
    font-weight: 500;
}

.btn-text {
    font-size: 1.125rem;
    font-weight: 600;
}

.ready-note {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0;
}

.ready-decoration {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

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

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--primary);
    color: white;
    padding: var(--space-2xl) 0 var(--space-lg);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--space-md);
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-xs);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-xs);
}

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

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

.social-links {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.social-link {
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ============================================
   Mobile Responsive - Enhanced UX
   ============================================ */
@media (max-width: 768px) {
    /* Navigation Improvements */
    .mobile-menu-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        z-index: 1003;
        position: relative;
        background: none;
        border: none;
        cursor: pointer;
        flex-shrink: 0;
    }
    
    /* Keep toggle button visible and properly positioned when menu is open */
    .mobile-menu-toggle.active {
        position: fixed;
        top: var(--space-md);
        right: var(--space-md);
        z-index: 1003;
        background: white;
        box-shadow: var(--shadow-md);
        border-radius: 8px;
        border: 2px solid var(--accent);
    }
    
    .mobile-menu-toggle.active span {
        background: var(--primary);
    }
    
    .nav-wrapper {
        position: relative;
        z-index: 1000;
    }
    
    .navbar {
        z-index: 1000;
    }
    
    .navbar .container {
        position: relative;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
        margin: 0 !important;
        padding: 80px var(--space-lg) var(--space-xl) !important;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        box-shadow: none;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                    visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1001;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        box-sizing: border-box;
        list-style: none;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-menu li {
        width: 100% !important;
        max-width: 100% !important;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .nav-link {
        padding: var(--space-md) var(--space-lg);
        display: flex;
        align-items: center;
        border-bottom: 1px solid var(--border);
        font-size: 1.125rem;
        min-height: 56px;
        transition: var(--transition);
        width: 100% !important;
        max-width: 100% !important;
        color: var(--text-primary);
        text-decoration: none;
        box-sizing: border-box;
    }
    
    .nav-link:active,
    .nav-link:hover {
        background: var(--bg-secondary);
        color: var(--primary);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .cta-phone {
        margin: var(--space-md) var(--space-lg) 0;
        border-radius: 12px;
        text-align: center;
        justify-content: center;
        display: flex;
        min-height: 56px;
        align-items: center;
    }
    
    
    /* Hero Section Mobile */
    .hero {
        min-height: 100vh;
        max-height: 100vh;
        height: 100vh;
        padding-top: 70px;
        padding-bottom: var(--space-sm);
        overflow: visible;
        display: flex;
        align-items: center;
    }
    
    .hero::after {
        width: 100%;
        opacity: 0.05;
        mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
    }
    
    .hero-content {
        padding: var(--space-xs) 0;
        width: 100%;
        padding-top: 3.5rem;
    }
    
    .hero-content .container {
        gap: var(--space-xs);
        padding: 0 var(--space-md);
    }
    
    .hero-trust {
        top: 0;
        margin-top: 70px;
        padding: 0.625rem 0;
    }
    
    .trust-text {
        font-size: 0.75rem;
        letter-spacing: 0.8px;
    }
    
    .hero-trust::before {
        display: none;
    }
    
    .hero-content {
        padding-top: 4rem;
    }
    
    .hero-badge {
        font-size: 0.6875rem;
        padding: 0.4375rem 0.875rem;
        margin-bottom: var(--space-sm);
        display: inline-flex;
        letter-spacing: 1px;
    }
    
    .hero-title {
        font-size: clamp(1.875rem, 8vw, 2.5rem);
        line-height: 1.1;
        margin-bottom: var(--space-xs);
        letter-spacing: -1px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-title::after {
        width: 40px;
        height: 2px;
        bottom: -4px;
    }
    
    .title-line {
        display: block;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 3.5vw, 1.25rem);
        margin-bottom: var(--space-xs);
        line-height: 1.25;
    }
    
    .hero-description {
        font-size: clamp(0.875rem, 2.5vw, 1rem);
        margin-bottom: var(--space-sm);
        line-height: 1.5;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .hero-benefits {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: var(--space-sm);
        width: 100%;
        max-width: 100%;
    }
    
    .benefit-item {
        width: 100%;
        justify-content: flex-start;
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
    }
    
    .benefit-icon {
        width: 16px;
        height: 16px;
    }
    
    .hero-cta-container {
        flex-direction: column;
        gap: var(--space-sm);
        width: 100%;
        margin-bottom: var(--space-sm);
        max-width: 100%;
        align-items: stretch;
    }
    
    .cta-primary-wrapper {
        width: 100%;
        min-width: 100%;
        gap: 0.375rem;
        display: flex;
        flex-direction: column;
    }
    
    .cta-secondary-wrapper {
        width: 100%;
        display: flex;
        align-items: center;
    }
    
    .btn-hero-cta {
        width: 100%;
        padding: 0.75rem var(--space-md);
        min-height: 44px;
        height: 44px;
        font-size: 0.875rem;
        justify-content: center;
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
    }
    
    .cta-text {
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: nowrap;
        line-height: 1;
        display: inline-flex;
    }
    
    .btn-primary .cta-text {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    
    .btn-secondary .cta-text {
        font-size: 0.875rem;
        justify-content: center;
    }
    
    .cta-main {
        font-size: 0.875rem;
        line-height: 1;
        display: inline-block;
    }
    
    .cta-sub {
        font-size: 0.8125rem;
        line-height: 1;
        display: inline-block;
    }
    
    .cta-icon {
        width: 1rem;
        height: 1rem;
        line-height: 0;
        flex-shrink: 0;
    }
    
    .cta-note {
        text-align: center;
        margin-top: 0.125rem;
        font-size: 0.6875rem;
    }
    
    
    .scroll-indicator {
        bottom: 0.5rem;
        font-size: 0.6875rem;
    }
    
    .scroll-indicator {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: var(--space-xl);
        margin-bottom: 0;
        padding-bottom: var(--space-md);
    }
    
    /* Section Improvements */
    section {
        padding: var(--space-2xl) 0;
    }
    
    .section-header {
        margin-bottom: var(--space-xl);
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: var(--space-sm);
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 var(--space-md);
    }
    
    /* Services Mobile - Swipeable Cards */
    .services-container {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        padding-bottom: var(--space-md);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        display: flex;
        flex-direction: row;
    }
    
    .services-container::-webkit-scrollbar {
        display: none;
    }
    
    .service-card {
        min-width: 85%;
        max-width: 85%;
        scroll-snap-align: start;
        flex-shrink: 0;
        margin-right: var(--space-md);
        padding: var(--space-lg);
    }
    
    .service-icon {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: var(--space-md);
    }
    
    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: var(--space-sm);
    }
    
    .service-card p {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    /* About Section Mobile */
    .about-content {
        width: 100%;
        max-width: 100%;
    }
    
    .about-header {
        margin-bottom: var(--space-xl);
        text-align: center;
    }
    
    .about-main {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        width: 100%;
    }
    
    .about-text {
        width: 100%;
    }
    
    .about-features {
        width: 100%;
    }
    
    .about-intro-card {
        padding: var(--space-lg);
        border-radius: 12px;
    }
    
    .about-intro-card::before {
        left: var(--space-md);
        font-size: 3rem;
        top: -5px;
    }
    
    .about-intro {
        font-size: 1.125rem;
    }
    
    .about-description {
        padding: var(--space-lg);
        border-radius: 12px;
    }
    
    .about-description p {
        font-size: 1rem;
        margin-bottom: var(--space-md);
    }
    
    .about-features {
        gap: var(--space-md);
    }
    
    .feature-item {
        padding: var(--space-lg);
        border-radius: 12px;
    }
    
    .feature-icon {
        width: 52px;
        height: 52px;
        margin-bottom: var(--space-md);
        border-radius: 12px;
    }
    
    .feature-icon .icon {
        width: 24px;
        height: 24px;
    }
    
    .feature-item strong {
        font-size: 1.25rem;
    }
    
    .feature-item p {
        font-size: 0.9375rem;
    }
    
    /* Process Mobile */
    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .step {
        padding: var(--space-md);
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .step h3 {
        font-size: 1.125rem;
    }
    
    .step p {
        font-size: 0.9375rem;
    }
    
    /* Contact Mobile */
    .contact-info {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        margin-bottom: var(--space-xl);
    }
    
    .contact-card {
        padding: var(--space-lg);
    }
    
    .contact-icon {
        width: 2rem;
        height: 2rem;
        margin-bottom: var(--space-md);
    }
    
    .contact-card h3 {
        font-size: 1.125rem;
    }
    
    .contact-card p {
        font-size: 0.9375rem;
    }
    
    /* Ready Section Mobile */
    .ready-section {
        padding: var(--space-2xl) var(--space-lg);
        border-radius: 20px;
        margin-top: var(--space-xl);
    }
    
    .ready-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1.25rem;
        margin-bottom: var(--space-md);
    }
    
    .ready-title {
        font-size: 2rem;
        margin-bottom: var(--space-md);
        line-height: 1.3;
    }
    
    .ready-description {
        font-size: 1.0625rem;
        margin-bottom: var(--space-lg);
        line-height: 1.6;
    }
    
    .ready-features {
        flex-direction: column;
        gap: var(--space-sm);
        margin-bottom: var(--space-xl);
        padding: var(--space-md) 0;
    }
    
    .ready-feature {
        width: 100%;
        justify-content: center;
        padding: var(--space-md) var(--space-lg);
        font-size: 0.875rem;
    }
    
    .ready-cta-group {
        flex-direction: column;
        width: 100%;
        gap: var(--space-md);
    }
    
    .btn-ready-primary,
    .btn-ready-secondary {
        width: 100%;
        justify-content: center;
        padding: 1.125rem var(--space-lg);
        font-size: 1rem;
        min-height: 56px;
    }
    
    .btn-content {
        align-items: center;
    }
    
    .ready-note {
        font-size: 0.875rem;
        text-align: center;
    }
    
    .ready-decoration {
        width: 200px;
        height: 200px;
        top: -30%;
        right: -15%;
    }
    
    /* Container Mobile */
    .container {
        padding: 0 var(--space-md);
        width: 100%;
        max-width: 100%;
    }
    
    .hero .container {
        padding: 0 var(--space-md);
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 70px;
        padding-bottom: var(--space-2xl);
        min-height: auto;
    }
    
    .hero-content {
        padding: var(--space-md) 0;
    }
    
    .hero .container {
        padding: 0 var(--space-sm);
    }
    
    .hero-title {
        font-size: 1.875rem;
        margin-bottom: var(--space-md);
        letter-spacing: -1px;
    }
    
    .hero-title::after {
        width: 50px;
        height: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: var(--space-md);
    }
    
    .hero-description {
        font-size: 0.9375rem;
        margin-bottom: var(--space-lg);
        line-height: 1.65;
    }
    
    .hero-badge {
        font-size: 0.6875rem;
        padding: 0.5rem 0.875rem;
        letter-spacing: 1px;
    }
    
    .hero-benefits {
        gap: var(--space-xs);
    }
    
    .benefit-item {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .btn-hero-cta {
        padding: 1rem var(--space-md);
        font-size: 0.9375rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        min-width: 90%;
        max-width: 90%;
    }
    
    .btn {
        min-height: 48px;
        font-size: 0.9375rem;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero-benefits {
        margin-bottom: var(--space-md);
    }
    
    .hero-cta-container {
        margin-bottom: var(--space-md);
    }
    
    /* Ready Section Small Mobile */
    .ready-section {
        padding: var(--space-xl) var(--space-md);
        border-radius: 16px;
    }
    
    .ready-title {
        font-size: 1.75rem;
    }
    
    .ready-description {
        font-size: 1rem;
    }
    
    .ready-feature {
        font-size: 0.8125rem;
        padding: var(--space-sm) var(--space-md);
    }
    
    .btn-ready-primary,
    .btn-ready-secondary {
        font-size: 0.9375rem;
        padding: 1rem var(--space-md);
    }
    
    .btn-main {
        font-size: 1rem;
    }
    
    .btn-sub {
        font-size: 0.8125rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-link,
    .service-card,
    .contact-card {
        -webkit-tap-highlight-color: rgba(255, 107, 53, 0.1);
    }
    
    .service-card:active,
    .contact-card:active {
        transform: scale(0.98);
    }
    
    .btn:active {
        transform: scale(0.97);
    }
}

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

/* Enhanced Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Skip to Main Content Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent);
    color: white;
    padding: var(--space-sm) var(--space-md);
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 8px 0;
    font-weight: 600;
}

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

/* Loading States */
.btn:disabled,
.btn[aria-busy="true"] {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Improved Button States */
.btn:active {
    transform: scale(0.98);
}

.btn-primary:active {
    background: var(--accent-dark);
}

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

/* Better Text Selection */
::selection {
    background: var(--accent);
    color: white;
}

::-moz-selection {
    background: var(--accent);
    color: white;
}

/* Improved Scrollbar (Webkit) */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--text-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Improved Card Interactions */
.service-card,
.contact-card {
    will-change: transform;
}

/* Better Touch Feedback */
@media (hover: none) and (pointer: coarse) {
    .btn:active {
        background: var(--accent-dark);
    }
    
    .nav-link:active {
        background: var(--bg-secondary);
    }
}

