/* =====================================================
   JUASUN ARTS GALLERY — DESIGN SYSTEM
   Modern, premium, classy UI
   ===================================================== */

:root {
    /* Brand colours */
    --bg: #ffffff;
    --surface: #f8fafc;
    --surface-soft: #f1f5f9;
    --surface-glass: rgba(255, 255, 255, 0.85);

    --text: #16161D;
    --muted: #64748b;
    --muted-light: #94a3b8;

    --primary: #16161D;
    --primary-dark: #000000;
    --primary-light: #2d2d3a;
    --primary-glow: rgba(22, 22, 29, 0.18);

    --secondary: #ff6600;
    --secondary-dark: #cc5200;
    --secondary-light: #ff8533;

    --accent: #ff6600;
    --accent-soft: rgba(255, 102, 0, 0.12);

    --dark: #16161D;
    --dark-2: #1e2028;
    --border: #e2e8f0;
    --border-light: #f1f5f9;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(22, 22, 29, 0.06);
    --shadow: 0 8px 32px rgba(22, 22, 29, 0.09);
    --shadow-lg: 0 20px 60px rgba(22, 22, 29, 0.13);
    --shadow-orange: 0 12px 40px rgba(255, 102, 0, 0.22);

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #16161D 0%, #2d2d3a 100%);
    --grad-secondary: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
    --grad-dark: linear-gradient(135deg, #000000 0%, #16161D 100%);
    --grad-hero: linear-gradient(135deg, #16161D 0%, #000000 100%);
    --grad-surface: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);

    /* Spacing */
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 26px;
    --radius-xl: 36px;

    /* Typography */
    --font-body: 'Nunito', sans-serif;
    --font-heading: 'Nunito', sans-serif;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ──────────────────────────────────────
   RESET & BASE
   ────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--grad-surface);
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* ──────────────────────────────────────
   WRAPPER
   ────────────────────────────────────── */
.wrapper {
    width: 100%;
    overflow: hidden;
}

/* ──────────────────────────────────────
   TOPBAR
   ────────────────────────────────────── */
.topbar {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    padding: 7px 24px;
    letter-spacing: 0.01em;
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}

.topbar-inner span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.topbar-inner span i {
    color: var(--secondary-light);
    font-size: 0.85rem;
}

/* ──────────────────────────────────────
   SITE HEADER / NAVBAR
   ────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(22, 22, 29, 0.10);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-block img {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 14px rgba(22, 22, 29, 0.15);
}

.logo-block strong {
    display: block;
    color: var(--dark);
    font-size: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.logo-block small {
    color: var(--muted);
    font-size: 0.77rem;
    letter-spacing: 0.03em;
}

.menu-links {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
    margin-right: 12px;
}

.menu-links a {
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
    position: relative;
}

.menu-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: transform 0.25s var(--ease);
}

.menu-links a:hover,
.menu-links a.active {
    background: rgba(255, 102, 0, 0.08);
    color: var(--secondary);
}

.menu-links a:hover::after,
.menu-links a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    position: relative;
}

.nav-dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 60%;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.25s var(--ease);
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active,
.nav-dropdown.open .nav-dropdown-toggle {
    background: rgba(255, 102, 0, 0.08);
    color: var(--secondary);
}

.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle.active::after,
.nav-dropdown.open .nav-dropdown-toggle::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-dropdown-toggle i {
    transition: transform 0.2s var(--ease);
}

.nav-dropdown.open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    min-width: 210px;
    padding: 8px;
    transform: translate(-50%, -6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
    z-index: 110;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--muted);
    font-size: 0.86rem;
    white-space: nowrap;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background: var(--accent-soft);
    color: var(--secondary);
}

.quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 20px;
    border-radius: 999px;
    background: var(--grad-primary);
    color: white;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: var(--shadow-orange);
    transition: transform 0.2s var(--ease-bounce), box-shadow 0.2s;
    flex-shrink: 0;
}

.quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(255, 102, 0, 0.32);
}

.mobile-toggle {
    display: none;
    border: 0;
    background: var(--surface-soft);
    color: var(--text);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

.mobile-toggle:hover {
    background: var(--border);
}

/* ──────────────────────────────────────
   MAIN CONTENT WRAPPER
   ────────────────────────────────────── */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 24px 40px;
}

