/* ==============================================
   COOLTERM - MAIN STYLESHEET
   Fonts: Inter (body) + Barlow Condensed (headings)
   Accent: #00E5FF (cyan)
   Background: #0A0A0A (dark)
   ============================================== */

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0A0A0A;
    color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Barlow Condensed', sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0A0A0A;
}

::-webkit-scrollbar-thumb {
    background: #1A1A1A;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00E5FF;
}

/* ---- Colors / Variables ---- */
:root {
    --cyan: #00E5FF;
    --cyan-dark: #00B5D1;
    --cyan-hover: #00D4F0;
    --bg: #0A0A0A;
    --bg-card: #111111;
    --bg-zinc-900: #18181b;
    --bg-zinc-950: #09090b;
    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-mid: rgba(255, 255, 255, 0.1);
    --border-cyan: rgba(0, 229, 255, 0.3);
    --text-muted: #71717a;
    --text-dim: #52525b;
    --text-light: #a1a1aa;
    --radius: 0;
    --max-w: 1280px;
    --nav-max-w: 1536px;
}

/* ---- Layout ---- */
.container-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* Wider container for the navbar only */
.navbar-container {
    max-width: var(--nav-max-w);
    margin: 0 auto;
    padding: 0 40px;
}

/* ---- Industrial Grid Background ---- */
.industrial-grid {
    background-image:
        linear-gradient(to right, rgba(128, 128, 128, 0.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(128, 128, 128, 0.07) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* ---- Glass ---- */
.glass {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---- Neon Border ---- */
.neon-border {
    border: 1px solid var(--border-cyan);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
}

/* ---- Utility ---- */
.text-cyan {
    color: var(--cyan);
}

.icon-sm {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
    background-color: #18181b;
    border-bottom: 1px solid var(--border-subtle);
    display: none;
}

@media (min-width: 1024px) {
    .topbar {
        display: block;
    }
}

.topbar-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 13px;
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.topbar-link:hover {
    color: var(--cyan);
}

.topbar-link i {
    width: 14px;
    height: 14px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 41px;
    /* topbar height on desktop */
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.3s, border-color 0.3s;
}

@media (max-width: 1023px) {
    .navbar {
        top: 0;
    }
}

.navbar.navbar-solid {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: var(--border-mid);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

/* Spacer to push content below fixed navbar */
.navbar-spacer {
    height: 41px;
    /* topbar */
}

@media (max-width: 1023px) {
    .navbar-spacer {
        height: 0;
    }
}

/* Logo */
.navbar-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 44px;
    width: auto;
}

@media (min-width: 768px) {
    .logo-img {
        height: 52px;
    }
}

/* ---- Desktop Nav Menu ---- */
.nav-menu {
    display: none;
    align-items: center;
    gap: 2px;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-menu li {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cyan);
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

/* Desktop Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 4px;
    margin-top: 0;
    width: 220px;
    background: rgba(24, 24, 27, 0.97);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-mid);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.dropdown-menu.is-open {
    display: block;
}

.dropdown-link {
    display: block;
    padding: 12px 16px;
    font-size: 13px;
    color: #a1a1aa;
    border-bottom: 1px solid var(--border-subtle);
    transition: color 0.2s, background 0.2s;
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    color: var(--cyan);
    background: rgba(255, 255, 255, 0.04);
}

/* ---- Mobile Toggle ---- */
.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: #FFFFFF;
}

.mobile-toggle i {
    width: 24px;
    height: 24px;
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none;
    }
}

/* ---- Mobile Menu ---- */
.mobile-menu {
    display: none;
    background: rgba(24, 24, 27, 0.99);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-mid);
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu-inner {
    padding-top: 16px;
    padding-bottom: 24px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF;
    border-bottom: 1px solid var(--border-mid);
    background: none;
    text-align: left;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

.mobile-nav-link.active {
    color: var(--cyan);
}

.mobile-dropdown-wrapper {
    border-bottom: 1px solid var(--border-mid);
}

.mobile-dropdown-btn {
    border-bottom: none;
    width: 100%;
}

.mobile-dropdown-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.2s;
}

.mobile-submenu {
    display: none;
    background: rgba(0, 0, 0, 0.3);
    padding-left: 16px;
}

.mobile-submenu.is-open {
    display: block;
}

.mobile-submenu-link {
    display: block;
    padding: 12px 0;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-subtle);
}

.mobile-submenu-link:last-child {
    border-bottom: none;
}

.mobile-submenu-link:hover {
    color: var(--cyan);
}

.mobile-contact-info {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-mid);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
}

.mobile-contact-link i {
    color: var(--cyan);
    width: 18px;
    height: 18px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    inset: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-overlay-side {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 96px;
}

@media (min-width: 1024px) {
    .hero-content {
        padding-bottom: 128px;
    }
}

.hero-inner {
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--cyan);
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.hero-badge-text {
    color: var(--cyan);
    font-size: 11px;
    font-family: monospace;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 24px;
}

.hero-title .accent {
    color: var(--cyan);
}

.hero-subtitle {
    color: #71717a;
    font-size: 1.125rem;
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ---- Buttons ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--cyan);
    color: #000000;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 32px;
    font-size: 13px;
    transition: background 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background: var(--cyan-hover);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
}

.btn-primary i {
    width: 20px;
    height: 20px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 32px;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s, color 0.3s;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-secondary:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

@media (min-width: 1024px) {
    .hero-scroll {
        display: flex;
    }
}

.hero-scroll span {
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--cyan), transparent);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
    padding: 96px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 128px 0;
    }
}

