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

:root {
    --primary-blue: #1a1a2e;
    --accent-red: #e94560;
    --accent-orange: #ff6b6b;
    --accent-purple: #6c5ce7;
    --accent-cyan: #00d4ff;
    --light-gray: #f8f9fa;
    --medium-gray: #95a5a6;
    --dark-gray: #0f3460;
    --text-dark: #1a1a2e;
    --text-light: #495057;
    --text-light-contrast: #343a40;
    --white: #ffffff;
    --shadow-soft: rgba(0, 0, 0, 0.08);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-strong: rgba(0, 0, 0, 0.25);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    scroll-behavior: smooth;
}

/* Smooth section transitions */
section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
}

section.visible::before {
    opacity: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -5px 20px var(--shadow-medium);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-content a {
    color: var(--accent-orange);
    text-decoration: underline;
}

.cookie-btn {
    padding: 0.9rem 2.5rem;
    background: var(--accent-red);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.cookie-btn:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

/* Fullscreen Menu (Mobile Only) */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-gray) 50%, var(--accent-red) 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 769px) {
    .fullscreen-menu {
        display: none;
    }
}

.fullscreen-menu-content {
    text-align: center;
    position: relative;
}

.menu-close {
    position: absolute;
    top: -80px;
    right: 0;
    background: none;
    border: none;
    font-size: 4rem;
    color: var(--text-dark);
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.menu-close:hover {
    transform: rotate(90deg);
}

.fullscreen-nav-list {
    list-style: none;
}

.fullscreen-nav-list li {
    margin: 2rem 0;
}

.menu-link {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
    position: relative;
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--white);
    transition: width 0.4s ease;
}

.menu-link:hover {
    transform: translateX(20px);
    color: var(--white);
}

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

/* Header - Glassmorphism */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
    letter-spacing: -0.5px;
}

.logo:hover {
    color: var(--accent-red);
    transform: scale(1.05);
}

/* Desktop Navigation */
.desktop-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-list a:hover {
    color: var(--accent-red);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

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

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

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

/* Hero Section - Modern Design with Parallax */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 120px clamp(20px, 4vw, 60px) 60px;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(108, 92, 231, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(233, 69, 96, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 212, 255, 0.2) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-tiles-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, minmax(200px, auto));
    gap: 1.5rem;
    height: calc(100vh - 180px);
    min-height: 600px;
}

.tile-main {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.tile-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-red) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.tile-main:hover::before {
    opacity: 0.05;
}

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

.hero-title-large {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-subtitle-large {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta-wrapper {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-orange) 100%);
    color: var(--white);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--shadow-medium);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-hero-secondary:hover {
    background: var(--text-dark);
    color: var(--white);
    transform: translateY(-3px);
}

.tile-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.tile-image:hover img {
    transform: scale(1.1);
}

.tile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    padding: 2rem;
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.tile-image:hover .tile-overlay {
    transform: translateY(0);
}

.tile-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.tile-1 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.tile-2 {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
}

.tile-stats {
    background: var(--white);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px var(--shadow-medium);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.tile-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-red) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tile-stats:hover::before {
    opacity: 0.1;
}

.tile-stats:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.tile-stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 1.5rem;
}

.stat-value {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.tile-3 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.tile-4 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

.tile-feature {
    background: var(--white);
    border-radius: 25px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 15px 40px var(--shadow-medium);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.tile-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--primary-blue) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tile-feature:hover::before {
    opacity: 0.08;
}

.tile-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.tile-icon {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.tile-feature h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.tile-feature p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

.tile-5 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

.tile-6 {
    grid-column: 3 / 5;
    grid-row: 3 / 4;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--text-dark);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.5;
        transform: scaleY(0.5);
    }
}

/* Services Section - Grid Layout with Modern Design */
.services-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: visible;
    z-index: 1;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 1s ease;
}

.services-section.visible::before {
    transform: scaleX(1);
}

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