/* ──────────────────────────────────────
   PAGE HERO BANNER (inner pages)
   ────────────────────────────────────── */
.page-hero {
    background: var(--grad-hero);
    color: white;
    padding: 64px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(255, 102, 0, 0.35) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(255, 124, 36, 0.2) 0%, transparent 70%);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--bg);
    clip-path: ellipse(60% 100% at 50% 100%);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero .eyebrow {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 14px;
    color: white;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    max-width: 540px;
    margin: 0 auto;
}

/* ──────────────────────────────────────
   HOMEPAGE HERO (Full Width Overlay)
   ────────────────────────────────────── */
.hero.full-width-hero {
    padding: 0;
    position: relative;
    margin-top: -1px;
    /* To prevent tiny gaps if any */
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero.full-width-hero .hero-slider-wrap {
    width: 100%;
    height: 85vh;
    min-height: 600px;
    max-height: 800px;
    position: relative;
}

.hero.full-width-hero .slider-container {
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
}

.hero.full-width-hero .slider-track,
.hero.full-width-hero .slide {
    height: 100%;
}

.hero.full-width-hero .slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 1;
    transform: scale(1.03);
    filter: blur(3px) saturate(0.9) brightness(0.86);
}

/* Gradient Overlay on Image for text readability */
.hero.full-width-hero .slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(22, 22, 29, 0.84) 0%, rgba(22, 22, 29, 0.52) 42%, rgba(22, 22, 29, 0.12) 100%);
    z-index: 1;
}

/* Remove internal caption since overlay is used */
.hero.full-width-hero .slide-caption {
    display: none;
}

/* ──────────────────────────────────────
   HERO CONTENT OVERLAY
   ────────────────────────────────────── */
.hero-overlay-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    pointer-events: none;
    /* Let clicks pass through except on the card */
}

.hero-content-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 44px;
    border-radius: var(--radius-lg);
    max-width: 580px;
    box-shadow: var(--shadow-lg);
    pointer-events: auto;
    /* Re-enable clicks inside the card */
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content-card h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.6vw, 3.2rem);
    line-height: 1.15;
    margin: 0 0 16px;
    color: var(--dark);
}

.hero-content-card .hero-desc {
    margin: 0 0 26px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.btn.glass-btn {
    background: rgba(22, 22, 29, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(22, 22, 29, 0.1);
    color: var(--dark);
}

.btn.glass-btn:hover {
    background: rgba(22, 22, 29, 0.08);
}

/* ──────────────────────────────────────
   HOME STATS STRIP
   ────────────────────────────────────── */
.home-stats-band {
    padding: 32px 0 25px;
    margin-top: 10px;
    border-top: 1px solid rgba(17, 24, 39, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.home-stats-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 14px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
}

.home-stat-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(17, 24, 39, 0.05);
    border-radius: 28px;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
    padding: 18px 22px;
}

.home-stat-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
}

.home-stat-icon {
    font-size: 2.4rem;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(249, 115, 22, 0.15));
    flex-shrink: 0;
}

.home-stat-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.home-stat-number {
    display: block;
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
    font-family: var(--font-heading);
    margin-bottom: 2px;
}

.home-stat-label {
    color: rgba(31, 41, 55, 0.8);
    font-size: 1.05rem;
    font-weight: 600;
}

/* ──────────────────────────────────────
   EYEBROW LABEL
   ────────────────────────────────────── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 700;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}

/* ──────────────────────────────────────
   BUTTONS
   ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: transform 0.2s var(--ease-bounce), box-shadow 0.2s;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--grad-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    box-shadow: 0 15px 40px rgba(22, 22, 29, 0.25);
}

.btn-secondary {
    background: white;
    color: var(--dark);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    box-shadow: var(--shadow-orange);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: white;
    color: var(--secondary);
    border-color: white;
}

/* ──────────────────────────────────────
   SLIDESHOW (Fully Visible Showcase)
   ────────────────────────────────────── */
