/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0F172A;
    --bg-darker: #0a0f1e;
    --accent-blue: #38BDF8;
    --accent-orange: #F97316;
    --text-white: #FFFFFF;
    --text-muted: #94A3B8;
    --card-bg: #1e293b;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(56, 189, 248, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--accent-blue);
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 80px;
    position: relative;
    overflow: hidden;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(56, 189, 248, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(56, 189, 248, 0.15) 0%, transparent 50%);
    animation: bgShift 20s ease infinite;
    z-index: 0;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-blue), transparent);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-orange), transparent);
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--accent-blue), transparent);
    top: 50%;
    left: 10%;
    animation-delay: 10s;
}

.shape-4 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-orange), transparent);
    top: 20%;
    right: 15%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(40px, 20px) scale(1.05); }
}

@keyframes bgShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(56, 189, 248, 0); }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-badge span {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.title-line {
    display: block;
    animation: slideUp 0.8s ease backwards;
}

.company-name {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
    color: var(--text-white);
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
    font-size: 4.5rem;
    margin: -0.2rem 0;
}

.title-line:nth-child(4) {
    animation-delay: 0.6s;
    color: var(--text-white);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-orange));
    border-radius: 4px;
    opacity: 0.5;
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2.5rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(56, 189, 248, 0.5), transparent);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.75rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::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, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.btn:hover svg {
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), #0ea5e9);
    color: var(--text-white);
    box-shadow: 0 10px 40px rgba(56, 189, 248, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(56, 189, 248, 0.6);
}

.btn-secondary {
    background: rgba(56, 189, 248, 0.1);
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--accent-blue);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}


/* ===== SECTIONS ===== */
section {
    padding: 100px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(30, 41, 59, 0.4));
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(56, 189, 248, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(249, 115, 22, 0.1));
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent-blue);
    box-shadow: 0 25px 60px rgba(56, 189, 248, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
    position: relative;
    z-index: 1;
    transition: all 0.5s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotateY(360deg);
    color: var(--accent-orange);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent 70%);
    border-radius: 50%;
    top: -250px;
    left: -100px;
    filter: blur(80px);
    animation: float 15s infinite ease-in-out;
}

.why-choose::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2), transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    right: -100px;
    filter: blur(80px);
    animation: float 12s infinite ease-in-out reverse;
}

.why-choose .container {
    position: relative;
    z-index: 1;
}

.why-grid {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(30, 41, 59, 0.3));
    border-radius: 20px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.15), transparent);
    transition: left 0.8s;
}

.why-item:hover::before {
    left: 100%;
}

.why-item:hover {
    transform: translateX(15px) scale(1.02);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.3);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(30, 41, 59, 0.5));
}

.why-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.4);
    transition: all 0.5s;
}

.why-item:hover .why-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.6);
}

.why-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.why-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== PROCESS SECTION ===== */
.process {
    background: var(--bg-darker);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(56, 189, 248, 0.05) 0%, transparent 50%),
        linear-gradient(225deg, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.process .container {
    position: relative;
    z-index: 1;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 40px;
    bottom: 40px;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-blue), var(--accent-orange));
    border-radius: 2px;
}

.process-step {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-white);
    box-shadow: 0 10px 40px rgba(56, 189, 248, 0.5);
    position: relative;
    z-index: 1;
    transition: all 0.5s;
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 50px rgba(56, 189, 248, 0.7);
}

.step-content {
    flex: 1;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(30, 41, 59, 0.3));
    border-radius: 16px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    transition: all 0.5s;
    backdrop-filter: blur(10px);
}

.process-step:hover .step-content {
    transform: translateX(10px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(30, 41, 59, 0.5));
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    animation: float 10s infinite ease-in-out;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -75px;
    animation: float 8s infinite ease-in-out reverse;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

.cta-content .btn-primary {
    background: var(--bg-dark);
    color: var(--accent-blue);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.cta-content .btn-primary:hover {
    background: var(--bg-darker);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(30, 41, 59, 0.3));
    border-radius: 16px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    border-color: var(--accent-blue);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(30, 41, 59, 0.5));
}

.contact-icon {
    font-size: 2.25rem;
    transition: transform 0.4s;
}

.contact-item:hover .contact-icon {
    transform: scale(1.2) rotate(10deg);
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--accent-blue);
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(30, 41, 59, 0.3));
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(56, 189, 248, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(56, 189, 248, 0.2);
    border-radius: 10px;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
    background: rgba(15, 23, 42, 0.8);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-darker);
    padding: 3rem 20px 2rem;
    border-top: 1px solid rgba(56, 189, 248, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(56, 189, 248, 0.1);
    color: var(--text-muted);
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-line:nth-child(3) {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: -1px;
    }
    
    .title-line:nth-child(3) {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-blue), var(--accent-orange));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0ea5e9, #ea580c);
}

