/* ========================================
   3E Harita Mühendislik - Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    --bg-primary: #0a0f1a;
    --bg-secondary: #0d1321;
    --bg-card: rgba(13, 19, 33, 0.8);

    --brand-blue: #0088ff;
    --brand-blue-light: #00ccff;
    --brand-orange: #ff6600;
    --brand-orange-light: #ffaa00;
    --brand-cyan: #00ddff;

    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --border-color: rgba(148, 163, 184, 0.15);

    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    --shadow-glow-blue: 0 0 40px -10px rgba(0, 136, 255, 0.5);
    --shadow-glow-orange: 0 0 40px -10px rgba(255, 102, 0, 0.5);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(180deg, var(--bg-primary) 0%, #070a10 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
.gradient-text {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-orange {
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn svg {
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-cyan) 100%);
    color: white;
    box-shadow: var(--shadow-glow-blue);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.btn-cyan {
    background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-blue) 100%);
    color: white;
}

.w-full {
    width: 100%;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: 9999px;
    background: rgba(0, 136, 255, 0.1);
    border: 1px solid rgba(0, 136, 255, 0.3);
    color: var(--brand-blue);
}

.badge-orange {
    background: rgba(255, 102, 0, 0.1);
    border-color: rgba(255, 102, 0, 0.3);
    color: var(--brand-orange);
}

.badge-cyan {
    background: rgba(0, 221, 255, 0.1);
    border-color: rgba(0, 221, 255, 0.3);
    color: var(--brand-cyan);
}

/* Glass Card */
.glass-card {
    background: linear-gradient(145deg, rgba(20, 28, 45, 0.9) 0%, rgba(13, 19, 33, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    backdrop-filter: blur(20px);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .badge {
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 15, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
}

.navbar.nav-hidden,
.page-header.nav-hidden {
    transform: translateY(-100%);
    pointer-events: none;
    transition: transform var(--transition-normal);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(0, 136, 255, 0.2) 0%, rgba(255, 102, 0, 0.2) 100%);
    padding: 0.25rem;
    overflow: hidden;
    transition: box-shadow var(--transition-normal);
}

.logo:hover .logo-img {
    box-shadow: var(--shadow-glow-blue);
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

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

.logo-sub {
    font-size: 0.6875rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 50%, var(--bg-primary) 100%);
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 136, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(270deg, rgba(255, 102, 0, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: slideUp 0.8s ease-out;
}

.hero-text .badge {
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    display: block;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-buttons .arrow {
    transition: transform var(--transition-fast);
}

.hero-buttons .btn:hover .arrow {
    transform: translateX(4px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    animation: pulse 3s ease-in-out infinite;
}

.orbit-1 {
    width: 500px;
    height: 500px;
    border-color: rgba(0, 136, 255, 0.2);
}

.orbit-2 {
    width: 400px;
    height: 400px;
    border-color: rgba(255, 102, 0, 0.2);
    animation-delay: 1s;
}

.orbit-3 {
    width: 300px;
    height: 300px;
    border-color: rgba(0, 136, 255, 0.3);
}

.hero-logo {
    position: relative;
    width: 320px;
    height: 320px;
}

.logo-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 136, 255, 0.3) 0%, rgba(255, 102, 0, 0.3) 100%);
    border-radius: 1.5rem;
    filter: blur(40px);
}

.hero-logo img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.floating-icon {
    position: absolute;
    padding: 0.75rem;
    background: linear-gradient(145deg, rgba(20, 28, 45, 0.9) 0%, rgba(13, 19, 33, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

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

.icon-1 {
    top: 2rem;
    right: 2rem;
    color: var(--brand-blue);
    animation-delay: 0.5s;
}

.icon-2 {
    bottom: 4rem;
    left: 2rem;
    color: var(--brand-orange);
    animation-delay: 1s;
}

.icon-3 {
    top: 40%;
    left: 0;
    color: var(--brand-cyan);
    animation-delay: 1.5s;
}

.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(180deg, transparent 0%, var(--bg-primary) 100%);
    pointer-events: none;
}

/* About Section */
.about {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.bg-gradient-left {
    position: absolute;
    top: 0;
    right: 0;
    width: 33%;
    height: 100%;
    background: linear-gradient(270deg, rgba(0, 136, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.bg-gradient-right {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25%;
    height: 50%;
    background: linear-gradient(45deg, rgba(255, 102, 0, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.about-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-left .glass-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.value-item svg {
    color: var(--brand-blue);
    flex-shrink: 0;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.feature-card {
    background: linear-gradient(145deg, rgba(20, 28, 45, 0.9) 0%, rgba(13, 19, 33, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    border-color: rgba(0, 136, 255, 0.5);
    transform: translateY(-4px);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

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

.icon-blue {
    background: linear-gradient(135deg, rgba(0, 136, 255, 0.2) 0%, rgba(0, 204, 255, 0.1) 100%);
    color: var(--brand-blue);
}

.icon-orange {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.2) 0%, rgba(255, 170, 0, 0.1) 100%);
    color: var(--brand-orange);
}

.icon-cyan {
    background: linear-gradient(135deg, rgba(0, 221, 255, 0.2) 0%, rgba(0, 136, 255, 0.1) 100%);
    color: var(--brand-cyan);
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.cert-card {
    display: flex;
    gap: 1rem;
    background: linear-gradient(145deg, rgba(20, 28, 45, 0.9) 0%, rgba(13, 19, 33, 0.9) 100%);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.cert-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.2) 0%, rgba(255, 102, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange);
    flex-shrink: 0;
}

.cert-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cert-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cert-badge {
    padding: 0.25rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 500;
    border-radius: 9999px;
}

.badge-blue {
    background: rgba(0, 136, 255, 0.1);
    color: var(--brand-blue);
}

.badge-orange {
    background: rgba(255, 102, 0, 0.1);
    color: var(--brand-orange);
}

.badge-cyan {
    background: rgba(0, 221, 255, 0.1);
    color: var(--brand-cyan);
}

/* Equipment Section */
.equipment {
    position: relative;
    padding: 6rem 0;
}

.bg-gradient-center {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 136, 255, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.equipment-card {
    background: linear-gradient(145deg, rgba(20, 28, 45, 0.9) 0%, rgba(13, 19, 33, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.equipment-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 136, 255, 0.3);
}

.eq-header {
    padding: 1.5rem;
}

.eq-blue {
    background: linear-gradient(135deg, rgba(0, 136, 255, 0.2) 0%, rgba(0, 136, 255, 0.05) 100%);
}

.eq-orange {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.2) 0%, rgba(255, 102, 0, 0.05) 100%);
}

.eq-cyan {
    background: linear-gradient(135deg, rgba(0, 221, 255, 0.2) 0%, rgba(0, 221, 255, 0.05) 100%);
}

.eq-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid;
}

.eq-blue .eq-icon {
    background: linear-gradient(135deg, rgba(0, 136, 255, 0.2) 0%, rgba(0, 136, 255, 0.05) 100%);
    border-color: rgba(0, 136, 255, 0.3);
    color: var(--brand-blue);
}

.eq-orange .eq-icon {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.2) 0%, rgba(255, 102, 0, 0.05) 100%);
    border-color: rgba(255, 102, 0, 0.3);
    color: var(--brand-orange);
}

.eq-cyan .eq-icon {
    background: linear-gradient(135deg, rgba(0, 221, 255, 0.2) 0%, rgba(0, 221, 255, 0.05) 100%);
    border-color: rgba(0, 221, 255, 0.3);
    color: var(--brand-cyan);
}

.eq-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.eq-items {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.eq-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.eq-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.eq-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.eq-spec {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.eq-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-blue {
    background: var(--brand-blue);
}

.dot-orange {
    background: var(--brand-orange);
}

.dot-cyan {
    background: var(--brand-cyan);
}

.equipment-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Process & CTA Section */
.process-cta {
    position: relative;
    padding: 6rem 0;
}

.bg-glow-blue {
    position: absolute;
    top: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 136, 255, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.bg-glow-orange {
    position: absolute;
    bottom: 0;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.process-section {
    margin-bottom: 5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.step-card {
    position: relative;
    background: linear-gradient(145deg, rgba(20, 28, 45, 0.9) 0%, rgba(13, 19, 33, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-normal);
}

.step-card:hover {
    border-color: rgba(0, 136, 255, 0.5);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-cyan) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.step-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.step-connector {
    display: none;
}

/* CTA Grid */
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-card {
    position: relative;
    background: linear-gradient(145deg, rgba(20, 28, 45, 0.9) 0%, rgba(13, 19, 33, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    overflow: hidden;
}

.contact-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(0, 136, 255, 0.2);
    border-radius: 50%;
    filter: blur(60px);
    transform: translate(30%, -30%);
    pointer-events: none;
}

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

.contact-content .badge {
    margin-bottom: 1.5rem;
}

.contact-content h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-content>p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.125rem;
}

.contact-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.action-card {
    background: linear-gradient(145deg, rgba(20, 28, 45, 0.9) 0%, rgba(13, 19, 33, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-normal);
}

.action-card:hover {
    border-color: rgba(0, 136, 255, 0.5);
    transform: translateY(-4px);
}

.action-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.action-card p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.action-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand-orange);
    transition: color var(--transition-fast);
}

.action-link:hover {
    color: var(--brand-orange-light);
}

.action-wide {
    grid-column: span 2;
}

.action-wide-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.action-wide-buttons {
    display: flex;
    gap: 0.75rem;
}

/* Footer */
.footer {
    position: relative;
    padding: 5rem 0 2rem;
}

.footer-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 136, 255, 0.5) 50%, transparent 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 320px;
}

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

.footer-logo-img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(0, 136, 255, 0.2) 0%, rgba(255, 102, 0, 0.2) 100%);
    padding: 0.25rem;
    overflow: hidden;
}

.footer-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo-main {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

.footer-logo-sub {
    font-size: 0.6875rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.footer-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact a,
.footer-contact .footer-address {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.footer-contact svg {
    color: var(--brand-blue);
    flex-shrink: 0;
}

.footer-links h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-tags {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-tags span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.footer-tags .divider {
    width: 1px;
    height: 1rem;
    background: var(--border-color);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Scroll Reveal */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease-out;
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

.delay-500 {
    transition-delay: 500ms;
}

.delay-600 {
    transition-delay: 600ms;
}

.delay-700 {
    transition-delay: 700ms;
}

.delay-800 {
    transition-delay: 800ms;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-blue);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

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

    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

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

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

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

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

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

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

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }

    .action-wide {
        grid-column: span 1;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .glass-card {
        padding: 1.5rem;
    }
}

/* Floating Actions (WhatsApp & Call) */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 9999;
}

.fab {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fab:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.call-fab {
    background: linear-gradient(135deg, var(--brand-blue, #0088ff) 0%, #0055ff 100%);
}

.wa-fab {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.fab svg {
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .fab {
        width: 50px;
        height: 50px;
    }

    .fab svg {
        width: 24px;
        height: 24px;
    }
}