/* ============================================================
   DESIGN TOKENS — Industrial Premium System
   Garage Door & Roller Shutter | Riyadh
   ============================================================ */
:root {
    /* Core Palette */
    --ink: #1a1918;
    --ink-soft: #2d2b29;
    --ink-muted: #6b6560;
    --ink-faint: #9b948d;

    /* Amber Accent — the ONE color */
    --amber: #c8922a;
    --amber-dark: #a67420;
    --amber-pale: #f5eddb;
    --amber-line: rgba(200, 146, 42, 0.25);

    /* Neutrals */
    --white: #fafaf8;
    --warm-100: #f4f1ec;
    --warm-200: #e8e4de;
    --warm-300: #d4cfc8;
    --warm-400: #b8b2aa;

    /* Dark surfaces */
    --dark: #111110;
    --dark-soft: #1e1d1b;
    --dark-card: #252320;
    --dark-line: rgba(255, 255, 255, 0.08);

    /* Functional */
    --green: #22c55e;
    --green-dark: #16a34a;

    /* Typography */
    --font: 'Cairo', sans-serif;

    /* Spacing scale */
    --sp-xs: 8px;
    --sp-sm: 16px;
    --sp-md: 32px;
    --sp-lg: 64px;
    --sp-xl: 96px;

    /* Radius — intentionally varied */
    --r-none: 0px;
    --r-xs: 3px;
    --r-sm: 6px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-pill: 9999px;

    /* Shadows */
    --sh-sm: 0 2px 8px rgba(0, 0, 0, .06);
    --sh-md: 0 8px 28px rgba(0, 0, 0, .10);
    --sh-lg: 0 20px 56px rgba(0, 0, 0, .14);
    --sh-xl: 0 32px 80px rgba(0, 0, 0, .18);

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --t-fast: 0.16s cubic-bezier(0.22, 1, 0.36, 1);
    --t-med: 0.30s cubic-bezier(0.22, 1, 0.36, 1);
    --t-slow: 0.50s cubic-bezier(0.22, 1, 0.36, 1);

    /* Legacy compat (used in lightbox / gallery JS-generated classes) */
    --gold: #c8922a;
    --gold-light: #e0a83a;
    --gold-bg: rgba(200, 146, 42, 0.08);
    --surface: #fafaf8;
    --surface-2: #f4f1ec;
    --surface-3: #e8e4de;
    --border: #e8e4de;
    --transition: all 0.30s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--ink);
    line-height: 1.65;
    direction: rtl;
    text-align: right;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img,
video {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   CONTAINERS
   ============================================================ */
.top-bar-container,
.header-container,
.hero-container,
.gallery-container,
.services-container,
.features-container,
.cta-container,
.keywords-container,
.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================================
   SECTION HEADER — editorial style, not centered always
   ============================================================ */
.section-header {
    margin-bottom: 56px;
}

.section-header .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
}

.section-header .eyebrow i {
    font-size: .65rem;
    opacity: .8;
}

.section-header h2 {
    font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    font-weight: 900;
    color: var(--ink);
    line-height: 1.18;
    margin-bottom: 14px;
    letter-spacing: -.02em;
}

.section-header h2 em {
    font-style: normal;
    color: var(--amber);
}

.section-header p {
    font-size: 1rem;
    color: var(--ink-muted);
    max-width: 560px;
    line-height: 1.75;
}

.section-header.align-right {
    text-align: right;
    margin-bottom: 40px;
}

.section-header.align-right p {
    margin: 0;
}

/* ============================================================
   TOP ANNOUNCEMENT BAR
   ============================================================ */
.top-announcement-bar {
    background: var(--dark);
    color: var(--warm-200);
    font-size: .80rem;
    padding: 10px 0;
    position: relative;
    z-index: 901;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.top-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--warm-200);
    font-size: .78rem;
    letter-spacing: .02em;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

.top-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-contacts a {
    color: var(--warm-300);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .79rem;
    font-weight: 600;
    transition: color var(--t-fast);
}

.top-contacts a:hover {
    color: var(--amber);
}

/* ============================================================
   STICKY HEADER
   ============================================================ */