.section-label {
    display: block;
    color: var(--cyan);
    font-size: 11px;
    font-family: monospace;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.section-title .accent {
    color: var(--cyan);
}

.section-desc {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section {
    background-color: var(--bg);
}

.products-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 64px;
}

@media (min-width: 1024px) {
    .products-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }

    .products-header .section-desc {
        max-width: 400px;
        text-align: right;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    position: relative;
    overflow: hidden;
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid var(--border-subtle);
    transition: border-color 0.5s;
}

.product-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
}


@media (min-width: 768px) {
    .product-card.card-large {
        grid-row: span 2;
    }
}

.product-card a {
    display: block;
    height: 100%;
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

/* Fixed equal height - used when all 3 cards are same size */
.product-card-fixed {
    display: flex;
    flex-direction: column;
}

.product-card-fixed a {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-img-fixed {
    aspect-ratio: unset !important;
    height: 400px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .product-img-fixed {
        height: 260px;
    }
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 32px;
}

.product-icon-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.product-icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.product-icon-box i {
    color: var(--cyan);
    width: 20px;
    height: 20px;
}

.product-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    line-height: 1.1;
}

.product-desc {
    color: #71717a;
    font-size: 13px;
}

.product-arrow {
    position: absolute;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s, background 0.3s;
    flex-shrink: 0;
}

.product-card:hover .product-arrow {
    border-color: var(--cyan);
    background: var(--cyan);
}

.product-arrow i {
    color: #FFFFFF;
    width: 20px;
    height: 20px;
    transition: color 0.3s;
}

.product-card:hover .product-arrow i {
    color: #000000;
}

.products-cta {
    margin-top: 48px;
    text-align: center;
}

.btn-text-icon {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--cyan);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
    transition: gap 0.3s;
}

.btn-text-icon:hover {
    gap: 20px;
}

.btn-text-icon i {
    width: 20px;
    height: 20px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    background-color: var(--bg-zinc-950);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 80px;
    }
}

.about-text-secondary {
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 32px;
}

.about-text-body {
    color: #71717a;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: var(--cyan);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.feature-item span {
    color: #d4d4d8;
    font-size: 14px;
}

/* About image side */
.about-img-side {
    position: relative;
}