.hero-slider-wrap {
    position: relative;
    width: 100%;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    background: #16161D;
    box-shadow: var(--shadow-lg);
    height: 480px;
    width: 100%;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.55s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #16161D;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 50px;
    left: 20px;
    right: 20px;
    z-index: 3;
    pointer-events: none;
}

.slide-caption span {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(22, 22, 29, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.slider-controls {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 14px;
    z-index: 10;
}

.slider-arrow {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--dark);
    font-size: 1.4rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s var(--ease-bounce), background 0.2s, color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    transform: scale(1.12);
    background: white;
    color: var(--secondary);
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 999px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.slider-dot.active {
    background: var(--secondary);
    width: 22px;
    border-radius: 4px;
}

/* ──────────────────────────────────────
   SECTIONS (cards/panels)
   ────────────────────────────────────── */
/* ──────────────────────────────────────
   CONTENT SECTIONS
   Common card/panel styling used across homepage blocks
   ────────────────────────────────────── */
.section {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    margin-top: 22px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 24px;
}

.section-heading h2 {
    font-family: var(--font-heading);
    margin: 0;
    color: var(--dark);
    font-size: 1.6rem;
    line-height: 1.2;
}

.section-heading p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

/* ──────────────────────────────────────
   ABOUT SECTION (homepage)
   ────────────────────────────────────── */
/* ──────────────────────────────────────
   ABOUT SECTION
   Full-width presentation block with text and SVG artwork
   ────────────────────────────────────── */
.about-grid {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
    border-left: none;
    border-right: none;
    padding: 40px 24px;
    background: linear-gradient(180deg, rgba(245, 245, 247, 0.96) 0%, rgba(255, 255, 255, 1) 100%);
}

.about-grid-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.about-card {
    background: linear-gradient(135deg, #fffaf5 0%, #fff 100%);
    padding: 18px;
    border-radius: var(--radius-lg);
    color: white;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 138, 61, 0.12);
    box-shadow: 0 18px 48px rgba(30, 41, 59, 0.08);
}

.about-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 143, 76, 0.10);
}

.about-photo-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 320px;
    border-radius: 24px;
    overflow: hidden;
    background: #f4efe9;
    border: 1px solid rgba(255, 138, 61, 0.14);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

.about-photo {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    filter: saturate(1.06) contrast(1.02);
}

.about-photo-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(10, 18, 22, 0.68);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.about-list {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.about-list div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 0.95rem;
}

.about-list b {
    color: var(--secondary);
    font-size: 1rem;
    margin-top: 1px;
    flex-shrink: 0;
}

/* ──────────────────────────────────────
   SERVICE CARDS (homepage)
   ────────────────────────────────────── */
/* ──────────────────────────────────────
   SERVICES SECTION
   Full-width showcase for the 5 service cards
   ────────────────────────────────────── */
.services-full-bleed {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 245, 247, 0.98) 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 36px 80px 42px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.services-full-inner {
    max-width: 1440px;
    margin: 0 auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
    cursor: pointer;
    min-height: 430px;
    box-shadow: 0 10px 26px rgba(17, 24, 39, 0.04);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.08);
    border-color: rgba(255, 102, 0, 0.25);
}