/* ===== SELECTION ===== */
::selection {
    background: var(--accent-blue);
    color: var(--text-white);
}

::-moz-selection {
    background: var(--accent-blue);
    color: var(--text-white);
}

/* ===== PAGE STRUCTURE STYLES ===== */
.page-header {
    padding: 140px 20px 80px;
    background: var(--bg-darker);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--accent-orange);
}

/* ===== SERVICE CONTENT STYLES ===== */
.service-content {
    padding: 80px 20px;
    background: var(--bg-dark);
}

.content-section {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.content-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.content-section h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    color: var(--accent-blue);
}

.content-section h4 {
    font-size: 1.35rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-white);
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.content-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-muted);
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* ===== SERVICES OVERVIEW STYLES ===== */
.services-overview {
    padding: 80px 20px;
    background: var(--bg-dark);
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
}

.service-detailed-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(30, 41, 59, 0.3));
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.service-detailed-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.3);
}

.service-detailed-card .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
}

.service-detailed-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.service-detailed-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-detailed-card ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detailed-card li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--accent-orange);
}

/* ===== FEATURE GRIDS ===== */
.features-grid,
.design-principles,
.application-types,
.service-offerings,
.maintenance-reasons,
.maintenance-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item,
.principle-item,
.app-type,
.offering-item,
.reason-item,
.service-category {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4), rgba(30, 41, 59, 0.2));
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(56, 189, 248, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover,
.principle-item:hover,
.app-type:hover,
.offering-item:hover,
.reason-item:hover,
.service-category:hover {
    border-color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
}

/* ===== PROCESS STYLES ===== */
.development-process,
.design-process,
.maintenance-plans {
    margin: 2rem 0;
}

.process-phase,
.plan-item {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4), rgba(30, 41, 59, 0.2));
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(56, 189, 248, 0.1);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.process-phase:hover,
.plan-item:hover {
    border-color: var(--accent-blue);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-page {
    padding: 80px 20px;
    background: var(--bg-dark);
}

.contact-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.contact-intro h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.contact-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.business-hours {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4), rgba(30, 41, 59, 0.2));
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(56, 189, 248, 0.1);
    margin-top: 2rem;
}

.business-hours h4 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.business-hours p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.business-hours em {
    color: var(--accent-orange);
    font-style: normal;
    font-weight: 500;
}

/* ===== FORM ENHANCEMENTS ===== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(56, 189, 248, 0.2);
    border-radius: 10px;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group select:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
    background: rgba(15, 23, 42, 0.8);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--accent-blue);
}

.form-note {
    margin-top: 1rem;
    text-align: center;
}

.form-note small {
    color: var(--text-muted);
    line-height: 1.5;
}

.form-note a {
    color: var(--accent-blue);
    text-decoration: none;
}

.form-note a:hover {
    color: var(--accent-orange);
}

/* ===== FAQ STYLES ===== */
.contact-faq {
    max-width: 900px;
    margin: 4rem auto 0;
}

.contact-faq h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-white);
    text-align: center;
}

.faq-item {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4), rgba(30, 41, 59, 0.2));
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(56, 189, 248, 0.1);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
}

.faq-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ===== LEGAL PAGES STYLES ===== */
.legal-content {
    padding: 80px 20px;
    background: var(--bg-dark);
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-muted);
    line-height: 1.8;
}

.legal-document h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    color: var(--accent-blue);
}

.legal-document h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--text-white);
}

.legal-document h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-white);
}

.legal-document p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.legal-document ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
}

.contact-details {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4), rgba(30, 41, 59, 0.2));
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    margin: 2rem 0;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

/* ===== NAVIGATION ENHANCEMENTS ===== */
.nav-links a.active {
    color: var(--accent-blue);
}

.nav-links a.active::after {
    width: 100%;
}

.logo a {
    color: inherit;
    text-decoration: none;
}

/* ===== FOOTER ENHANCEMENTS ===== */
.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.25rem;
    }
    
    .services-detailed-grid,
    .features-grid,
    .design-principles,
    .application-types,
    .service-offerings,
    .maintenance-reasons,
    .maintenance-services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 120px 20px 60px;
    }
    
    .page-header h1 {
        font-size: 1.85rem;
    }
    
    .content-section h2 {
        font-size: 1.85rem;
    }
    
    .content-section h3 {
        font-size: 1.5rem;
    }
    
    .feature-item,
    .principle-item,
    .app-type,
    .offering-item,
    .reason-item,
    .service-category,
    .process-phase,
    .plan-item {
        padding: 1.5rem;
    }
    
    .service-detailed-card {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .legal-document {
        font-size: 1rem;
    }
    
    .legal-document h2 {
        font-size: 1.75rem;
    }
    
    .legal-document h3 {
        font-size: 1.35rem;
    }
}