/* ============================================
   LOGIC LOOMS - Custom CSS
   Modern Dark Tech Theme
   ============================================ */

/* === CSS Variables === */
:root {
    --primary: #00b4d8;
    --primary-light: #48cae4;
    --primary-dark: #0096c7;
    --accent: #0077b6;
    --glow: #00b4d8;
    --bg-dark: #0a0e17;
    --bg-darker: #060a12;
    --bg-card: #0f1520;
    --bg-card-hover: #141c2b;
    --bg-glass: rgba(15, 21, 32, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #6b7a90;
    --border-color: rgba(0, 180, 216, 0.15);
    --border-glow: rgba(0, 180, 216, 0.3);
    --gradient-primary: linear-gradient(135deg, #00b4d8 0%, #0077b6 50%, #023e8a 100%);
    --gradient-glow: linear-gradient(135deg, #00b4d8, #48cae4);
    --gradient-dark: linear-gradient(180deg, #0a0e17 0%, #060a12 100%);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-code: 'JetBrains Mono', monospace;
    --shadow-glow: 0 0 20px rgba(0, 180, 216, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

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

::selection {
    background: var(--primary);
    color: var(--bg-dark);
}

/* === Scrollbar === */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* === Text Gradient === */
.text-gradient {
    background: var(--gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Navigation === */
#mainNav {
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.8rem 0;
    transition: var(--transition);
    z-index: 1050;
}

#mainNav.scrolled {
    background: rgba(10, 14, 23, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.brand-logic {
    color: var(--primary-light);
}

.brand-looms {
    color: #ffffff;
    font-size: 0.75rem;
    letter-spacing: 3px;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-glow);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-light) !important;
}

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

/* === Glow Button === */
.btn-glow {
    background: var(--gradient-primary);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

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

.btn-glow:hover {
    color: #ffffff;
    box-shadow: 0 0 25px rgba(0, 180, 216, 0.4), 0 0 50px rgba(0, 180, 216, 0.2);
    transform: translateY(-2px);
}

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

.btn-glow:active {
    transform: translateY(0);
}

/* === Hero Section === */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 180, 216, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 119, 182, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(2, 62, 138, 0.05) 0%, transparent 50%);
}

.particle-grid {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(0, 180, 216, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.85rem;
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.hero-btn-secondary {
    border-color: var(--border-glow) !important;
    color: var(--text-secondary) !important;
}

.hero-btn-secondary:hover {
    border-color: var(--primary) !important;
    color: var(--primary-light) !important;
    background: rgba(0, 180, 216, 0.05);
}

.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
}

.hero-stat-plus,
.hero-stat-percent {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-glow);
}

/* Hero Code Window */
.hero-visual {
    perspective: 1000px;
}

.code-window {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-card), var(--shadow-glow);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: var(--transition);
}

.code-window:hover {
    transform: rotateY(0deg) rotateX(0deg);
    box-shadow: var(--shadow-card), 0 0 30px rgba(0, 180, 216, 0.2);
}

.code-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
}

.code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.code-dot.red { background: #ff5f57; }
.code-dot.yellow { background: #ffbd2e; }
.code-dot.green { background: #28c840; }

.code-title {
    font-family: var(--font-code);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-left: 8px;
}

.code-body {
    padding: 1.2rem;
    font-family: var(--font-code);
    font-size: 0.8rem;
    line-height: 1.8;
    overflow-x: auto;
}

.code-body pre {
    margin: 0;
    white-space: pre;
}

.code-body code {
    color: var(--text-secondary);
}

.code-keyword { color: #c792ea; }
.code-string { color: #c3e88d; }
.code-func { color: #82aaff; }
.code-class { color: #ffcb6b; }
.code-comment { color: #546e7a; }

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--border-glow);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-anim 1.5s ease-in-out infinite;
}

@keyframes scroll-anim {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* === Tech Strip === */
.tech-strip {
    padding: 2rem 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.tech-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.tech-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.tech-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-icon {
    font-size: 1.8rem;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: default;
}

.tech-icon:hover {
    color: var(--primary-light);
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(0, 180, 216, 0.5));
}

/* === Sections === */
.section-dark {
    padding: 6rem 0;
    background: var(--bg-dark);
    position: relative;
}

.section-darker {
    padding: 6rem 0;
    background: var(--bg-darker);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.8rem;
    color: var(--primary-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.section-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 4rem 0;
}

/* === Service Cards (Home) === */
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-glow);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    border-color: var(--primary-dark);
    background: linear-gradient(180deg, rgba(0, 180, 216, 0.05) 0%, var(--bg-card) 100%);
}

.service-card.featured::before {
    opacity: 1;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon-wrap {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 12px;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    color: var(--primary-light);
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
}

.service-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-tags {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.service-tags li {
    background: rgba(0, 180, 216, 0.08);
    border: 1px solid var(--border-color);
    color: var(--primary-light);
    font-size: 0.75rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 500;
}

/* === Feature Cards (Why Choose Us) === */
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.feature-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 180, 216, 0.1);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* === Stats Section === */
.stats-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.05) 0%, var(--bg-dark) 50%, rgba(0, 119, 182, 0.05) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-bg {
    position: absolute;
    inset: 0;
}

.stats-bg .particle-grid {
    opacity: 0.3;
}

.stat-item {
    padding: 1.5rem;
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-light);
    display: inline;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: inline;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.3rem;
}

/* === Process Timeline === */
.process-step {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.process-number {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.process-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 50%;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary-light);
    transition: var(--transition);
}

.process-step:hover .process-icon {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 0 30px rgba(0, 180, 216, 0.3);
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* === Testimonials === */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 2px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

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

.author-avatar {
    font-size: 2.5rem;
    color: var(--text-muted);
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--primary-light);
}

/* === Page Hero (Inner Pages) === */
.page-hero {
    position: relative;
    padding: 10rem 0 4rem;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg .particle-grid {
    opacity: 0.3;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* === About Page === */
.about-story p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.code-line {
    display: block;
    font-family: var(--font-code);
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

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

.about-highlights {
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.highlight-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Mission Cards */
.mission-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    transition: var(--transition);
    text-align: center;
}

.mission-card.vision {
    border-color: var(--primary-dark);
    background: linear-gradient(180deg, rgba(0, 180, 216, 0.05) 0%, var(--bg-card) 100%);
}

.mission-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
    color: var(--primary-light);
}

.mission-card h3 {
    margin-bottom: 1rem;
}

.mission-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Value Cards */
.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
}

.value-icon {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.value-card h4 {
    margin-bottom: 0.8rem;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* === Services Detail Page === */
.service-detail-row {
    padding: 2rem 0;
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    font-size: 1.8rem;
    color: var(--primary-light);
    margin-bottom: 1.2rem;
}

.service-detail-icon.shipping {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.2);
}

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-detail-content .lead {
    color: var(--primary-light);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-features {
    margin-top: 1.5rem;
}

.sf-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.sf-item i {
    color: var(--primary);
    font-size: 1rem;
}

/* Service Visual Grid */
.service-visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.sv-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition);
}

.sv-card:hover {
    border-color: var(--primary);
    background: rgba(0, 180, 216, 0.05);
    transform: translateY(-3px);
}

.sv-card i {
    font-size: 2rem;
    color: var(--primary-light);
    display: block;
    margin-bottom: 0.5rem;
}

.sv-card span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Conversion Flow */
.conversion-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cf-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.cf-item:hover {
    border-color: var(--primary);
    background: rgba(0, 180, 216, 0.05);
}

.cf-format {
    font-family: var(--font-code);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-light);
    background: rgba(0, 180, 216, 0.1);
    padding: 6px 16px;
    border-radius: 8px;
    min-width: 70px;
    text-align: center;
}

.cf-arrow {
    color: var(--primary);
    font-size: 1.2rem;
}

/* === Contact Page === */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.form-control,
.form-select {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 0.7rem 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    background: rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.contact-info-sidebar h3 {
    font-size: 1.8rem;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
}

.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ci-item:last-child {
    margin-bottom: 0;
}

.ci-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.1);
    border-radius: 10px;
    color: var(--primary-light);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ci-item h5 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.ci-item p,
.ci-item a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.ci-item a:hover {
    color: var(--primary-light);
}

.map-placeholder {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
}

.map-placeholder span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* === Footer === */
.site-footer {
    position: relative;
}

.footer-cta {
    padding: 4rem 0;
    background: var(--bg-darker);
}

.cta-box {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.08) 0%, rgba(0, 119, 182, 0.05) 100%);
    border: 1px solid var(--border-glow);
    border-radius: 20px;
    padding: 3rem;
}

.cta-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.cta-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.footer-main {
    padding: 4rem 0 2rem;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}

.footer-brand .brand-text {
    flex-direction: column;
    display: inline-flex;
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 180, 216, 0.08);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.3);
}

.footer-heading {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-contact i {
    color: var(--primary);
    font-size: 0.9rem;
}

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

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

.footer-bottom {
    padding: 1.5rem 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}

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

.footer-tagline {
    color: var(--text-muted);
}

.footer-tagline i {
    color: var(--primary);
}

/* === Responsive === */
@media (max-width: 991.98px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats-row {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .cta-box {
        text-align: center;
    }
    
    .cta-text {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .section-dark,
    .section-darker {
        padding: 4rem 0;
    }
    
    .hero-stats-row {
        gap: 1rem;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .service-visual-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .service-visual-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === AOS Fix === */
[data-aos] {
    pointer-events: auto;
}

/* === Animation Utilities === */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

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

.animate-glow {
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 180, 216, 0.2); }
    50% { box-shadow: 0 0 40px rgba(0, 180, 216, 0.4); }
}

/* === Print Styles === */
@media print {
    .hero-section,
    .stats-section,
    .site-footer,
    #mainNav {
        display: none !important;
    }
    
    body {
        background: #fff;
        color: #000;
    }
}