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

:root {
    --primary-color: #EA580C;
    --primary-dark: #C2410C;
    --secondary-color: #1E293B;
    --accent-color: #F97316;
    --text-dark: #0F172A;
    --text-light: #64748B;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    --gradient-primary: linear-gradient(135deg, #EA580C 0%, #C2410C 100%);
    --gradient-dark: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Dark Theme Variables */
[data-theme="dark"] {
    --text-dark: #F1F5F9;
    --text-light: #94A3B8;
    --bg-light: #1E293B;
    --bg-white: #0F172A;
    --border-color: #334155;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Default to dark theme */
body {
    background-color: #0F172A;
    color: #F1F5F9;
}

body[data-theme="light"] {
    background-color: #FFFFFF;
    color: #0F172A;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.94);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: none;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

/* Sleek gradient blur bottom edge */
.navbar::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.2) 40%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}

body[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.92);
}

body[data-theme="light"] .navbar::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.2) 40%, transparent 100%);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
}

.navbar.scrolled::after {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.3) 40%, transparent 100%);
}

body[data-theme="light"] .navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

body[data-theme="light"] .navbar.scrolled::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.3) 40%, transparent 100%);
}

.navbar .container {
    padding: 0;
    max-width: 100%;
}

.nav-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 2.5rem;
    position: relative;
    gap: 2.5rem;
    height: 100px;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 1;
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    height: 100%;
}

.logo:hover {
    opacity: 0.9;
    transform: scale(1.01);
}

.logo-img {
    height: 90px;
    width: auto;
    max-width: 800px;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
    margin: 0;
    filter: brightness(1.15) contrast(1.25) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.35rem;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-self: center;
}

body[data-theme="light"] .nav-menu {
    background: transparent;
}

.nav-link {
    text-decoration: none;
    color: rgba(241, 245, 249, 0.8);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.015em;
    padding: 0.6rem 1.5rem;
    white-space: nowrap;
    background: transparent;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    border-radius: 8px;
}

body[data-theme="light"] .nav-link {
    color: rgba(15, 23, 42, 0.7);
}

.nav-link span {
    position: relative;
    z-index: 2;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(234, 88, 12, 0.08);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    z-index: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px 2px 0 0;
    z-index: 2;
}

.nav-link:hover {
    color: #FFFFFF;
}

.nav-link:hover::before {
    opacity: 1;
}

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

body[data-theme="light"] .nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: #FFFFFF;
    font-weight: 600;
}

.nav-link.active::before {
    opacity: 1;
    background: rgba(234, 88, 12, 0.12);
}

.nav-link.active::after {
    width: 70%;
    background: var(--primary-color);
    box-shadow: 0 0 12px rgba(234, 88, 12, 0.4);
}

body[data-theme="light"] .nav-link.active {
    color: var(--primary-color);
}

body[data-theme="light"] .nav-link.active::before {
    background: rgba(234, 88, 12, 0.1);
}

@media (min-width: 768px) {
    .nav-wrapper {
        padding: 0 3rem;
        height: 110px;
        gap: 3rem;
    }
    
    .logo-img {
        height: 100px;
        max-width: 800px;
        filter: brightness(1.2) contrast(1.3) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4));
    }
    
    .nav-link {
        font-size: 0.925rem;
        padding: 0.55rem 1.35rem;
    }
}

@media (min-width: 1200px) {
    .nav-wrapper {
        padding: 0 4rem;
        height: 120px;
        gap: 3.5rem;
    }
    
    .logo-img {
        height: 110px;
        max-width: 800px;
        filter: brightness(1.25) contrast(1.35) drop-shadow(0 3px 12px rgba(0, 0, 0, 0.5));
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 0.6rem 1.5rem;
        gap: 0.5rem;
    }
    
    .nav-menu {
        gap: 0.5rem;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #F1F5F9;
    transition: all 0.3s ease;
}

body[data-theme="light"] .hamburger span {
    background: var(--text-dark);
}

/* Theme Toggle Button */
.theme-toggle {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: rgba(241, 245, 249, 0.7);
    flex-shrink: 0;
    justify-self: end;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

body[data-theme="light"] .theme-toggle {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(15, 23, 42, 0.12);
    color: var(--text-dark);
}

.theme-toggle:hover {
    background: rgba(234, 88, 12, 0.15);
    border-color: rgba(234, 88, 12, 0.5);
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(234, 88, 12, 0.3), 0 0 30px rgba(234, 88, 12, 0.15);
    transform: scale(1.05) translateY(-1px);
}

.theme-icon {
    width: 18px;
    height: 18px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sun-icon {
    display: block;
}

.moon-icon {
    display: none;
}

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0F172A;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(234, 88, 12, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(234, 88, 12, 0.15) 0%, transparent 60%),
        linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    padding-top: 120px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(234, 88, 12, 0.08) 0%, transparent 70%),
        linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.6) 100%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.04) 0%, transparent 70%);
    animation: pulse 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.7;
    }
}

body[data-theme="light"] .hero {
    background: var(--gradient-dark);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(234, 88, 12, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(234, 88, 12, 0.1) 0%, transparent 50%);
}

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

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

.hero-text-wrapper {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.5), 0 0 0 0 rgba(234, 88, 12, 0.4);
    position: relative;
    overflow: hidden;
    font-weight: 700;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.6), 0 0 0 4px rgba(234, 88, 12, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.12);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 0;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stat-item {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    min-width: 140px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(234, 88, 12, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.15);
}

.stat-number {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
    line-height: 1;
    text-shadow: 0 0 30px rgba(234, 88, 12, 0.3);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
    overflow-x: hidden;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform, filter;
}

/* Sections below viewport - blurred and zoomed out */
section:not(.in-view):not(#home) {
    opacity: 0.4;
    transform: translateY(40px) scale(0.96);
    filter: blur(8px);
}

/* Sections entering viewport - smooth zoom and fade in */
section.scroll-in {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    filter: blur(0) !important;
}

/* Hero section always visible */
#home {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

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

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding: 0.5rem 1.25rem;
    background: rgba(234, 88, 12, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(234, 88, 12, 0.2);
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

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

/* Services Section */
.services {
    background: #1E293B;
    transition: background-color 0.3s ease;
    padding: 6rem 0;
}

body[data-theme="light"] .services {
    background: var(--bg-light);
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Modern Services Grid */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 100%;
}

.service-card-modern {
    background: #0F172A;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(234, 88, 12, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

body[data-theme="light"] .service-card-modern {
    background: white;
    border-color: rgba(234, 88, 12, 0.1);
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.15);
    border-color: rgba(234, 88, 12, 0.3);
}

.service-icon-modern {
    width: 64px;
    height: 64px;
    background: rgba(234, 88, 12, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(234, 88, 12, 0.2);
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-modern {
    background: rgba(234, 88, 12, 0.15);
    border-color: rgba(234, 88, 12, 0.3);
    transform: scale(1.05);
}

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

.service-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

.service-features-modern {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features-modern li {
    color: var(--text-light);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

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

.service-feature {
    background: #0F172A;
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

body[data-theme="light"] .service-feature {
    background: white;
}

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

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

.service-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-color: rgba(234, 88, 12, 0.3);
}

.service-feature.large {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: #0F172A;
    border: 1px solid rgba(234, 88, 12, 0.15);
    border-radius: 16px;
    max-width: 100%;
    transition: all 0.3s ease;
}

.service-feature.large:hover {
    border-color: rgba(234, 88, 12, 0.3);
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.1);
    transform: translateY(-2px);
}

body[data-theme="light"] .service-feature.large {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
}

.service-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-number {
    position: absolute;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(234, 88, 12, 0.06);
    line-height: 1;
    z-index: 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.05em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-icon-large {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.3);
    flex-shrink: 0;
}

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

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

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(234, 88, 12, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border: 1px solid rgba(234, 88, 12, 0.2);
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-feature:hover .service-icon-wrapper {
    background: rgba(234, 88, 12, 0.15);
    border-color: rgba(234, 88, 12, 0.3);
    transform: scale(1.05);
}

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

.service-title {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.service-feature.large .service-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 1.25rem;
}

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

.service-feature.large .service-description {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features-list li {
    color: var(--text-light);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    padding-left: 1.75rem;
}

.service-features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background: rgba(234, 88, 12, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-features-list li::after {
    content: '✓';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.75rem;
}

.services-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 100%;
}

.service-feature {
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

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

.ceo-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.ceo-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.ceo-title {
    font-size: 0.9375rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.about-image {
    position: relative;
}

.about-fleet-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.about-fleet-image:hover {
    transform: scale(1.02);
}

.image-placeholder {
    background: #1E293B;
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    border: 2px dashed var(--border-color);
    color: var(--text-light);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body[data-theme="light"] .image-placeholder {
    background: var(--bg-light);
}

.image-placeholder svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.placeholder-note {
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.6;
    margin-top: 0.5rem;
}

.image-placeholder svg {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    color: var(--text-light);
}

/* Pricing Section */
.pricing {
    background: #1E293B;
    transition: background-color 0.3s ease;
}

body[data-theme="light"] .pricing {
    background: var(--bg-light);
}

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

.pricing-card {
    background: #0F172A;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

body[data-theme="light"] .pricing-card {
    background: white;
}

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

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

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

.pricing-title {
    font-size: clamp(1.5rem, 2vw, 1.75rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.period {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 500;
}

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

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-dark);
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    padding: 1.5rem;
    background: #0F172A;
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    border: 1px solid var(--border-color);
}

body[data-theme="light"] .pricing-note {
    background: white;
}

/* Testimonials Section */
.testimonials {
    background: #1E293B;
    padding: 5rem 0;
    transition: background-color 0.3s ease;
}

body[data-theme="light"] .testimonials {
    background: var(--bg-light);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 2rem;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
    will-change: transform;
}

.testimonial-card {
    min-width: 100%;
    width: 100%;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
}

.testimonial-card-inner {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(234, 88, 12, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body[data-theme="light"] .testimonial-card-inner {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border-color: rgba(234, 88, 12, 0.15);
}

.testimonial-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover .testimonial-card-inner {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(234, 88, 12, 0.2);
    border-color: rgba(234, 88, 12, 0.4);
}

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

body[data-theme="light"] .testimonial-card {
    background: white;
}

.testimonial-quote-large {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-quote-large svg {
    width: 64px;
    height: 64px;
    opacity: 0.2;
    filter: drop-shadow(0 4px 8px rgba(234, 88, 12, 0.3));
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

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

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

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: rgba(234, 88, 12, 0.1);
    border: 1px solid rgba(234, 88, 12, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.carousel-btn:hover {
    background: rgba(234, 88, 12, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(234, 88, 12, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 5px;
}

/* Simplified Pricing Section */
.pricing-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pricing-item {
    text-align: center;
    padding: 2rem;
    background: #0F172A;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    min-width: 280px;
}

body[data-theme="light"] .pricing-item {
    background: white;
}

.pricing-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.pricing-value .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
}

.pricing-value .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.pricing-value .period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-description {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-divider {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-note-simple {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Page Transitions */
/* Duplicate removed - using blur/zoom scroll animations above */

/* Removed transition prevention - using smooth scroll only */

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

/* Removed all slide transition styles - using smooth scroll only */

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

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

.contact-details h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-details p,
.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    line-height: 1.6;
}

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

.contact-form-wrapper {
    background: #1E293B;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

body[data-theme="light"] .contact-form-wrapper {
    background: var(--bg-light);
    border: none;
}

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

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

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #0F172A;
    color: #F1F5F9;
}

body[data-theme="light"] .form-group input,
body[data-theme="light"] .form-group select,
body[data-theme="light"] .form-group textarea {
    background: white;
    color: var(--text-dark);
}

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

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

.contact-form .btn {
    margin-top: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
}

/* Footer */
.footer {
    background: #0F172A;
    color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    max-width: 450px;
    object-fit: contain;
    filter: brightness(1.05) contrast(1.1);
    opacity: 0.95;
    transition: opacity 0.3s ease;
    display: block;
}

.footer-logo:hover .footer-logo-img {
    opacity: 1;
    filter: brightness(1.1) contrast(1.15);
}

@media (min-width: 768px) {
    .footer-logo-img {
        height: 100px;
        max-width: 500px;
    }
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    font-size: 0.9375rem;
    margin-bottom: 1.75rem;
    max-width: 320px;
    margin-top: 0.5rem;
}

.footer-ceo-info {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-ceo-name {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.footer-ceo-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8125rem;
    font-weight: 400;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.02em;
}

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

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

.footer-links a,
.footer-links li {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.footer-links a {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

body[data-theme="light"] .footer-links a,
body[data-theme="light"] .footer-links li {
    color: rgba(15, 23, 42, 0.75);
}

body[data-theme="light"] .footer-links a:hover {
    color: var(--primary-color);
}

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

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(234, 88, 12, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 999;
    overflow: hidden;
}

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

.scroll-to-top:hover::before {
    width: 100%;
    height: 100%;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 32px rgba(234, 88, 12, 0.6);
    background: linear-gradient(135deg, #C2410C 0%, #EA580C 100%);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

.scroll-to-top:active {
    transform: translateY(-4px) scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0 1.25rem;
        height: 85px;
    }
    
    .logo-img {
        height: 70px;
        max-width: 380px;
        filter: brightness(1.15) contrast(1.25) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 56px;
        flex-direction: column;
        background: #0F172A;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
        margin: 0;
        max-width: 100%;
    }

    body[data-theme="light"] .nav-menu {
        background: white;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .theme-toggle {
        width: 40px;
        height: 40px;
    }

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

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

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-stats {
        gap: 2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .service-feature.large {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem;
    }

    .service-visual {
        min-height: 200px;
    }

    .service-number {
        font-size: 8rem;
    }

    .service-icon-large {
        width: 100px;
        height: 100px;
    }

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

    .services-grid-compact {
        grid-template-columns: 1fr;
    }

    .services {
        padding: 4rem 0;
    }

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

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

    section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .service-card,
    .pricing-card,
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        gap: 0.875rem;
    }
    
    .form-group {
        margin-bottom: 0.875rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        gap: 0.875rem;
    }
    
    .form-group {
        margin-bottom: 0.875rem;
    }
}