.section-title-huge {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #414159;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-subtitle-large {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card-new {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    transform-style: preserve-3d;
}

.service-card-new:hover {
    transform: translateY(-10px) rotateY(2deg) rotateX(-2deg);
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.service-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.service-card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-card-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: auto;
}

.service-features-list li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.service-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
    font-size: 1.1rem;
}

/* About Section - Statistics with Modern Design */
.about-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.about-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCircle 20s ease-in-out infinite;
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, -50px) scale(1.1); }
}

.about-intro {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 1.5rem;
}

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

.stat-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px var(--shadow-soft);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.stat-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

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

.about-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.about-text-block h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text-block p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Why Choose Section with Modern Design */
.why-choose-section {
    padding: 8rem 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(233, 69, 96, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(108, 92, 231, 0.2) 0%, transparent 50%);
    animation: backgroundPulse 10s ease infinite;
    pointer-events: none;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 0.2;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.feature-icon {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

/* Process Section with Modern Design */
.process-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.process-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatCircleReverse 25s ease-in-out infinite;
}

@keyframes floatCircleReverse {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(1.1); }
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-red) 0%, var(--accent-orange) 100%);
}

.process-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    padding-left: 120px;
}

.process-number {
    position: absolute;
    left: 0;
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-red);
    box-shadow: 0 10px 30px var(--shadow-medium);
    z-index: 2;
}

.process-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.process-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section - Split Screen */
.contact-section {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 100vh;
}

.contact-info-panel {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-gray) 100%);
    padding: 5rem clamp(2rem, 5vw, 5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.contact-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-detail-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.contact-detail-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.contact-detail-item a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: var(--transition-smooth);
    border-bottom: 2px solid transparent;
}

.contact-detail-item a:hover {
    border-bottom-color: var(--accent-orange);
    color: var(--white);
}

.contact-form-panel {
    background: var(--white);
    padding: 5rem clamp(2rem, 5vw, 5rem);
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 600px;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--medium-gray);
    border-radius: 15px;
    font-family: inherit;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.2);
}

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

.btn-submit {
    width: 100%;
    padding: 1.3rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-orange) 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-orange);
    font-size: 1.5rem;
}

.footer-section p {
    margin-bottom: 0.8rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

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

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

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-tiles-container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(4, minmax(180px, auto));
        gap: 1.2rem;
        height: auto;
        min-height: auto;
    }

    .tile-main {
        grid-column: 1 / 4;
        grid-row: 1 / 2;
        padding: 2.5rem;
    }

    .tile-1 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .tile-2 {
        grid-column: 2 / 4;
        grid-row: 2 / 4;
    }

    .tile-3 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .tile-4 {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }

    .tile-5 {
        grid-column: 2 / 3;
        grid-row: 4 / 5;
    }

    .tile-6 {
        grid-column: 3 / 4;
        grid-row: 4 / 5;
    }

    .service-slide-content {
        grid-template-columns: 1fr;
    }

    .contact-split {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        min-height: auto;
        padding: 4rem 2rem;
    }

    .contact-form-panel {
        padding: 4rem 2rem;
    }
}