.about-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-deco-1 {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 192px;
    height: 192px;
    border: 1px solid rgba(0, 229, 255, 0.3);
    z-index: -1;
}

.about-deco-2 {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 128px;
    height: 128px;
    background: rgba(0, 229, 255, 0.1);
    z-index: -1;
}

.about-stat-card {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(9, 9, 11, 0.88);
    border: 1px solid rgba(0, 229, 255, 0.35);
    backdrop-filter: blur(8px);
    padding: 12px 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.about-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--cyan);
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    line-height: 1;
}

.about-stat-label {
    color: #71717a;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 5px;
    display: block;
}

@media (min-width: 1024px) {
    .about-stat-card {
        bottom: -32px;
        right: -32px;
        padding: 24px;
        background: var(--bg-zinc-900);
        backdrop-filter: none;
    }

    .about-stat-number {
        font-size: 3rem;
    }

    .about-stat-label {
        font-size: 12px;
        margin-top: 8px;
    }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    background-color: var(--bg);
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    padding: 32px;
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid var(--border-subtle);
    transition: border-color 0.5s, background 0.5s;
}

.service-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    background: var(--bg-zinc-900);
}

.service-icon-box {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    margin-bottom: 24px;
    transition: background 0.3s;
}

.service-card:hover .service-icon-box {
    background: var(--cyan);
}

.service-icon-box i {
    color: var(--cyan);
    width: 24px;
    height: 24px;
    transition: color 0.3s;
}

.service-card:hover .service-icon-box i {
    color: #000000;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.7;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #042b33 0%, #09090b 50%, #000000 100%);
}

.cta-grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.cta-glow-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-glow-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 256px;
    height: 256px;
    background: rgba(0, 229, 255, 0.05);
    border-radius: 50%;
    filter: blur(40px);
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .cta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cta-text p {
    color: #71717a;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cta-stats {
    display: none;
}

@media (min-width: 1024px) {
    .cta-stats {
        display: block;
    }
}

.cta-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.cta-stat-col-offset {
    padding-top: 32px;
}

.cta-stat-box {
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-mid);
    backdrop-filter: blur(4px);
    margin-bottom: 16px;
}

.cta-stat-box:last-child {
    margin-bottom: 0;
}

.cta-stat-num {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cyan);
}

.cta-stat-label {
    display: block;
    color: #71717a;
    font-size: 13px;
    margin-top: 8px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    background-color: var(--bg-zinc-950);
}

.contact-header {
    text-align: center;
    margin-bottom: 64px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.contact-info-desc {
    color: #71717a;
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid var(--border-subtle);
    transition: border-color 0.3s;
    color: inherit;
}

a.contact-item:hover {
    border-color: rgba(0, 229, 255, 0.3);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    flex-shrink: 0;
}

.contact-item-icon i {
    color: var(--cyan);
    width: 20px;
    height: 20px;
}

.contact-item-meta span:first-child {
    display: block;
    font-size: 11px;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-item-meta p {
    font-weight: 500;
    color: #FFFFFF;
    transition: color 0.2s;
}

a.contact-item:hover .contact-item-meta p {
    color: var(--cyan);
}

/* ---- Contact Form ---- */
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (min-width: 480px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 11px;
    color: #71717a;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-input,
.form-textarea {
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 0 16px;
    font-size: 14px;
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
}

.form-input {
    height: 48px;
}

.form-textarea {
    padding: 16px;
    resize: none;
    height: 120px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #3f3f46;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--cyan);
}

.form-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--cyan);
    color: #000000;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.3s, box-shadow 0.3s;
    margin-top: 8px;
}

.form-submit-btn:hover {
    background: var(--cyan-hover);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
}

.form-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-submit-btn i {
    width: 20px;
    height: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background-color: var(--bg-zinc-950);
    border-top: 1px solid var(--border-subtle);
}

.footer .container-inner {
    padding-top: 64px;
    padding-bottom: 64px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
    }
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 24px;
}