.service-visual {
    position: relative;
    height: 210px;
    overflow: hidden;
    border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.service-visual::before,
.service-visual::after {
    content: "";
    position: absolute;
    display: block;
}

.service-visual--decor {
    background: linear-gradient(180deg, #efe2d5 0%, #d7b69a 38%, #c68246 100%);
}

.service-visual--decor::before {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0 18%, rgba(90, 64, 52, 0.3) 18% 19%, transparent 19% 100%),
        linear-gradient(180deg, transparent 0 62%, rgba(91, 61, 44, 0.2) 62% 100%);
}

.service-visual--decor::after {
    left: 10%;
    right: 10%;
    bottom: 12%;
    height: 28%;
    background: linear-gradient(90deg, rgba(172, 97, 52, 0.9), rgba(100, 58, 38, 0.7), rgba(183, 120, 72, 0.92));
    border-radius: 12px 12px 0 0;
    box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.16);
}

.service-visual--engraving {
    background: linear-gradient(180deg, #1d1d1d 0%, #313131 32%, #111111 100%);
}

.service-visual--engraving::before {
    inset: 12% 14% 18% 14%;
    border-radius: 20px;
    background: radial-gradient(circle at center, rgba(240, 176, 87, 0.85), rgba(147, 85, 16, 0.9) 55%, rgba(63, 35, 12, 1) 100%);
    box-shadow: inset 0 0 20px rgba(255, 195, 104, 0.55);
}

.service-visual--engraving::after {
    inset: 18% 20% 22% 20%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), transparent 58%);
    border: 4px solid rgba(255, 255, 255, 0.15);
}

.service-visual--tinting {
    background: linear-gradient(180deg, #e7ecf1 0%, #c5cdd5 34%, #8b8e96 100%);
}

.service-visual--tinting::before {
    left: 12%;
    right: 12%;
    bottom: 18%;
    height: 34%;
    background: linear-gradient(90deg, #090909 0 32%, #2f2f2f 32% 68%, #090909 68% 100%);
    border-radius: 14px;
    box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.service-visual--tinting::after {
    left: 8%;
    right: 8%;
    top: 10%;
    height: 36%;
    border-radius: 18px;
    background: linear-gradient(90deg, transparent 0 8%, rgba(255, 255, 255, 0.7) 8% 18%, transparent 18% 30%, rgba(255, 255, 255, 0.7) 30% 40%, transparent 40% 60%, rgba(255, 255, 255, 0.7) 60% 70%, transparent 70% 100%);
    opacity: 0.9;
}

.service-visual--branding {
    background: linear-gradient(180deg, #ccf0f3 0%, #8ad7dd 40%, #4db7c7 100%);
}

.service-visual--branding::before {
    left: 8%;
    right: 8%;
    bottom: 18%;
    height: 38%;
    background: linear-gradient(180deg, #0d5b44 0%, #0b4d3d 100%);
    border-radius: 16px 16px 14px 14px;
    box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.08);
}

.service-visual--branding::after {
    left: 12%;
    right: 12%;
    top: 20%;
    height: 36%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.12));
    border-radius: 8px;
    transform: skewX(-10deg);
}

.service-visual--signage {
    background: linear-gradient(180deg, #dfeaf3 0%, #b7d4e9 30%, #7aa9c6 100%);
}

.service-visual--signage::before {
    left: 12%;
    right: 12%;
    bottom: 18%;
    height: 42%;
    background: linear-gradient(90deg, #0d0d0f 0 22%, #efefef 22% 28%, #0d0d0f 28% 52%, #efefef 52% 58%, #0d0d0f 58% 100%);
    border-radius: 18px 18px 10px 10px;
    box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.09);
}

.service-visual--signage::after {
    left: 18%;
    right: 18%;
    top: 18%;
    height: 26%;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.14));
    transform: skewX(-12deg);
}

.service-tag {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--secondary);
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
}

.service-body {
    padding: 22px 18px 18px;
}

.service-card h3 {
    margin: 0 0 10px;
    color: var(--secondary);
    font-size: 1.05rem;
    line-height: 1.3;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.service-card p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s var(--ease), box-shadow 0.2s;
    box-shadow: 0 10px 22px rgba(255, 102, 0, 0.22);
}

.service-link:hover {
    transform: translateY(-2px);
}

.service-link span {
    font-size: 1.1rem;
}

