﻿/* ============================================================
   BTS GROUP â€” Main Stylesheet
   ============================================================ */

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

:root {
    --dark:        #0F1523;
    --dark-2:      #161d2e;
    --dark-3:      #1e2840;
    --dark-4:      #2d3a55;
    --accent:      #c9a96e;
    --accent-h:    #b8934f;
    --accent-2:    #e2c48a;
    --text:        #111827;
    --text-muted:  #6b7280;
    --text-light:  #9ca3af;
    --white:       #ffffff;
    --off-white:   #f9fafb;
    --light:       #f3f4f6;
    --border:      #e5e7eb;
    --border-dark: #2d3a55;
    --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow:      0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg:   0 20px 40px rgba(0,0,0,0.15);
    --shadow-xl:   0 32px 64px rgba(0,0,0,0.2);
    --radius:      12px;
    --radius-lg:   20px;
    --radius-xl:   32px;
    --tr:          all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max:         1200px;
    --font:        'Noto Sans Georgian', 'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0;
    transition: var(--tr);
}

#header.scrolled {
    background: rgba(15, 21, 35, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 32px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

.logo-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 1px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.06em;
}

.logo-wordmark span {
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--tr);
    white-space: nowrap;
}

.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }

.nav-links a.nav-cta-link {
    color: var(--accent);
    border: 1px solid rgba(201,169,110,0.35);
    padding: 7px 18px;
}

.nav-links a.nav-cta-link:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Language switcher */
.lang-switcher { display: flex; gap: 2px; background: rgba(255,255,255,0.06); border-radius: 8px; padding: 3px; }

.lang-btn {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    padding: 5px 10px;
    border-radius: 6px;
    letter-spacing: 0.05em;
    transition: var(--tr);
}

.lang-btn:hover { color: rgba(255,255,255,0.85); }
.lang-btn.active { background: var(--accent); color: #fff; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px;
}

.hamburger span {
    display: block;
    height: 2px;
    background: rgba(255,255,255,0.75);
    border-radius: 2px;
    transition: var(--tr);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 900;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-overlay.show { display: block; opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
    padding-top: 72px;
}

/* Background decorations */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.c1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,169,110,0.18) 0%, transparent 70%);
    top: -100px; right: -100px;
}

.c2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(180,140,70,0.12) 0%, transparent 70%);
    bottom: 0; left: -80px;
}

.c3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 120px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,169,110,0.12);
    border: 1px solid rgba(201,169,110,0.25);
    color: var(--accent-2);
    padding: 8px 16px;
    border-radius: 100px;
    white-space: nowrap;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    margin-bottom: 28px;
}

.badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-highlight {
    background: linear-gradient(135deg, var(--accent) 0%, #d4a851 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 680px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

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

.h-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.h-stat-plus { color: var(--accent); font-weight: 800; font-size: 1.4rem; }

.h-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    font-weight: 500;
}

.h-stat-div {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
}

/* Scroll cue */
.hero-scroll-down {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.35);
    animation: bounce-y 2s ease-in-out infinite;
    z-index: 2;
}

.hero-scroll-down svg { width: 28px; height: 28px; }

@keyframes bounce-y {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 0.925rem;
    font-weight: 600;
    font-family: var(--font);
    letter-spacing: 0.01em;
    transition: var(--tr);
    white-space: nowrap;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 16px rgba(201,169,110,0.35);
}

.btn-primary:hover {
    background: var(--accent-h);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,169,110,0.45);
}

.btn-ghost {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.15);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.14);
    color: #fff;
    transform: translateY(-2px);
}

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

.btn-outline-dark:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-full { width: 100%; }
.mt-btn { margin-top: 36px; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding: 100px 0; }

.section-hd {
    text-align: center;
    margin-bottom: 64px;
}

.section-hd h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.section-hd p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
}

.section-hd p a { color: var(--accent); }
.section-hd p a:hover { text-decoration: underline; }

.s-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    background: rgba(201,169,110,0.1);
    border: 1px solid rgba(201,169,110,0.2);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.s-tag--light {
    color: var(--accent-2);
    background: rgba(226,196,138,0.12);
    border-color: rgba(226,196,138,0.25);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.svc-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--tr);
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #d4a851);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.svc-card:hover::before { transform: scaleX(1); }

.svc-card--accent {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
    border-color: rgba(201,169,110,0.2);
}

.svc-card--accent .svc-icon { color: var(--accent); border-color: rgba(201,169,110,0.2); background: rgba(201,169,110,0.08); }
.svc-card--accent .svc-more { color: var(--accent-2); }

.svc-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--accent);
    transition: var(--tr);
}

