/* ═══════════════════════════════════════════
   NIŽOTAXI — Premium Taxi Service
   Typography: Outfit + DM Sans
   Palette: Navy #082d64 + Gold #ffd700
   ═══════════════════════════════════════════ */

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

:root {
    --bg: #061d42;
    --bg-light: #0a2a5c;
    --bg-surface: #0d3470;
    --foreground: #ffffff;
    --primary: #ffd700;
    --primary-soft: #ffe566;
    --primary-foreground: #061d42;
    --muted: rgba(255, 255, 255, 0.55);
    --border: rgba(255, 255, 255, 0.1);
    --border-gold: rgba(255, 215, 0, 0.2);
    --glass: rgba(255, 255, 255, 0.04);
    --glass-hover: rgba(255, 255, 255, 0.08);
    --radius: 0.875rem;
    --radius-lg: 1.25rem;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    --shadow-gold: 0 0 40px rgba(255, 215, 0, 0.08);
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Noise texture overlay */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

/* ════════════════════════════════
   NAVIGATION
   ════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    background: rgba(6, 29, 66, 0);
    border-bottom: 1px solid transparent;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: padding 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                border-bottom-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                backdrop-filter 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                -webkit-backdrop-filter 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar.scrolled {
    padding: 0.6rem 0;
    background: rgba(6, 29, 66, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--foreground);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--foreground);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 0.6rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-soft);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

/* ════════════════════════════════
   BUTTONS
   ════════════════════════════════ */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 1rem 2rem;
    border-radius: 0.625rem;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-cta:hover {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.35);
}

.btn-cta:hover::before {
    opacity: 1;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--foreground);
    padding: 1rem 2rem;
    border-radius: 0.625rem;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid var(--border);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 215, 0, 0.05);
}

/* ════════════════════════════════
   HERO SECTION
   ════════════════════════════════ */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 6rem 1.5rem 3rem;
    background: url('hero-bg.png') center center / cover no-repeat scroll;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, rgba(6, 29, 66, 0.75) 0%, rgba(6, 29, 66, 0.65) 40%, rgba(6, 29, 66, 0.85) 100%);
    z-index: 1;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

/* Decorative lines */
.hero-bg-decor {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-line {
    position: absolute;
    background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.06), transparent);
    width: 1px;
}

.hero-line-1 { left: 20%; height: 100%; }
.hero-line-2 { left: 50%; height: 70%; top: 15%; }
.hero-line-3 { left: 80%; height: 100%; }

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.04) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.04em;
    margin-bottom: 2rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 14vw, 11rem);
    font-weight: 900;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    line-height: 0.85;
    letter-spacing: -0.04em;
}

.title-accent {
    color: var(--primary);
    position: relative;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3.5vw, 2rem);
    color: var(--foreground);
    margin-bottom: 1.25rem;
    font-weight: 300;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 2.5rem;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-actions .btn-cta {
    padding: 1.125rem 2.5rem;
    font-size: 1.05rem;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 48rem;
    margin: 0 auto;
}

.stat-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.35s ease;
}

.stat-card:hover {
    background: var(--glass-hover);
    border-color: var(--border-gold);
    transform: translateY(-3px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-wheel {
    width: 1.375rem;
    height: 2.25rem;
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 1.25rem;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-dot {
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollPulse 2.5s ease-in-out infinite;
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ════════════════════════════════
   FLEET SHOWCASE STRIP
   ════════════════════════════════ */
.fleet-strip {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 320px;
    max-height: 550px;
    overflow: hidden;
}

.fleet-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    display: block;
    transition: transform 8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fleet-strip:hover img {
    transform: scale(1.04);
}

.fleet-strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(6, 29, 66, 0.9) 0%,
        rgba(6, 29, 66, 0.3) 40%,
        rgba(6, 29, 66, 0.1) 70%,
        rgba(6, 29, 66, 0.25) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2.5rem 1.5rem;
}

.fleet-strip-content {
    text-align: center;
}

.fleet-strip-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.fleet-strip-title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: -0.02em;
}

/* ════════════════════════════════
   SECTION SHARED STYLES
   ════════════════════════════════ */
.section-accent-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

.section-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    display: block;
    margin-bottom: 0.75rem;
}

.heading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 3.5rem;
    text-align: center;
}

.heading-container p {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 38rem;
    margin: 0 auto;
    line-height: 1.6;
}

.heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--foreground);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* ════════════════════════════════
   SERVICES SECTION
   ════════════════════════════════ */
.services-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 50%, var(--bg) 100%);
}

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

.service-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    background: var(--glass-hover);
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow), var(--shadow-gold);
}

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

.service-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 215, 0, 0.06);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
    letter-spacing: -0.04em;
    pointer-events: none;
    transition: color 0.4s ease;
}

.service-card:hover .service-number {
    color: rgba(255, 215, 0, 0.12);
}

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

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.35s ease;
}

.service-card:hover .service-icon {
    background: rgba(255, 215, 0, 0.12);
    border-color: rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.service-description {
    color: var(--muted);
    font-size: 0.85rem;
    max-width: 280px;
    margin: 0 auto;
    line-height: 1.5;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-features {
    flex: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.4rem 0;
}

.feature-item i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.service-price {
    padding: 1rem 0 0.5rem;
    text-align: center;
}

.price-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.service-price small {
    color: var(--muted);
    font-size: 0.8rem;
}

.service-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.5rem;
}

.service-cta .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
}

/* Service badge */
.service-badge {
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--primary);
    padding: 0.3rem 1rem;
    border-radius: 100px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-block;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* ════════════════════════════════
   FULLSCREEN SPECIAL SERVICE
   ════════════════════════════════ */