.footer-about-text {
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.7;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--text-dim);
    font-size: 13px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--cyan);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-dim);
    font-size: 13px;
    transition: color 0.2s;
}

a.footer-contact-item:hover {
    color: var(--cyan);
}

.footer-contact-icon {
    color: var(--cyan);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: #3f3f46;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-link {
    color: #3f3f46;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-bottom-link:hover {
    color: var(--cyan);
}

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    animation: waPulse 2s infinite;
    transition: transform 0.2s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    color: #FFFFFF;
    fill: #FFFFFF;
    width: 28px;
    height: 28px;
}

@keyframes waPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animate-from-left {
    transform: translateX(-30px);
}

.animate-on-scroll.animate-from-right {
    transform: translateX(30px);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 767px) {
    .about-stat-card {
        position: static;
        margin-top: 32px;
        display: inline-block;
    }

    .about-img-side {
        overflow: visible;
    }
}

/* ===== CF7 HOME FORM STYLING ===== */
.cf7-home-form .cf7-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media(max-width:640px) {
    .cf7-home-form .cf7-row-2col {
        grid-template-columns: 1fr;
    }
}

.cf7-home-form .cf7-field {
    margin-bottom: 16px;
}

.cf7-home-form label {
    font-size: 11px;
    color: #71717a;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.cf7-home-form input[type="text"],
.cf7-home-form input[type="email"],
.cf7-home-form input[type="tel"],
.cf7-home-form input[type="url"],
.cf7-home-form input[type="number"],
.cf7-home-form select {
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 0 16px;
    height: 48px;
    font-size: 14px;
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.cf7-home-form textarea {
    background: rgba(24, 24, 27, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    padding: 16px;
    font-size: 14px;
    transition: border-color 0.2s;
    outline: none;
    width: 100%;
    resize: none;
    height: 120px;
    box-sizing: border-box;
}

.cf7-home-form input::placeholder,
.cf7-home-form textarea::placeholder {
    color: #3f3f46;
}

.cf7-home-form input:focus,
.cf7-home-form textarea:focus {
    border-color: var(--cyan);
}

.cf7-home-form .cf7-kvkk {
    margin: 16px 0 20px;
}

.cf7-home-form .wpcf7-list-item {
    margin: 0;
}

.cf7-home-form .wpcf7-acceptance .wpcf7-list-item-label {
    color: #52525b;
    font-size: 12px;
    line-height: 1.6;
}

.cf7-home-form .wpcf7-acceptance input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--cyan);
    cursor: pointer;
    vertical-align: middle;
    margin-right: 6px;
}

.cf7-home-form .cf7-kvkk a {
    color: var(--cyan);
    text-decoration: underline;
    text-decoration-color: rgba(0, 229, 255, 0.3);
}

.cf7-home-form input[type="submit"],
.cf7-home-form .wpcf7-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--cyan);
    color: #000000;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background 0.3s, box-shadow 0.3s;
    margin-top: 8px;
}

.cf7-home-form .wpcf7-submit:hover {
    background: var(--cyan-hover);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
}

.cf7-home-form .wpcf7-not-valid-tip {
    color: #ef4444;
    font-size: 11px;
    margin-top: 4px;
}

.cf7-home-form .wpcf7-not-valid {
    border-color: rgba(239, 68, 68, 0.5) !important;
}

.cf7-home-form .wpcf7-response-output {
    margin: 16px 0 0;
    padding: 14px 18px;
    font-size: 13px;
    border-width: 1px;
}

.cf7-home-form .wpcf7 form.sent .wpcf7-response-output {
    border-color: rgba(0, 229, 255, 0.3);
    background: rgba(0, 229, 255, 0.05);
    color: var(--cyan);
}

.cf7-home-form .wpcf7 form.failed .wpcf7-response-output {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
    color: #ef4444;
}

.cf7-home-form .wpcf7-spinner {
    display: none;
}

.cf7-home-form .wpcf7 form p {
    margin: 0;
}