/* Mobile Optimizations for New Sections */
@media (max-width: 768px) {
    .parallax-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .parallax-card {
        padding: 2rem 1.5rem;
    }
    
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-circle {
        width: 150px;
        height: 150px;
    }
    
    .stat-value-inside {
        font-size: 2rem;
    }
    
    /* Show mobile menu toggle, hide desktop nav */
    .mobile-menu-toggle {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }

    .hero-section {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-tiles-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
        height: auto;
    }

    .tile-main,
    .tile-1,
    .tile-2,
    .tile-3,
    .tile-4,
    .tile-5,
    .tile-6 {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 250px;
    }

    .tile-main {
        padding: 2rem;
    }

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

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

    .hero-cta-wrapper {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }

    .tile-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    }

    .services-section,
    .about-section,
    .why-choose-section,
    .process-section {
        padding: 4rem 0;
    }

    .section-title-huge {
        font-size: 2.5rem;
    }

    .services-grid-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card-image {
        height: 220px;
    }

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

    .process-item {
        padding-left: 80px;
    }

    .process-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .process-timeline::before {
        left: 35px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 90px 1rem 2rem;
    }

    .hero-tiles-container {
        gap: 0.8rem;
    }

    .tile-main {
        padding: 1.5rem;
        min-height: 200px;
    }

    .hero-title-large {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle-large {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .tile-image,
    .tile-stats,
    .tile-feature {
        min-height: 180px;
    }

    .tile-feature {
        padding: 1.5rem;
    }

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

    .tile-feature h3 {
        font-size: 1.2rem;
    }

    .tile-feature p {
        font-size: 0.9rem;
    }

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

    .stat-label {
        font-size: 1rem;
    }

    .section-title-huge {
        font-size: 2rem;
    }

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

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

    .process-item {
        flex-direction: column;
        padding-left: 0;
        padding-top: 90px;
    }

    .process-number {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .process-timeline::before {
        display: none;
    }
}

/* Policy Pages Styles */
.policy-page {
    padding: 2rem 0;
    min-height: 80vh;
    padding-top: 120px;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px var(--shadow-soft);
}

.policy-content h1 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
}

.policy-content h2 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 700;
}

.policy-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.policy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.policy-content a {
    color: var(--accent-red);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.policy-content a:hover {
    border-bottom-color: var(--accent-red);
}

/* Thanks Page */
.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    padding-top: 120px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-gray) 100%);
}

.thanks-content {
    max-width: 600px;
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.thanks-content h1 {
    color: var(--text-dark);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.thanks-content a {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: var(--transition-smooth);
}

.thanks-content a:hover {
    border-bottom-color: var(--accent-red);
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-orange) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

/* Parallax Showcase Section */
.parallax-showcase-section {
    position: relative;
    min-height: 100vh;
    padding: 8rem 0;
    background: var(--gradient-dark);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(108, 92, 231, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(233, 69, 96, 0.4) 0%, transparent 50%);
    animation: parallaxBg 20s ease infinite;
    pointer-events: none;
}

@keyframes parallaxBg {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-5%, -5%) scale(1.1); }
}

.parallax-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.parallax-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    perspective: 1000px;
}

.parallax-item {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.parallax-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.parallax-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
    opacity: 0;
}

.parallax-card:hover::before {
    animation: shine 0.6s ease;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.parallax-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

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

.parallax-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.parallax-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
}

/* Interactive Stats Section */
.interactive-stats-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.interactive-stats-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(108, 92, 231, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(233, 69, 96, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.stat-showcase-item {
    text-align: center;
    transition: transform 0.4s ease;
}

.stat-showcase-item:hover {
    transform: translateY(-10px);
}

.stat-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
}


.stat-bg {
    fill: none;
    stroke: var(--light-gray);
    stroke-width: 8;
}

.stat-fill {
    fill: none;
    stroke: url(#statGradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 2s ease;
}

.stat-value-inside {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 2;
    pointer-events: none;
    line-height: 1;
}

.stat-showcase-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-showcase-item p {
    font-size: 1rem;
    color: var(--text-light);
}

/* SVG Gradient Definition - Only for gradient definitions, not for stat-progress */
svg:not(.stat-progress) {
    position: absolute;
    width: 0;
    height: 0;
}

.stat-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    z-index: 1;
}

/* Section Transitions */
.section-divider {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(108, 92, 231, 0.1) 50%, transparent 100%);
    animation: dividerWave 3s ease infinite;
}

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

/* Enhanced Service Cards - Shine Effect */
.service-card-new::after {
    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;
    z-index: 1;
    pointer-events: none;
}

.service-card-new:hover::after {
    left: 100%;
}


/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}