.fullscreen-service {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.fullscreen-service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(6, 29, 66, 0.95) 0%,
        rgba(6, 29, 66, 0.88) 35%,
        rgba(6, 29, 66, 0.55) 60%,
        rgba(6, 29, 66, 0.2) 100%
    );
    z-index: 1;
}

/* Right-aligned variant: gradient from right */
.fullscreen-service--right .fullscreen-service-overlay {
    background: linear-gradient(
        -105deg,
        rgba(6, 29, 66, 0.95) 0%,
        rgba(6, 29, 66, 0.88) 35%,
        rgba(6, 29, 66, 0.55) 60%,
        rgba(6, 29, 66, 0.2) 100%
    );
}

.fullscreen-service-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 5rem 5vw;
}

.fullscreen-service--right .fullscreen-service-content {
    display: flex;
    justify-content: flex-end;
}

.fullscreen-service-inner {
    max-width: 560px;
}

.fullscreen-service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.fullscreen-service-icon i {
    font-size: 1.75rem;
    color: var(--primary);
}

.fullscreen-service-title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 900;
    color: var(--foreground);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.fullscreen-service-desc {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 440px;
}

.fullscreen-service-features {
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.fullscreen-service-features .feature-item {
    padding: 0.375rem 0;
}

.fullscreen-service-features .feature-item i {
    font-size: 1.15rem;
}

.fullscreen-service-features .feature-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.fullscreen-service-price {
    margin-bottom: 1.5rem;
}

.fullscreen-service-price .price-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.fullscreen-service-price small {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.fullscreen-service .btn-cta {
    padding: 1.125rem 2.5rem;
    font-size: 1.05rem;
}

/* ════════════════════════════════
   GALLERY SECTION
   ════════════════════════════════ */
.gallery-section {
    padding: 6rem 0;
    background: var(--bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: default;
}

.gallery-featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 29, 66, 0.9) 0%, rgba(6, 29, 66, 0.15) 40%, transparent 70%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    transition: background 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(6, 29, 66, 0.95) 0%, rgba(6, 29, 66, 0.25) 45%, transparent 75%);
}

.gallery-label {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.02em;
}

.gallery-featured .gallery-label {
    font-size: 1.1rem;
}

/* ════════════════════════════════
   TRUST SECTION
   ════════════════════════════════ */
.trust-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.trust-item {
    padding: 2rem 1.25rem;
    background: var(--glass);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.trust-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.4s ease;
}

.trust-item:hover {
    background: var(--glass-hover);
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.trust-item:hover::after {
    width: 40px;
}

.trust-icon-wrap {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.06);
    border: 1px solid rgba(255, 215, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.35s ease;
}

.trust-item:hover .trust-icon-wrap {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.25);
}

.trust-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.trust-item-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.trust-item-description {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.55;
}

/* ════════════════════════════════
   CTA BANNER
   ════════════════════════════════ */
.cta-banner {
    padding: 4rem 0;
    background: var(--bg-light);
}

.cta-banner-content {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.02) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.cta-banner-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.cta-banner-text h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--foreground);
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.cta-banner-text p {
    color: var(--muted);
    font-size: 1rem;
}

.cta-banner-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* ════════════════════════════════
   FOOTER
   ════════════════════════════════ */
.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

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

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--foreground);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--primary);
}

.footer-description {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
    max-width: 360px;
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 3rem;
    }

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

    .gallery-featured {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }

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

    .cta-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
    }

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

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-featured {
        grid-column: span 1;
        aspect-ratio: 16/9;
    }

    .fullscreen-service {
        min-height: 100vh;
        align-items: flex-end;
    }

    .fullscreen-service-overlay {
        background: linear-gradient(
            180deg,
            rgba(6, 29, 66, 0.2) 0%,
            rgba(6, 29, 66, 0.6) 40%,
            rgba(6, 29, 66, 0.95) 70%,
            rgba(6, 29, 66, 0.98) 100%
        ) !important;
    }

    .fullscreen-service-content {
        padding: 3rem 1.5rem 4rem;
    }

    .fullscreen-service--right .fullscreen-service-content {
        justify-content: flex-start;
    }

    .fullscreen-service-title {
        font-size: 2.5rem;
    }

    .fullscreen-service-desc {
        font-size: 1rem;
    }

    .fullscreen-service-price .price-value {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding: 4.5rem 1rem 2rem;
        min-height: auto;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.875rem;
        margin-bottom: 1.25rem;
    }

    .hero-title {
        font-size: clamp(2.75rem, 14vw, 4rem);
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 2rem;
    }

    .hero-actions .btn-cta,
    .hero-actions .btn-secondary {
        justify-content: center;
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .stat-card {
        padding: 0.75rem 0.375rem;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .scroll-indicator {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .heading {
        font-size: 1.75rem;
    }

    .heading-container p {
        font-size: 0.9rem;
    }

    .section-label {
        font-size: 0.7rem;
    }

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

    .trust-item {
        padding: 1.25rem 1rem;
    }

    .trust-item-title {
        font-size: 0.95rem;
    }

    .trust-item-description {
        font-size: 0.8rem;
    }

    .cta-banner-content {
        padding: 2rem 1.25rem;
    }

    .cta-banner-text h2 {
        font-size: 1.5rem;
    }

    .cta-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-banner-actions .btn-cta,
    .cta-banner-actions .btn-secondary {
        justify-content: center;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    .footer-contact-list {
        gap: 0.5rem;
    }

    .btn-cta {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

}
