/* ==========================================================================
   APPLORSAN.com - Premium Landing Page Stylesheet
   Design System: IT Modern, Dark Mode, Elegant Casual-Formal
   ========================================================================== */

/* --- CSS Variables & Custom Properties --- */
:root {
    /* Color Palette */
    --bg-dark: #070a13;
    --bg-card: rgba(15, 23, 42, 0.65);
    --bg-card-hover: rgba(30, 41, 59, 0.8);
    
    --color-primary-blue: #0046ad; /* Royal Blue from logo */
    --color-primary-green: #398218; /* Grass Green from logo */
    
    --color-cyan: #0ea5e9; /* Cyber Cyan */
    --color-emerald: #10b981; /* Emerald Green */
    --color-teal: #14b8a6;
    
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-emerald) 100%);
    --gradient-blue-emerald: linear-gradient(135deg, var(--color-primary-blue) 0%, var(--color-emerald) 100%);
    --gradient-dark-glass: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.75) 100%);
    --gradient-glow-radial: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(0, 0, 0, 0) 70%);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout Properties */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(14, 165, 233, 0.35);
}

/* --- Reset & Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
}

.text-green {
    color: var(--color-emerald) !important;
}

.text-blue {
    color: #2563eb !important; /* Brand royal blue */
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-cyan);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-cyan);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
}

/* --- Section Styling Helper --- */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    font-family: var(--font-heading);
    color: var(--color-cyan);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-white);
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 16px auto 24px auto;
    border-radius: 2px;
}

.section-title.text-left + .section-line.text-left {
    margin-left: 0;
    margin-right: 0;
}

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

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

/* --- Glassmorphism Card Style --- */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-normal);
}

.glass-card:hover {
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.6);
}

/* --- Navigation Header --- */
.main-header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
}

.main-header.scrolled {
    background: rgba(7, 10, 19, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 70px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
}

.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 550;
    font-size: 15px;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

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

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1002;
}

.mobile-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-fast);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    padding: 100px 32px 40px 32px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    transform: translateX(-100%);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-muted);
    display: block;
    padding: 10px 0;
}

.mobile-nav-link:hover {
    color: var(--text-white);
    padding-left: 8px;
}

.btn-drawer-cta {
    margin-top: 24px;
}

/* Toggle Animation */
.mobile-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 40px);
    background-color: #070911;
    overflow: hidden;
}

.hero-bg-gradients {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--color-cyan);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--color-emerald);
    bottom: -50px;
    left: -100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-cyan);
    margin-bottom: 24px;
}

.hero-badge i {
    animation: rotateSparkle 3s linear infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 30%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-white);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

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

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

#hero-network-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.visual-card {
    width: 100%;
    max-width: 400px;
    height: 240px;
    z-index: 2;
    overflow: hidden;
    position: relative;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.card-header-bar {
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.8);
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-header-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.card-header-bar .dot.red { background-color: #ef4444; }
.card-header-bar .dot.yellow { background-color: #eab308; }
.card-header-bar .dot.green { background-color: #22c55e; }

.card-body-code {
    padding: 20px 24px;
    font-family: 'Consolas', monospace;
    font-size: 14px;
    line-height: 1.5;
}

.code-keyword { color: #f472b6; }
.code-class { color: #38bdf8; }
.code-string { color: #34d399; }
.code-comment { color: #64748b; }

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.hero-wave .shape-fill {
    fill: #0c1222;
}

/* --- About Section --- */
.about-section {
    background-color: #0c1222;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.lead-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 20px;
}

.about-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-feat-item {
    display: flex;
    gap: 20px;
}

.feat-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-emerald);
}

.feat-desc h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 650;
    color: var(--text-white);
    margin-bottom: 4px;
}

.feat-desc p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-border-deco {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px dashed rgba(14, 165, 233, 0.2);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.about-image-card {
    width: 100%;
    padding: 40px;
    z-index: 2;
    position: relative;
}

.about-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.metric-num {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.metric-lbl {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-top: 10px;
}

.about-bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-white);
}

.bullet-item i {
    color: var(--color-cyan);
}

/* --- Services Section --- */
.services-section {
    background-color: #070a13;
}

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

.service-card {
    padding: 50px 32px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: var(--transition-normal);
}

.service-card:hover::after {
    background: var(--gradient-primary);
}

.card-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-normal);
}

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

.web-icon {
    color: var(--color-cyan);
    background: rgba(14, 165, 233, 0.08);
}
.system-icon {
    color: var(--color-emerald);
    background: rgba(16, 185, 129, 0.08);
}
.app-icon {
    color: var(--color-teal);
    background: rgba(20, 184, 166, 0.08);
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.service-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-white);
}

.service-bullets li i {
    font-size: 10px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.service-card:hover .service-bullets li i {
    color: var(--color-cyan);
    transform: translateX(3px);
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-cyan);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link i {
    transition: var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* --- Philosophy Section --- */
.philosophy-section {
    background-color: #0c1222;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.philosophy-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.interactive-logo-container {
    position: relative;
    padding: 30px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
}

.interactive-logo {
    max-width: 320px;
    height: auto;
    cursor: pointer;
    transition: var(--transition-normal);
    filter: drop-shadow(0 0 15px rgba(0, 70, 173, 0.2));
}

.interactive-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(16, 185, 129, 0.3));
}

.pulse-ring {
    border: 3px solid rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: pulsate 2.5s ease-out infinite;
    pointer-events: none;
}

/* Hotspots on the Logo */
.hotspot-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.hs-leaves {
    top: 25%;
    left: 45%;
}

.hs-trunk {
    top: 55%;
    left: 48%;
}

.hs-marker {
    width: 14px;
    height: 14px;
    background-color: var(--color-emerald);
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 10px var(--color-emerald);
    animation: markerPulse 1.5s infinite;
}

.hs-leaves .hs-marker {
    background-color: var(--color-emerald);
    box-shadow: 0 0 10px var(--color-emerald);
}

.hs-trunk .hs-marker {
    background-color: var(--color-cyan);
    box-shadow: 0 0 10px var(--color-cyan);
}

.interactive-tip {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 20px;
    font-weight: 550;
    display: flex;
    align-items: center;
    gap: 8px;
}

.philosophy-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.philosophy-card {
    padding: 30px;
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.philosophy-card.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.5s ease-out;
}

.philosophy-card .card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
}

.phil-num {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 800;
    color: var(--color-cyan);
    padding: 4px 12px;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 4px;
}

.philosophy-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
}

.philosophy-card p {
    color: var(--text-muted);
    font-size: 15px;
}

.philosophy-visual-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.phil-tab-btn {
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}

.phil-tab-btn:hover, .phil-tab-btn.active {
    background: var(--gradient-primary);
    color: var(--text-dark);
    border-color: transparent;
}

/* --- Why Choose Us Section --- */
.why-us-section {
    background-color: #070a13;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-text {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.why-bullets {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-bullet-item {
    display: flex;
    gap: 20px;
}

.why-bullet-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-cyan);
}

.why-bullet-content h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 750;
    margin-bottom: 6px;
    color: var(--text-white);
}

.why-bullet-content p {
    font-size: 14px;
    color: var(--text-muted);
}

.why-us-visual {
    display: flex;
    justify-content: center;
}

.why-box {
    width: 100%;
    max-width: 450px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.why-card-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(0,0,0,0) 70%);
}

.why-icon {
    font-size: 40px;
    color: var(--color-emerald);
    margin-bottom: 24px;
}

.why-box h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 750;
    margin-bottom: 16px;
}

.why-box p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 30px;
}

.why-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-steps .step {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition-fast);
}

.step:hover .step-circle {
    background: var(--gradient-primary);
    color: var(--text-dark);
    border-color: transparent;
    transform: scale(1.1);
}

/* --- Contact Section --- */
.contact-section {
    background-color: #0c1222;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(14, 165, 233, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color-cyan);
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-text a, .info-text span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin-top: 2px;
}

.info-text a:hover {
    color: var(--color-cyan);
}

.contact-form-wrapper {
    padding: 40px;
    position: relative;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 750;
    margin-bottom: 6px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 14px;
}

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

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

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

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(7, 10, 19, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-size: 15px;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--color-cyan);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.15);
    background: rgba(7, 10, 19, 0.8);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.form-group textarea {
    resize: vertical;
}

/* Success Alert Drawer Form */
.form-success-alert {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
    z-index: 50;
}

.form-success-alert.show {
    opacity: 1;
    pointer-events: auto;
}

.success-icon {
    font-size: 60px;
    color: var(--color-emerald);
    margin-bottom: 20px;
    animation: markerPulse 1.5s infinite;
}

.form-success-alert h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 750;
    margin-bottom: 12px;
}

.form-success-alert p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 30px;
    max-width: 320px;
    line-height: 1.5;
}

/* --- Footer --- */
.main-footer {
    background-color: #070911;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 80px;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-muted);
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: var(--text-dark);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-links h3, .footer-services h3, .footer-newsletter h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: var(--text-white);
}

.footer-links ul, .footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a, .footer-services a {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links a:hover, .footer-services a:hover {
    color: var(--color-cyan);
    padding-left: 4px;
}

.footer-newsletter p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

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

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

/* --- Animations Keyframes --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateSparkle {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes pulsate {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

@keyframes markerPulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* --- Media Queries (Responsiveness) --- */
@media (max-width: 1024px) {
    .section-title {
        font-size: 32px;
    }
    .hero-title {
        font-size: 42px;
    }
    .hero-container, .about-grid, .why-us-grid, .contact-grid {
        gap: 40px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .philosophy-visual {
        order: 1;
    }
    .philosophy-details {
        order: 2;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    .btn-nav {
        display: none;
    }
    .nav-menu {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-visual {
        height: 350px;
    }
    .about-grid, .why-us-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-info, .why-us-info, .contact-details {
        text-align: center;
    }
    .section-title.text-left + .section-line.text-left {
        margin-left: auto;
        margin-right: auto;
    }
    .why-bullet-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .form-group-row {
        grid-template-columns: 1fr;
    }
    .footer-bottom-flex {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    .stat-divider {
        display: none;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .about-image-card {
        padding: 24px;
    }
    .contact-form-wrapper {
        padding: 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