.svc-icon svg { width: 26px; height: 26px; }
.svc-card:hover .svc-icon { background: var(--accent); color: #fff; border-color: var(--accent); }
.svc-card--accent:hover .svc-icon { background: var(--accent); color: #fff; }

.svc-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.svc-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.svc-card--accent h3 { color: #ffffff; }
.svc-card--accent p  { color: rgba(255,255,255,0.6); }

.svc-more {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    transition: var(--tr);
}

.svc-more:hover { gap: 8px; letter-spacing: 0.02em; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--dark); }

.about-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Visual side */
.about-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 460px;
}

.about-glass-1, .about-glass-2, .about-glass-3 {
    position: absolute;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.08);
}

.about-glass-1 {
    inset: 0;
    background: rgba(201,169,110,0.06);
    backdrop-filter: blur(2px);
}

.about-glass-2 {
    top: 20px; left: 20px; right: 20px; bottom: 20px;
    background: rgba(255,255,255,0.03);
    border-color: rgba(201,169,110,0.12);
}

.about-glass-3 {
    top: 40px; left: 40px; right: 40px; bottom: 40px;
    background: rgba(201,169,110,0.04);
    border-color: rgba(201,169,110,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-center-box {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.acb-inner {
    width: 120px; height: 120px;
    border-radius: 20px;
    background: rgba(201,169,110,0.12);
    border: 1px solid rgba(201,169,110,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.acb-inner svg { width: 70px; height: 70px; stroke: rgba(201,169,110,0.6); }

.about-float-badge {
    position: absolute;
    bottom: 24px;
    right: -24px;
    background: var(--dark-3);
    border: 1px solid var(--border-dark);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: var(--shadow-lg);
    z-index: 5;
}

.about-float-badge strong { font-size: 1.5rem; font-weight: 800; color: var(--accent); line-height: 1; }
.about-float-badge span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

.about-float-badge2 {
    position: absolute;
    top: 24px;
    left: -24px;
    background: var(--dark-3);
    border: 1px solid var(--border-dark);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: var(--shadow-lg);
    z-index: 5;
}

.about-float-badge2 strong { font-size: 1.5rem; font-weight: 800; color: #d4a851; line-height: 1; }
.about-float-badge2 span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* Text side */
.about-text .section-hd { text-align: left; margin-bottom: 24px; }

.about-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.about-text p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.about-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.al-icon {
    width: 26px; height: 26px;
    border-radius: 8px;
    background: rgba(201,169,110,0.15);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.about-list strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 3px;
}

.about-list p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-section { background: var(--off-white); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--tr);
}

.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }

.why-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    margin-bottom: 20px;
    font-variant-numeric: tabular-nums;
    transition: var(--tr);
}

.why-card:hover .why-num { color: var(--accent); }

.why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.why-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-section { background: var(--white); }

.port-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.pf-btn {
    padding: 9px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--light);
    border: 1px solid var(--border);
    transition: var(--tr);
}

.pf-btn:hover, .pf-btn.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.port-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.port-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    cursor: pointer;
    background: var(--dark-3);
    border: 1px solid var(--border);
    transition: var(--tr);
}

.port-item-inner {
    position: absolute;
    inset: 0;
}

.port-item-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.port-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,21,35,0.92) 0%, rgba(15,21,35,0.3) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.port-item-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.port-item-tag {
    font-size: 0.72rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.port-item:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); }
.port-item:hover .port-item-inner img { transform: scale(1.06); }
.port-item:hover .port-item-overlay { opacity: 1; }

.port-item.hidden { display: none; }

@media (hover: none) {
  .port-item-overlay { opacity: 1; }
}

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

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-section {
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 0;
    overflow: hidden;
}

.partners-label {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-light);
    margin-bottom: 28px;
}

.partners-track { overflow: hidden; }

.partners-slide {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marquee 22s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partners-slide:hover { animation-play-state: paused; }

.partner-logo {
    flex-shrink: 0;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border);
}

.partner-logo span {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--text-light);
    transition: var(--tr);
    white-space: nowrap;
}

.partner-logo:hover span { color: var(--accent); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--light); }

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--tr);
}

.faq-item.open { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,169,110,0.08); }

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
    font-size: 0.975rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--tr);
}

.faq-q:hover { color: var(--accent); }
.faq-item.open .faq-q { color: var(--accent); }

.faq-arr {
    width: 20px; height: 20px;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-arr { transform: rotate(180deg); color: var(--accent); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-a p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--dark); }

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.contact-info > p {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 40px;
}

.cinfo-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }

.cinfo-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cinfo-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(201,169,110,0.1);
    border: 1px solid rgba(201,169,110,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
}

.cinfo-icon svg { width: 18px; height: 18px; }

.cinfo-lbl {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 3px;
}