/* ──────────────────────────────────────
   CTA BANNER (homepage)
   ────────────────────────────────────── */
/* ──────────────────────────────────────
   CTA BANNER
   High-impact end-of-page callout section
   ────────────────────────────────────── */
.cta-banner {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    text-align: center;
    padding: 48px 80px;
    background: var(--grad-hero);
    color: white;
    border: none;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
    margin-top: 28px;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(255, 102, 0, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(255, 124, 36, 0.25) 0%, transparent 70%);
}

.cta-banner>* {
    position: relative;
    z-index: 1;
}

.cta-banner h3 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: white;
}

.cta-banner p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

/* ──────────────────────────────────────
   ABOUT PAGE (full page)
   ────────────────────────────────────── */
.about-page-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: start;
    margin-top: 32px;
}

.about-page-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.25;
}

.about-page-text p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 0.97rem;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-card,
.vision-card {
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border-light);
    transition: transform 0.2s, box-shadow 0.2s;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.mission-card {
    background: var(--grad-primary);
    color: white;
    border-color: transparent;
}

.vision-card {
    background: white;
}

.mission-card h3,
.vision-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission-card h3 {
    color: white;
}

.vision-card h3 {
    color: var(--dark);
}

.mission-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    line-height: 1.7;
}

.vision-card p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.about-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-top: 20px;
    box-shadow: var(--shadow);
}

/* Stats row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.stat-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.stat-card .stat-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    color: var(--muted);
    font-size: 0.88rem;
}

/* ──────────────────────────────────────
   SERVICES PAGE (full page)
   ────────────────────────────────────── */
.services-intro {
    margin-bottom: 32px;
}

.services-intro p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 720px;
}

.services-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 8px;
}

.srv-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.srv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.srv-card-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.srv-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.srv-card:hover .srv-card-img img {
    transform: scale(1.08);
}

.srv-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22, 22, 29, 0.75) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.srv-card:hover .srv-card-overlay {
    opacity: 1;
}

.srv-card-overlay a {
    color: white;
    font-weight: 700;
    font-size: 0.88rem;
    background: var(--secondary);
    padding: 8px 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.srv-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.srv-card-body .srv-num {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}

.srv-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.srv-card-body p {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}

.srv-card-body .btn-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: gap 0.2s;
}

.srv-card-body .btn-readmore:hover {
    gap: 10px;
}

/* ──────────────────────────────────────
   PORTFOLIO PAGE
   ────────────────────────────────────── */
.portfolio-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 22px;
    border-radius: 999px;
    border: 1.5px solid var(--border);
    background: white;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
    box-shadow: var(--shadow-orange);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.port-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.port-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.port-item:hover img {
    transform: scale(1.1);
}

.port-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22, 22, 29, 0.80) 0%, rgba(22, 22, 29, 0.1) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.port-item:hover .port-item-overlay {
    opacity: 1;
}

.port-item-overlay span {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox.open {
    display: flex;
}

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: lb-in 0.35s var(--ease-bounce) both;
}

@keyframes lb-in {
    from {
        transform: scale(0.88);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-inner img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Video grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.video-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.video-card iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border: none;
}

.video-card .video-error {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-soft);
    color: var(--muted);
    font-size: 0.88rem;
}

/* ──────────────────────────────────────
   CONTACTS PAGE
   ────────────────────────────────────── */
.contacts-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    margin-top: 32px;
    align-items: start;
}

.contact-info-panel {
    background: var(--grad-hero);
    color: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(255, 102, 0, 0.4) 0%, transparent 70%);
}

.contact-info-panel>* {
    position: relative;
    z-index: 1;
}

.contact-info-panel h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.contact-info-panel .subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    margin-bottom: 28px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    color: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-detail-item a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.contact-detail-item a:hover {
    color: white;
    text-decoration: underline;
}

.contact-detail-label {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 3px;
}

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.contact-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: background 0.2s, transform 0.2s;
}

.contact-social a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-panel {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
}

.contact-form-panel h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.contact-form-panel .subtitle {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.home-contact-section {
    margin-top: 28px;
    padding: 12px 0 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff8f2 100%);
}

.home-contact-section .contact-info-panel .eyebrow {
    color: var(--secondary);
}

.home-contact-section .contact-info-panel {
    background: #fffaf6;
    color: var(--text);
    border: 1px solid rgba(255, 102, 0, 0.14);
    box-shadow: 0 18px 46px rgba(124, 74, 38, 0.08);
}

.home-contact-section .contact-info-panel::before {
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 158, 92, 0.18) 0%, transparent 42%),
        radial-gradient(circle at 0% 100%, rgba(255, 226, 201, 0.7) 0%, transparent 38%);
}

.home-contact-section .contact-info-panel h2 {
    color: var(--dark);
}

.home-contact-section .contact-info-panel .subtitle {
    color: var(--muted);
}

.home-contact-section .contact-detail-item {
    color: var(--text);
}

.home-contact-section .contact-detail-icon {
    background: #fff;
    color: var(--secondary);
    border-color: rgba(255, 102, 0, 0.16);
    box-shadow: 0 6px 16px rgba(255, 102, 0, 0.1);
}

.home-contact-section .contact-detail-item a {
    color: var(--dark);
}

.home-contact-section .contact-detail-item a:hover {
    color: var(--secondary);
}

.home-contact-section .contact-detail-label {
    color: var(--muted-light);
}

.home-contact-section .contact-social a {
    background: #fff;
    color: var(--secondary);
    border-color: rgba(255, 102, 0, 0.16);
}

.home-contact-section .contact-social a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

.home-contact-section .contact-form-panel {
    border-color: rgba(22, 22, 29, 0.07);
    box-shadow: 0 18px 46px rgba(22, 22, 29, 0.07);
}

.contact-success,
.contact-error {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding: 16px 22px;
    border-radius: var(--radius);
    color: white;
    font-weight: 600;
}

.contact-success {
    background: linear-gradient(135deg, #00a889, #007f6d);
    box-shadow: 0 8px 24px rgba(0, 168, 137, 0.2);
}

.contact-error {
    background: linear-gradient(135deg, #e05a00, #b84800);
}

.contact-success i,
.contact-error i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ──────────────────────────────────────
   MODERN FORM STYLES
   ────────────────────────────────────── */
.form-modern .form-group {
    margin-bottom: 18px;
}

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

.form-modern label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 7px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.form-modern input[type=text],
.form-modern input[type=email],
.form-modern input[type=phone],
.form-modern input[type=tel],
.form-modern textarea,
.form-modern select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--surface-soft);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-modern input:focus,
.form-modern textarea:focus,
.form-modern select:focus {
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.1);
}

.form-modern textarea {
    resize: vertical;
    min-height: 120px;
}

.form-modern select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-modern .phone-group {
    display: flex;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--surface-soft);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-modern .phone-group:focus-within {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.1);
    background: white;
}

.form-modern .phone-prefix {
    padding: 14px 16px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(255, 102, 0, 0.07);
    border-right: 1.5px solid var(--border);
    white-space: nowrap;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.form-modern .phone-group input {
    flex: 1;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 14px 16px;
}

.form-modern .btn-submit {
    width: 100%;
    padding: 15px 24px;
    background: var(--grad-primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s var(--ease-bounce), box-shadow 0.2s;
    box-shadow: var(--shadow-orange);
    margin-top: 4px;
}

.form-modern .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(255, 102, 0, 0.35);
}

/* ──────────────────────────────────────
   PLACE ORDER PAGE
   ────────────────────────────────────── */
.order-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 32px;
    margin-top: 32px;
    align-items: start;
}

.order-info-panel {
    background: var(--grad-primary);
    border-radius: var(--radius-lg);
    padding: 32px;
    color: white;
    position: relative;
    overflow: hidden;
}

.order-info-panel::before {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.order-info-panel>* {
    position: relative;
    z-index: 1;
}

.order-info-panel h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    line-height: 1.25;
}

.order-info-panel p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.order-feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.order-feature-list li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.order-form-panel {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
}

.order-form-panel h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.order-form-panel .subtitle {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* ──────────────────────────────────────
   SITE FOOTER
   ────────────────────────────────────── */
.footer-cta-strip {
    background: var(--grad-primary);
    padding: 48px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.footer-cta-strip>* {
    position: relative;
    z-index: 1;
}

.footer-cta-strip h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: white;
    margin-bottom: 10px;
}

.footer-cta-strip p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 22px;
    font-size: 0.97rem;
}

.site-footer {
    background: #0d1117;
    color: #c9d1d9;
    padding: 52px 24px 24px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand p {
    color: #8b949e;
    font-size: 0.88rem;
    line-height: 1.75;
    margin: 12px 0 20px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.footer-brand-logo img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
}

.footer-brand-logo strong {
    font-family: var(--font-heading);
    color: white;
    font-size: 1rem;
}

.site-footer h4 {
    color: white;
    margin: 0 0 16px;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #8b949e;
    font-size: 0.9rem;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '→';
    font-size: 0.8rem;
    color: var(--secondary);
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8b949e;
    font-size: 0.88rem;
    margin-bottom: 10px;
}

.footer-contact-item i {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.social-links a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #8b949e;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.social-links a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    color: #6e7681;
    font-size: 0.85rem;
}

/* ──────────────────────────────────────
   SCROLL REVEAL ANIMATION
   ────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ──────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────── */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .slider-container {
        height: 380px;
    }

    .about-grid-inner,
    .about-page-grid,
    .contacts-grid,
    .order-layout {
        grid-template-columns: 1fr;
    }

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

    .hero-stats,
    .stats-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 760px) {
    .topbar {
        padding: 7px 16px;
    }

    .topbar-inner {
        justify-content: center;
        gap: 8px;
        font-size: 0.78rem;
    }

    .navbar {
        padding: 12px 16px;
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .menu-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 12px;
        right: 12px;
        flex-direction: column;
        align-items: stretch;
        background: white;
        border: 1px solid var(--border);
        padding: 10px;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
        z-index: 99;
    }

    .menu-links.open {
        display: flex;
    }

    .menu-links a {
        padding: 12px 16px;
        border-radius: var(--radius-sm);
    }

    .menu-links a::after {
        display: none;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 12px 16px;
        border-radius: var(--radius-sm);
    }

    .nav-dropdown-toggle::after {
        display: none;
    }

    .nav-dropdown-menu,
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        position: static;
        display: none;
        min-width: 0;
        padding: 4px 0 4px 14px;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        border: 0;
        border-left: 2px solid var(--accent-soft);
        border-radius: 0;
        box-shadow: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-menu a {
        padding: 10px 12px;
        white-space: normal;
    }

    .quote-btn {
        display: none;
    }

    .main-content {
        padding: 20px 16px 32px;
    }

    .section {
        padding: 22px;
    }

    .hero {
        padding: 12px 0 24px;
    }

    .hero-content h1 {
        font-size: 1.85rem;
    }

    .slider-container {
        height: 280px;
    }

    .hero-stats,
    .service-grid,
    .stats-row {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 48px 20px;
    }

    .page-hero h1 {
        font-size: 1.9rem;
    }

    .services-full-grid,
    .portfolio-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .form-modern .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-info-panel,
    .contact-form-panel,
    .order-info-panel,
    .order-form-panel {
        padding: 24px;
    }

    .footer-cta-strip {
        padding: 36px 20px;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }
}

/* Modern Services Section */
.modern-services-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.modern-services-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 30px;
}

.header-left {
    max-width: 600px;
}

.eyebrow-modern {
    color: var(--secondary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 12px;
}

.modern-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 16px;
}

.text-gradient {
    background: var(--grad-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modern-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.6;
}

.header-right {
    flex-shrink: 0;
}

.btn-modern-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-modern-primary:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
}

.modern-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(320px, auto);
    gap: 24px;
}

.m-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.m-card-featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 600px;
}

.m-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.m-card:hover .m-card-image {
    transform: scale(1.05);
}

.m-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(22, 22, 29, 0) 0%, rgba(22, 22, 29, 0.85) 100%);
    transition: opacity 0.3s ease;
}

.m-card:hover .m-card-overlay {
    opacity: 0.9;
    background: linear-gradient(180deg, rgba(22, 22, 29, 0.2) 0%, rgba(255, 102, 0, 0.9) 100%);
}

.m-card-content {
    position: relative;
    z-index: 2;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.m-card:hover .m-card-content {
    transform: translateY(0);
}

.m-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
    transition: all 0.3s ease;
}

.m-card:hover .m-card-icon {
    background: white;
    color: var(--secondary);
}

.m-card-featured .m-card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
}

.m-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.m-card-featured h3 {
    font-size: 2.2rem;
}

.m-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    opacity: 0;
    transition: opacity 0.4s ease 0.1s;
}

.m-card:hover p {
    opacity: 1;
}

.m-card-featured p {
    font-size: 1.1rem;
}

.m-card-link {
    color: white;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0;
    transition: all 0.3s ease 0.2s;
}

.m-card:hover .m-card-link {
    opacity: 1;
}

.m-card-link:hover {
    gap: 12px;
    color: #ffd1b3;
}

.m-card-dark {
    background: var(--dark);
    grid-column: span 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.m-card-dark .centered-content {
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.m-card-dark p {
    opacity: 1;
    color: rgba(255, 255, 255, 0.6);
}

.glow-icon {
    background: var(--grad-secondary);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
    color: white !important;
}

.btn-modern-light {
    display: inline-block;
    background: white;
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-modern-light:hover {
    background: var(--secondary);
    color: white;
}

@media (max-width: 992px) {
    .modern-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .m-card-featured {
        grid-column: span 2;
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .services-header-modern {
        flex-direction: column;
        align-items: flex-start;
    }

    .modern-service-grid {
        grid-template-columns: 1fr;
    }

    .m-card-featured {
        grid-column: span 1;
    }
}

/* ──────────────────────────────────────
   BLOG PAGE SYSTEM
   ────────────────────────────────────── */
.blog-page-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

/* Blog Cards (Main Column) */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.blog-card {
    display: flex;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    min-height: 220px;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.blog-card-img {
    width: 35%;
    flex-shrink: 0;
    position: relative;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 65%;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-title:hover {
    color: var(--secondary);
}

.blog-card-excerpt {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--muted-light);
    margin-top: auto;
}

.blog-card-meta i {
    color: var(--secondary-light);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.blog-sidebar-widget {
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-title i {
    color: var(--secondary);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-links a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.4;
}

.sidebar-links a i {
    color: var(--secondary-light);
    margin-top: 3px;
    font-size: 0.9rem;
}

.sidebar-links a:hover {
    color: var(--secondary);
}

/* Responsive Blog */
@media screen and (max-width: 900px) {
    .blog-page-layout {
        grid-template-columns: 1fr;
    }

    .blog-card {
        flex-direction: column;
    }

    .blog-card-img {
        width: 100%;
        height: 200px;
    }

    .blog-card-content {
        width: 100%;
    }
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(22, 22, 29, 0.05);
    grid-column: 1 / -1;
    width: 100%;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    background: white;
    color: var(--text);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.25s var(--ease-bounce);
    box-shadow: var(--shadow-sm);
}

.page-link-num {
    width: 44px;
    border-radius: 50%;
}

.page-link-btn {
    padding: 0 20px;
    border-radius: 999px;
}

.page-link:hover {
    border-color: var(--secondary-light);
    color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.12);
}

.page-link.active {
    background: var(--grad-secondary);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-orange);
}

.page-link i {
    font-size: 1.1rem;
    margin: 0 6px;
}