.main-header {
    background: var(--dark);
    border-bottom: 1px solid var(--dark-line);
    position: sticky;
    top: 0;
    z-index: 900;
    transition: background var(--t-med);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon-box {
    width: 38px;
    height: 38px;
    background: var(--amber);
    border-radius: var(--r-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform var(--t-fast);
}

.logo-icon-box::after {
    display: none;
}

.logo:hover .logo-icon-box {
    transform: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: .97rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.01em;
}

.brand-sub {
    font-size: .68rem;
    color: var(--warm-400);
    font-weight: 500;
    letter-spacing: .02em;
}

/* Nav */
.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: .82rem;
    font-weight: 600;
    color: var(--warm-300);
    letter-spacing: .04em;
    position: relative;
    padding: 4px 0;
    transition: color var(--t-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 1px;
    background: var(--amber);
    transition: width var(--t-med);
}

.nav-link:hover {
    color: var(--white);
}

.nav-link:hover::after {
    width: 100%;
}

/* Header CTA buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-head-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--amber);
    color: #111110;
    padding: 9px 20px;
    border-radius: var(--r-xs);
    font-size: .83rem;
    font-weight: 800;
    transition: background var(--t-fast);
    text-decoration: none;
}

.btn-head-call:hover {
    background: var(--amber-dark);
}

.btn-head-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--warm-300);
    border: 1px solid var(--dark-line);
    padding: 9px 18px;
    border-radius: var(--r-xs);
    font-size: .83rem;
    font-weight: 700;
    transition: all var(--t-fast);
}

.btn-head-wa:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--warm-200);
    cursor: pointer;
    padding: 4px;
}

/* ============================================================
   HERO — Cinematic dark split, image-heavy, no floating cards
   ============================================================ */
.hero-section {
    position: relative;
    background: var(--dark);
    overflow: hidden;
    min-height: 580px;
    display: flex;
    align-items: stretch;
}

/* Remove the old decorative pseudo-elements */
.hero-section::before,
.hero-section::after {
    display: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
    z-index: 2;
    padding: 0;
    max-width: 100%;
    width: 100%;
}

.hero-content {
    order: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 56px 80px 40px;
    max-width: 620px;
}

/* Badge pill — minimal label, no background fill */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--amber);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: none;
    background: none;
    padding: 0;
    border-radius: 0;
}

.hero-badge-pill::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--amber);
    flex-shrink: 0;
}

.hero-badge-pill i {
    animation: none;
}

.hero-content h1 {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -.025em;
}

.highlight-gradient {
    color: var(--amber);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.hero-content p {
    font-size: .97rem;
    color: var(--warm-400);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 440px;
}

/* Guarantees — thin text list, no pills */
.hero-guarantees {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}

.guarantee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--warm-300);
    font-size: .83rem;
    font-weight: 600;
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
}

.guarantee-item i {
    color: var(--amber);
    font-size: .72rem;
    flex-shrink: 0;
}

/* Action buttons */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ============================================================
   BUTTONS — Multiple distinct styles
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--r-xs);
    font-size: .92rem;
    font-weight: 800;
    font-family: var(--font);
    border: none;
    cursor: pointer;
    transition: all var(--t-fast);
    position: relative;
    overflow: hidden;
    letter-spacing: .01em;
}

.btn::after {
    display: none;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

/* Primary — amber solid */
.btn-call {
    background: var(--amber);
    color: var(--dark);
    box-shadow: none;
}

.btn-call:hover {
    background: var(--amber-dark);
    box-shadow: none;
}

/* WhatsApp — green solid */
.btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: none;
}

.btn-whatsapp:hover {
    background: var(--green-dark);
}

/* Ghost — outline on dark */
.btn-secondary {
    background: transparent;
    color: var(--warm-300);
    border: 1px solid rgba(255,255,255,.18);
}

.btn-secondary:hover {
    background: rgba(255,255,255,.06);
    color: var(--white);
}

/* ============================================================
   HERO VISUAL — Full-height image, raw crop
   ============================================================ */
.hero-visual {
    order: 1;
    position: relative;
    overflow: hidden;
}

.hero-photo-template {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
}

/* Main image: full fill */
.photo-card-main {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
    overflow: hidden;
}

.photo-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s var(--ease);
    filter: brightness(.85) saturate(.9);
}

.hero-section:hover .photo-card-main img {
    transform: scale(1.03);
}

/* Diagonal overlay — adds depth */
.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, var(--dark) 0%, transparent 45%);
    pointer-events: none;
    z-index: 2;
}

/* Secondary card — hidden in new design */
.photo-card-secondary {
    display: none;
}

/* Remove old decorative line */
.hero-photo-template::before {
    display: none;
}

/* ============================================================
   GALLERY SECTION — Editorial dark header, frameless slides
   ============================================================ */
.gallery-section {
    padding: var(--sp-xl) 0;
    background: var(--warm-100);
    position: relative;
}

.gallery-container .section-header {
    padding: 0 0 0 0;
    border-bottom: 1px solid var(--warm-200);
    padding-bottom: 32px;
    margin-bottom: 48px;
}

.gallery-filter-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--warm-200);
}

.gallery-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--ink-muted);
    padding: 12px 24px;
    border-radius: 0;
    font-size: .83rem;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: all var(--t-fast);
    box-shadow: none;
    margin-bottom: -1px;
    letter-spacing: .04em;
}

.gallery-tab:hover {
    color: var(--ink);
    border-color: var(--warm-300);
    transform: none;
}

.gallery-tab.active {
    color: var(--amber);
    background: transparent;
    border-color: var(--amber);
    box-shadow: none;
}

.gallery-tab .tab-badge {
    background: var(--warm-200);
    color: var(--ink-muted);
    padding: 1px 7px;
    border-radius: var(--r-pill);
    font-size: .72rem;
    font-weight: 800;
}

.gallery-tab.active .tab-badge {
    background: var(--amber-pale);
    color: var(--amber-dark);
}

.gallery-tab:not(.active) .tab-badge {
    background: var(--warm-200);
    color: var(--ink-muted);
}

.gallery-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

.gallery-slider-viewport {
    overflow: hidden;
    border-radius: var(--r-none);
}

.gallery-slider-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.25, 1, .5, 1);
    will-change: transform;
}

.gallery-slide-item {
    flex: 0 0 calc(33.333% - 11px);
    max-width: calc(33.333% - 11px);
    cursor: pointer;
    border-radius: var(--r-none);
    overflow: hidden;
    background: var(--ink);
    border: none;
    box-shadow: none;
    transition: opacity var(--t-med);
    position: relative;
}

.gallery-slide-item:hover {
    transform: none;
    box-shadow: none;
    opacity: .92;
}

.gallery-media-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    background: var(--ink-soft);
}

.gallery-media-wrapper img,
.gallery-media-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
    filter: saturate(.92);
}

.gallery-slide-item:hover .gallery-media-wrapper img {
    transform: scale(1.04);
}

/* Media type badge — minimal */
.media-type-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, .6);
    color: var(--warm-300);
    font-size: .70rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--r-xs);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, .1);
    letter-spacing: .04em;
}

.video-play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: rgba(200, 146, 42, .9);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: transform var(--t-fast), background var(--t-fast);
    z-index: 2;
    padding-right: 3px;
    box-shadow: none;
}

.gallery-slide-item:hover .video-play-btn-overlay {
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--amber-dark);
}

.gallery-overlay-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .75) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    transition: opacity var(--t-med);
    z-index: 2;
}

.gallery-slide-item:hover .gallery-overlay-hover {
    opacity: 1;
}

.slide-caption {
    color: var(--warm-200);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
}

/* Slider nav buttons */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--warm-200);
    border-radius: var(--r-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--sh-sm);
    transition: all var(--t-fast);
    z-index: 10;
}

.slider-nav-btn:hover {
    background: var(--amber);
    color: var(--dark);
    border-color: var(--amber);
    transform: translateY(-50%);
}

.slider-nav-prev {
    left: 0;
}

.slider-nav-next {
    right: 0;
}

/* Dots */
.slider-dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 36px;
}

.slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--warm-300);
    cursor: pointer;
    transition: all var(--t-fast);
}

.slider-dot.active {
    width: 24px;
    border-radius: var(--r-pill);
    background: var(--amber);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, .95);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .24s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    display: block;
    max-width: 100%;
    max-height: 82vh;
    border-radius: var(--r-sm);
    box-shadow: var(--sh-xl);
    transform: scale(.96);
    transition: transform .24s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    color: var(--warm-300);
    font-size: 22px;
    cursor: pointer;
    z-index: 10002;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border-radius: var(--r-xs);
    transition: background var(--t-fast), color var(--t-fast);
}

.lightbox-close:hover {
    background: var(--amber);
    color: var(--dark);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .08);
    color: var(--warm-300);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: var(--r-xs);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast);
    z-index: 10001;
}

.lightbox-nav:hover {
    background: var(--amber);
    color: var(--dark);
}

.lightbox-prev {
    left: 32px;
}

.lightbox-next {
    right: 32px;
}

/* ============================================================
   SERVICES SECTION — Mixed layouts, not identical cards
   ============================================================ */
.services-section {
    padding: var(--sp-xl) 0;
    background: var(--white);
}

/* Override: make section header left-aligned */
.services-section .section-header {
    border-bottom: 1px solid var(--warm-200);
    padding-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.services-section .section-header p {
    margin: 0;
}

/* 
    Service grid: 
    - Card 1 (shutter windows) → full-width horizontal strip
    - Cards 2-5 → 2-column, horizontal list items with left accent border
*/
.services-grid-clean {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Card 1 — Featured/Hero service strip (dark horizontal bar) */
.service-card-clean:first-child {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border: none;
    border-radius: 0;
    padding: 0;
    background: var(--dark);
    overflow: hidden;
    margin-bottom: 1px;
    position: relative;
}

/* Icon slab on first card */
.service-card-clean:first-child .service-icon {
    width: 220px;
    min-width: 220px;
    min-height: 200px;
    background: var(--amber);
    border-radius: 0;
    border: none;
    font-size: 3.5rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    flex-shrink: 0;
}

.service-card-clean:first-child .service-content-inner {
    display: contents;
}

/* First card: content wrapper */
.service-card-clean:first-child>*:not(.service-icon) {
    display: block;
}

.service-card-clean:first-child h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 10px;
    padding: 32px 32px 0;
}

.service-card-clean:first-child .service-text {
    color: var(--warm-400);
    padding: 0 32px;
    font-size: .90rem;
}

.service-card-clean:first-child .service-list {
    padding: 0 32px;
    margin-bottom: 16px;
    flex-grow: 1;
}

.service-card-clean:first-child .service-list li {
    color: var(--warm-300);
}

.service-card-clean:first-child .service-list li i {
    color: var(--amber);
}

.service-card-clean:first-child .service-link {
    margin: 0 32px 28px;
    width: calc(100% - 64px);
    background: var(--amber);
    color: var(--dark);
    border: none;
    border-radius: var(--r-xs);
    font-weight: 800;
    flex-shrink: 0;
    flex-grow: 0;
}

.service-card-clean:first-child .service-link:hover {
    background: var(--amber-dark);
}

.service-card-clean:first-child:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
    background: var(--dark);
}

.service-card-clean:first-child::before {
    display: none;
}

/* Remaining cards: 2-column horizontal list style */
.services-grid-clean:not(.legacy) .service-card-clean:not(:first-child) {
    background: var(--white);
    border: none;
    border-radius: 0;
    padding: 32px 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0 24px;
    align-items: center;
    border-bottom: 1px solid var(--warm-200);
    transition: background var(--t-fast);
}

.service-card-clean:not(:first-child) {
    background: var(--white);
    border: none;
    border-radius: 0;
    padding: 32px 0;
    border-bottom: 1px solid var(--warm-200);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    transition: background var(--t-fast);
    position: relative;
    overflow: visible;
}

.service-card-clean:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 3px;
    background: var(--warm-200);
    transition: background var(--t-fast);
    opacity: 1;
    height: auto;
    width: 3px;
    left: auto;
    border-radius: 0;
}

.service-card-clean:not(:first-child):hover::before {
    background: var(--amber);
    opacity: 1;
}

.service-card-clean:not(:first-child):hover {
    transform: none;
    background: var(--warm-100);
    box-shadow: none;
    border-color: var(--warm-200);
}

/* Icon for non-first cards */
.service-card-clean:not(:first-child) .service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-xs);
    background: var(--warm-100);
    border: 1px solid var(--warm-200);
    color: var(--amber);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    flex-shrink: 0;
    transition: all var(--t-fast);
}

.service-card-clean:not(:first-child):hover .service-icon {
    background: var(--amber);
    color: var(--dark);
    border-color: var(--amber);
}

/* Service content for non-first cards */
.service-card-clean:not(:first-child) h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 6px;
}

.service-card-clean:not(:first-child) .service-text {
    font-size: .86rem;
    color: var(--ink-muted);
    margin-bottom: 12px;
}

.service-card-clean:not(:first-child) .service-list {
    margin-bottom: 16px;
}

.service-card-clean:not(:first-child) .service-list li {
    color: var(--ink-soft);
}

/* Service link for non-first cards */
.service-card-clean:not(:first-child) .service-link {
    width: auto;
    display: inline-flex;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--warm-200);
    border-radius: var(--r-xs);
    color: var(--ink);
    font-size: .80rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 4px;
    transition: all var(--t-fast);
}

.service-card-clean:not(:first-child):hover .service-link {
    background: var(--amber);
    color: var(--dark);
    border-color: var(--amber);
}

/* General service-list styles */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    flex-grow: 1;
}

.service-list li {
    font-size: .84rem;
    color: var(--ink-soft);
    margin-bottom: 7px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 600;
    line-height: 1.5;
}

.service-list li i {
    color: var(--amber);
    font-size: .68rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* General service-link */
.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 16px;
    background: var(--warm-100);
    border: 1px solid var(--warm-200);
    border-radius: var(--r-xs);
    color: var(--ink);
    font-weight: 800;
    font-size: .84rem;
    transition: all var(--t-fast);
}

/* Service text */
.service-text {
    font-size: .87rem;
    color: var(--ink-muted);
    margin-bottom: 14px;
    line-height: 1.65;
}

/* ============================================================
   FEATURES / WHY CHOOSE US — Editorial split, numbered list
   ============================================================ */
.features-section {
    padding: var(--sp-xl) 0;
    background: var(--dark);
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.features-img {
    position: relative;
    height: 480px;
    border-radius: var(--r-none);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: none;
}

/* Remove default overlay */
.features-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .6) 100%);
}

/* Remove floating badge boxes */
.feature-badge-box {
    display: none;
}

.features-tech-card {
    display: none;
}

/* Content side */
.features-content .section-header {
    margin-bottom: 40px;
    align-items: flex-start;
}

.features-content .section-header h2 {
    color: var(--white);
}

.features-content .section-header p {
    color: var(--warm-400);
}

/* Numbered editorial list */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid var(--dark-line);
}

.feature-item:first-child {
    border-top: 1px solid var(--dark-line);
}

/* Feature icon — amber icon on dark bg */
.feature-item .fi-icon {
    width: 40px;
    height: 40px;
    background: rgba(200, 146, 42, 0.12);
    border: 1px solid rgba(200, 146, 42, 0.2);
    border-radius: var(--r-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--amber);
    flex-shrink: 0;
    transition: all var(--t-fast);
}

.feature-item:hover .fi-icon {
    background: rgba(200, 146, 42, 0.2);
    border-color: rgba(200, 146, 42, 0.35);
    color: var(--amber);
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}

.feature-item p {
    font-size: .86rem;
    color: var(--warm-400);
    line-height: 1.7;
}

.feature-item>i {
    display: none;
}

/* ============================================================
   CTA BANNER — Dark emergency section, bold, urgent
   ============================================================ */
.cta-banner {
    background: var(--amber);
    padding: 72px 0;
    text-align: right;
    position: relative;
    overflow: hidden;
}

/* Remove decorative blobs */
.cta-banner::before,
.cta-banner::after {
    display: none;
}

/* Diagonal texture line — subtle structural element */
.cta-banner .cta-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60px;
    bottom: 0;
    width: 1px;
    background: rgba(0, 0, 0, .12);
    transform: skewX(-15deg);
}

.cta-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-banner h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.5rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -.025em;
}

.cta-banner p {
    font-size: .97rem;
    color: rgba(0, 0, 0, .6);
    margin-bottom: 0;
    max-width: 440px;
    margin-left: 0;
    margin-right: 0;
}

.cta-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    flex-shrink: 0;
}

/* Override btn-call in amber bg context */
.cta-banner .btn-call {
    background: var(--dark);
    color: var(--white);
    box-shadow: none;
    white-space: nowrap;
    border-radius: var(--r-xs);
}

.cta-banner .btn-call:hover {
    background: var(--ink-soft);
}

/* ============================================================
   SCOPE / KEYWORDS — Bordered cells, editorial grid
   ============================================================ */
.keywords-section {
    padding: var(--sp-xl) 0;
    background: var(--white);
}

.keywords-section .section-header {
    border-bottom: 1px solid var(--warm-200);
    padding-bottom: 32px;
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--warm-200);
}

/* Scope cards: bordered cells, no background fill, left accent */
.scope-card {
    background: var(--white);
    border: none;
    border-radius: 0;
    border-left: 1px solid var(--warm-200);
    border-bottom: 1px solid var(--warm-200);
    padding: 36px 28px;
    transition: background var(--t-fast);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.scope-card:nth-child(3n + 1) {
    border-left: none;
}

/* Remove bottom border from last row */
.scope-card:nth-last-child(-n+3) {
    border-bottom: none;
}

/* Amber left accent line on hover */
.scope-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 3px;
    background: var(--amber);
    opacity: 0;
    transition: opacity var(--t-fast);
    height: 100%;
}

.scope-card:hover {
    background: var(--warm-100);
    border-color: var(--warm-200);
    box-shadow: none;
    transform: none;
}

.scope-card:hover::after {
    opacity: 1;
}

/* Scope card header */
.scope-card-header {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 16px;
    flex-direction: column;
}

.scope-icon-box {
    width: 36px;
    height: 36px;
    background: var(--amber-pale);
    border: none;
    border-radius: var(--r-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-dark);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all var(--t-fast);
    margin-bottom: 16px;
}

.scope-card:hover .scope-icon-box {
    background: var(--amber);
    color: var(--dark);
    border-color: transparent;
}

.scope-title {
    font-size: .97rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.3;
    letter-spacing: -.01em;
}

.scope-description {
    font-size: .83rem;
    color: var(--ink-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.scope-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.scope-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .80rem;
    color: var(--ink-soft);
    font-weight: 600;
    line-height: 1.5;
}

.scope-features-list li i {
    color: var(--amber);
    font-size: .65rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    padding: 96px 0;
    background: var(--dark);
    border-top: 1px solid var(--dark-line);
}

.faq-section .section-header h2 {
    color: var(--white);
}

.faq-section .section-header p {
    color: var(--warm-400);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--dark-card);
    border: 1px solid var(--dark-line);
    border-radius: var(--r-sm);
    overflow: hidden;
    transition: all var(--t-fast);
}

.faq-item[open] {
    background: var(--dark-soft);
    border-color: var(--amber);
    box-shadow: var(--sh-sm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    list-style: none; /* Hide default arrow in webkit */
}

/* Hide default details marker */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question i {
    color: var(--warm-400);
    transition: transform var(--t-med);
    font-size: .9rem;
}

.faq-item[open] .faq-question i {
    transform: rotate(180deg);
    color: var(--amber);
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--warm-300);
    font-size: .95rem;
    line-height: 1.8;
}

.faq-answer p {
    margin: 0;
}

/* ============================================================
   FOOTER — Dark, clean, single-line
   ============================================================ */
.main-footer {
    background: var(--dark);
    color: var(--warm-400);
    padding: 32px 0;
    text-align: center;
    font-size: .82rem;
    border-top: 1px solid var(--dark-line);
}

.main-footer p {
    margin-bottom: 0;
}

.main-footer a {
    color: var(--amber);
    font-weight: 600;
    transition: color var(--t-fast);
}

.main-footer a:hover {
    color: var(--amber-dark);
}

/* Developer credit */
.developer-credit {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    background: none;
    border: 1px solid var(--dark-line);
    padding: 8px 20px;
    border-radius: var(--r-xs);
    font-size: .78rem;
}

.developer-credit span {
    color: var(--warm-400);
}

.dev-link {
    color: var(--warm-300) !important;
    font-weight: 500 !important;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color var(--t-fast);
}

.dev-link strong {
    color: var(--amber) !important;
    font-weight: 700;
}

.dev-link:hover {
    color: var(--amber) !important;
    transform: none;
}

.dev-link:hover strong {
    color: var(--amber-dark) !important;
}

.developer-credit .divider {
    color: var(--dark-line) !important;
}

.dev-wa-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 211, 102, .15);
    color: var(--green) !important;
    padding: 4px 12px;
    border-radius: var(--r-xs);
    font-weight: 700 !important;
    font-size: .76rem;
    box-shadow: none;
    border: 1px solid rgba(37, 211, 102, .2);
    transition: all var(--t-fast);
}

.dev-wa-link:hover {
    background: var(--green);
    color: var(--white) !important;
    transform: none;
}

/* ============================================================
   FLOATING FABs
   ============================================================ */
.floating-fab-container {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 8888;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.fab-btn {
    width: 52px;
    height: 52px;
    border-radius: var(--r-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.3rem;
    transition: transform var(--t-fast), box-shadow var(--t-fast);
    box-shadow: var(--sh-md);
}

.fab-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--sh-lg);
}

.fab-whatsapp {
    background: #25d366;
    color: #fff;
    animation: none;
    box-shadow: var(--sh-md);
}

.fab-call {
    background: var(--amber);
    color: var(--dark);
    animation: none;
    box-shadow: var(--sh-md);
}

/* Remove old pulsing animations on FABs */
@keyframes fab-pulse-g {

    from,
    to {
        box-shadow: var(--sh-md);
    }
}

/* Mobile sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: var(--dark);
    padding: 12px 20px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, .2);
    border-top: 1px solid var(--dark-line);
}

.btn-sticky {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--amber);
    color: var(--dark);
    padding: 14px;
    border-radius: var(--r-xs);
    font-weight: 800;
    font-size: 1rem;
    box-shadow: none;
    transition: background var(--t-fast);
}

.btn-sticky:hover {
    background: var(--amber-dark);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .hero-container {
        gap: 0;
    }

    .features-container {
        gap: 56px;
    }

    .scope-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Adjust last-row border removal for 2-col */
    .scope-card:nth-last-child(-n+3) {
        border-bottom: 1px solid var(--warm-200);
    }

    .scope-card:nth-last-child(-n+2) {
        border-bottom: none;
    }

    /* Reset 3-col nth-child border logic */
    .scope-card:nth-child(3n + 1) {
        border-left: 1px solid var(--warm-200);
    }

    .scope-card:nth-child(2n + 1) {
        border-left: none;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        order: 2;
        padding: 60px 40px;
        max-width: 100%;
    }

    .hero-visual {
        order: 1;
    }

    .hero-photo-template {
        min-height: 360px;
    }

    .hero-visual::after {
        background: linear-gradient(180deg, transparent 40%, var(--dark) 100%);
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .features-img {
        height: 380px;
    }

    .features-content {
        padding: 56px 0 0;
    }

    .features-content .section-header.align-right {
        text-align: right;
    }

    .gallery-slide-item {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .cta-banner {
        text-align: right;
    }
}

@media (max-width: 900px) {

    /* Service card layout adjustments */
    .service-card-clean:first-child {
        grid-template-columns: 1fr;
    }

    .service-card-clean:first-child .service-icon {
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        min-height: 120px;
        font-size: 3rem;
    }

    .service-card-clean:first-child h3 {
        padding: 24px 24px 0;
    }

    .service-card-clean:first-child .service-text,
    .service-card-clean:first-child .service-list {
        padding: 0 24px;
    }

    .service-card-clean:first-child .service-link {
        margin: 0 24px 24px;
        width: calc(100% - 48px);
    }

    /* Non-first service cards become simpler */
    .service-card-clean:not(:first-child) {
        flex-direction: column;
        gap: 16px;
    }

    .service-card-clean:not(:first-child) .service-link {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {

    /* Announcement bar */
    .top-contacts {
        display: none;
    }

    .top-bar-container {
        justify-content: center;
    }

    /* Header */
    .header-container {
        height: 60px;
        padding: 0 16px;
    }

    .header-nav {
        display: none;
    }

    .btn-head-wa {
        display: none;
    }

    .btn-head-call {
        padding: 8px 14px;
        font-size: .78rem;
    }

    .brand-sub {
        display: none;
    }

    .logo-icon-box {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

    /* Hero */
    .hero-section {
        min-height: auto;
    }

    .hero-content {
        padding: 48px 24px 56px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: .91rem;
    }

    .hero-photo-template {
        min-height: 280px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    /* Gallery */
    .gallery-section {
        padding: 64px 0;
    }

    .gallery-slider-wrapper {
        padding: 0;
    }

    .slider-nav-btn {
        display: none;
    }

    .gallery-slide-item {
        flex: 0 0 87%;
        max-width: 87%;
    }

    /* Services */
    .services-section {
        padding: 64px 0;
    }

    /* Features */
    .features-section {
        padding: 64px 0;
    }

    .features-img {
        height: 300px;
    }

    .features-content {
        padding: 40px 0 0;
    }

    /* CTA */
    .cta-banner {
        padding: 56px 0;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }

    .cta-buttons {
        width: 100%;
    }

    .cta-banner .btn-call {
        width: 100%;
        justify-content: center;
    }

    /* Scope */
    .keywords-section {
        padding: 64px 0;
    }

    .scope-grid {
        grid-template-columns: 1fr;
        border: 1px solid var(--warm-200);
    }

    .scope-card {
        border-left: none;
        border-bottom: 1px solid var(--warm-200);
    }

    .scope-card:last-child {
        border-bottom: none;
    }

    .scope-card:nth-child(3n + 1) {
        border-left: none;
    }

    .scope-card:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--warm-200);
    }

    .scope-card:last-child {
        border-bottom: none;
    }

    /* Lightbox */
    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }

    .lightbox-close {
        top: 16px;
        right: 16px;
        width: 38px;
        height: 38px;
    }

    .lightbox-nav {
        width: 44px;
        height: 44px;
    }

    /* Floating FABs */
    .floating-fab-container {
        bottom: 90px;
        left: 16px;
    }

    body {
        padding-bottom: 72px;
    }

    .mobile-sticky-cta {
        display: block;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: .87rem;
    }

    .logo-icon-box {
        width: 32px;
        height: 32px;
        font-size: .9rem;
    }

    .btn-head-call {
        padding: 7px 11px;
        font-size: .74rem;
    }

    .hero-content {
        padding: 40px 16px 48px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .gallery-slide-item {
        flex: 0 0 93%;
        max-width: 93%;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .gallery-filter-tabs {
        gap: 0;
    }

    .gallery-tab {
        padding: 10px 16px;
        font-size: .76rem;
    }

    .top-bar-container,
    .header-container,
    .hero-container,
    .gallery-container,
    .services-container,
    .features-container,
    .cta-container,
    .keywords-container,
    .footer-container {
        padding: 0 16px;
    }
}

/* --- Premium Auto-Calling Modal --- */
.calling-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
}

.calling-modal.active {
    opacity: 1;
    visibility: visible;
}

.calling-modal-backdrop {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.calling-modal-card {
    position: relative;
    width: 100%;
    max-width: 360px;
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid rgba(200, 146, 42, 0.3);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(200, 146, 42, 0.15);
    color: #ffffff;
    z-index: 10;
}

.calling-modal.active .calling-modal-card {
    transform: translateY(0);
}

.calling-modal-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(200, 146, 42, 0.3);
    z-index: 2;
}

.calling-modal-icon i {
    animation: calling-wiggle 1.8s ease-in-out infinite;
}

.calling-modal-pulse-ring,
.calling-modal-pulse-ring-two {
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    border: 2px solid var(--amber);
    border-radius: 50%;
    opacity: 0;
    animation: calling-pulse 1.8s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    z-index: -1;
}

.calling-modal-pulse-ring-two {
    animation-delay: 0.9s;
}

.calling-modal-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: 'Cairo', sans-serif;
}

.calling-modal-subtitle {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 16px;
}

.calling-modal-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--amber);
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    color: #000000;
    font-size: 1rem;
    font-weight: 800;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 15px rgba(200, 146, 42, 0.4);
}

.calling-modal-location i {
    color: #000000;
}

.calling-modal-progress-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.calling-modal-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--amber) 0%, var(--amber-pale) 100%);
    border-radius: 10px;
    transition: width 5s linear;
}

.calling-modal-phone {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--amber);
    direction: ltr;
    margin-bottom: 28px;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(200, 146, 42, 0.2);
}

.calling-modal-skip-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.calling-modal-skip-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

@keyframes calling-wiggle {
    0%, 100% { transform: rotate(0); }
    15% { transform: rotate(-15deg); }
    30% { transform: rotate(15deg); }
    45% { transform: rotate(-10deg); }
    60% { transform: rotate(10deg); }
    75% { transform: rotate(-5deg); }
    90% { transform: rotate(5deg); }
}

@keyframes calling-pulse {
    0% { transform: scale(0.85); opacity: 0.5; }
    50% { opacity: 0.3; }
    100% { transform: scale(1.4); opacity: 0; }
}