.cinfo-val {
    font-size: 0.975rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: var(--tr);
}

a.cinfo-val:hover { color: var(--accent); }

.c-socials { display: flex; gap: 10px; }

.c-social-btn {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--tr);
}

.c-social-btn svg { width: 18px; height: 18px; }
.c-social-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Form */
.contact-form-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.cf-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.cf-row .cf-group { margin-bottom: 0; }

.cf-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.01em;
}

.cf-group input,
.cf-group select,
.cf-group textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 13px 16px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-family: var(--font);
    transition: var(--tr);
    outline: none;
    width: 100%;
}

.cf-group select option { background: var(--dark-2); color: #fff; }

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
    border-color: var(--accent);
    background: rgba(201,169,110,0.06);
    box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}

.cf-group input::placeholder,
.cf-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.cf-group input.error,
.cf-group select.error { border-color: #f87171; }

.cf-err {
    font-size: 0.78rem;
    color: #f87171;
    display: none;
}

.cf-err.show { display: block; }

.cf-group textarea { resize: vertical; min-height: 110px; }

.cf-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 10px;
    margin-top: 12px;
    color: #6ee7b7;
    font-size: 0.9rem;
    font-weight: 600;
}

.cf-success.show { display: flex; }
.cf-success svg { width: 20px; height: 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #090e1a;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 72px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
    max-width: 260px;
    margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 10px; }

.footer-socials a {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.45);
    transition: var(--tr);
}

.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a, .footer-col span {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    transition: var(--tr);
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}

.footer-bottom a { color: var(--accent); }
.footer-bottom a:hover { text-decoration: underline; }

/* ============================================================
   FLOATING CTA
   ============================================================ */
.float-cta-group {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.float-cta {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(201,169,110,0.5);
    transition: var(--tr);
    animation: pulse-ring 3s ease-in-out infinite;
}

.float-cta--wa {
    background: #25D366;
    box-shadow: 0 8px 24px rgba(37,211,102,0.45);
    animation: pulse-ring-wa 3s ease-in-out infinite 1.5s;
}

.float-cta svg { width: 22px; height: 22px; }
.float-cta:hover { transform: scale(1.1); }
.float-cta:hover:not(.float-cta--wa) { box-shadow: 0 12px 32px rgba(201,169,110,0.6); }
.float-cta--wa:hover { box-shadow: 0 12px 32px rgba(37,211,102,0.6); }

@keyframes pulse-ring {
    0%, 100% { box-shadow: 0 8px 24px rgba(201,169,110,0.5); }
    50% { box-shadow: 0 8px 24px rgba(201,169,110,0.5), 0 0 0 8px rgba(201,169,110,0.1); }
}

@keyframes pulse-ring-wa {
    0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .about-wrap { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { order: -1; display: flex; justify-content: center; }
    .about-img-box { max-width: 360px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .about-float-badge { right: 0; }
    .about-float-badge2 { left: 0; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }

    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--dark-2);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 96px 24px 32px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 950;
        box-shadow: -8px 0 40px rgba(0,0,0,0.4);
        justify-content: flex-start;
    }

    .nav-links.open { right: 0; }

    .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }

    .nav-links a {
        display: block;
        padding: 16px 12px;
        font-size: 1rem;
        border-radius: 0;
    }

    .nav-links a.nav-cta-link {
        margin-top: 16px;
        border-radius: 10px;
        text-align: center;
    }

    .hamburger { display: flex; }

    .hero-content { padding-bottom: 80px; max-width: 100%; }
    .hero-title { font-size: clamp(1.6rem, 7vw, 2rem); word-break: break-word; overflow-wrap: break-word; }
    .hero-badge { font-size: 0.72rem; padding: 6px 12px; gap: 6px; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .btn-full { width: 100%; }
    .hero-stats { gap: 0; justify-content: space-between; }
    .h-stat { flex: 1; align-items: center; text-align: center; }
    .h-stat-num { font-size: 1.5rem; }

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

    .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
    .contact-form-box { padding: 28px 20px; }
    .cf-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

    .section-hd h2 { font-size: 1.75rem; }
    .about-wrap { text-align: left; }
    .about-text { text-align: left; }
}

@media (max-width: 480px) {
    .port-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: clamp(1.4rem, 6.5vw, 1.75rem); }
    .hero-stats { flex-direction: row; align-items: center; gap: 0; justify-content: space-between; }
    .h-stat { flex: 1; align-items: center; text-align: center; }
    .h-stat-div { display: block; width: 1px; height: 36px; flex-shrink: 0; }
    .h-stat-num { font-size: 1.4rem; }
    .h-stat-label { font-size: 0.7rem; }
    .contact-form-box { border-radius: var(--radius); }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--dark-4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }


