/* ===== VYROSPACE — Custom Brand Theme ===== */

/* --- CSS Custom Properties --- */
:root {
    /* ---- New Theme Palette ---- */
    /* #000000  #0b192c  #1e3e62  #ff6500 */

    /* Dark palette */
    --bg-dark: #000000;
    --bg-section: #050c15;
    --bg-section-alt: #0a1627;
    --bg-card: #0b192c;
    --bg-card-hover: #122643;
    --bg-input: #0b192c;

    /* Text */
    --text-white: #ffffff;
    --text-light: #e0e6ed;
    --text-muted: #a4b5cc;
    --text-dim: #71849a;

    /* Accent & Brand Colors */
    --accent: #ff6500;
    --accent-light: #ff8533;
    --accent-hover: #cc5100;
    --brand-navy: #1e3e62;
    --brand-deep: #0b192c;
    --brand-ice: #ffffff;
    --brand-steel: #1e3e62;

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --container: 1280px;
    --section-gap: 100px;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --t-fast: 0.25s;
    --t-base: 0.4s;
    --t-slow: 0.7s;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: default;
}

a,
button,
input,
select,
textarea,
[role="button"],
.gallery-item,
.service-card,
.faq-question,
.work-card {
    cursor: pointer !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--t-fast) var(--ease);
}

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

ul,
ol {
    list-style: none;
}

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

/* --- Shared Section Heading --- */
.section-heading {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.25;
    margin-bottom: 28px;
}

.section-heading-center {
    text-align: center;
}

.section-label {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-bottom: 16px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 13px 30px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--t-base) var(--ease);
    text-transform: uppercase;
}

.btn-primary {
    background: var(--text-white);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--brand-ice);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

/* --- Reveal animation --- */
.reveal-item {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all var(--t-base) var(--ease);
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(24, 30, 46, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--text-white);
}

.nav-logo span {
    font-weight: 400;
    color: var(--text-muted);
}

.nav-logo-img {
    height: 123px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: opacity var(--t-fast) var(--ease);
}

.nav-logo:hover .nav-logo-img {
    opacity: 0.8;
}

.footer-brand .nav-logo-img {
    height: 146px;
    margin-bottom: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 44px;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 8px 0;
    position: relative;
    transition: color var(--t-fast) var(--ease);
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -16px;
    min-width: 260px;
    padding: 12px 0;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--t-fast) var(--ease);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    transition: all var(--t-fast);
}

.dropdown-menu a:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.04);
    padding-left: 30px;
}

.nav-cta-btn {
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    transition: all var(--t-base) var(--ease);
}

.nav-cta-btn:hover {
    background: var(--text-white);
    color: var(--bg-dark);
    border-color: var(--text-white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all var(--t-base) var(--ease);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ===================================================
   HERO
   =================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) saturate(0.8);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(24, 30, 46, 0.3) 0%, rgba(24, 30, 46, 0.1) 40%, rgba(24, 30, 46, 0.85) 85%, var(--bg-dark) 100%),
        linear-gradient(90deg, rgba(24, 30, 46, 0.6) 0%, transparent 60%);
}

/* --- Giant brand watermark behind content --- */
.hero-brand-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    z-index: 1;
    font-family: var(--font-primary);
    font-size: clamp(5rem, 12vw, 12rem);
    font-weight: 900;
    letter-spacing: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.07);
    user-select: none;
    pointer-events: none;
    animation: watermarkFloat 8s ease-in-out infinite alternate;
}

@keyframes watermarkFloat {
    0% {
        transform: translate(-50%, -55%) scale(1);
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -55%) scale(1.03);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 10;
}

.hero-breadcrumb a {
    color: var(--text-muted);
    pointer-events: auto;
    padding: 4px 2px;
    transition: color var(--t-fast);
}

.hero-breadcrumb a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

.hero-breadcrumb span {
    color: var(--text-white);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-white);
    margin-bottom: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: heroTitleIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroTitleIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
        letter-spacing: 12px;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 3px;
    }
}

.hero-tagline {
    font-family: var(--font-primary);
    font-size: clamp(0.72rem, 1vw, 0.88rem);
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    animation: heroFadeIn 1s 0.3s var(--ease) both;
}

@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-desc {
    max-width: 520px;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 12px;
    animation: heroFadeIn 1s 0.5s var(--ease) both;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    animation: heroFadeIn 1s 0.7s var(--ease) both;
}

.btn-outline-hero {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-hero:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}


/* ===================================================
   HERO — sub paragraph
   =================================================== */
.hero-sub {
    max-width: 540px;
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 28px;
    animation: heroFadeIn 1s 0.6s var(--ease) both;
}


/* ===================================================
   SERVICES SHOWCASE
   =================================================== */
.services-showcase {
    padding: var(--section-gap) 0;
    background: var(--bg-section);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: all var(--t-base) var(--ease);
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
    grid-column: span 1;
}

.service-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow) var(--ease);
}

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

.service-card-num {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: -1px;
}

.service-card-body {
    padding: 28px;
}

.service-card-body h3 {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

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

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    transition: all var(--t-fast) var(--ease);
}

.service-link:hover {
    color: var(--accent-light);
    gap: 14px;
}

.service-link::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 10;
}


/* ===================================================
   STATS BAR
   =================================================== */
.stats-bar {
    padding: 80px 0;
    background: var(--brand-navy);
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 101, 0, 0.08) 0%, transparent 60%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.stat-val-row {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-num {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    ;
    font-weight: 800;
    color: var(--brand-ice);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-primary);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--accent);
}

.stat-unit {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-left: 10px;
    margin-top: 6px;
}


/* ===================================================
   WHY CHOOSE US
   =================================================== */
.why-section {
    padding: var(--section-gap) 0;
    background: var(--bg-section-alt);
}

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

.why-card {
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    transition: all var(--t-base) var(--ease);
}

.why-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(255, 101, 0, 0.08);
}

.why-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 101, 0, 0.1);
    border-radius: var(--radius-md);
    color: var(--accent);
    margin-bottom: 20px;
    transition: all var(--t-base) var(--ease);
}

.why-card:hover .why-icon {
    background: var(--accent);
    color: var(--brand-ice);
}

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

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


/* ===================================================
   GALLERY / PORTFOLIO
   =================================================== */
.gallery-section {
    padding: var(--section-gap) 0;
    background: var(--bg-section);
}

.gallery-header {
    margin-bottom: 56px;
}

.gallery-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.8;
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease), filter var(--t-base);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
    transform: translateY(8px);
    opacity: 0;
    transition: all var(--t-base) var(--ease);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-tag {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.gallery-overlay h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
}


/* ===================================================
   PROCESS / HOW TO GET STARTED
   =================================================== */
.process-section {
    padding: var(--section-gap) 0;
    background: var(--bg-section-alt);
}

.process-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

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

.process-step {
    text-align: center;
    padding: 36px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all var(--t-base) var(--ease);
}

.process-step:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.process-num {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 16px;
    line-height: 1;
    transition: opacity var(--t-base) var(--ease);
}

.process-step:hover .process-num {
    opacity: 1;
}

.process-step h3 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}


/* ===================================================
   SERVICES LIST
   =================================================== */
.services-list-section {
    padding: var(--section-gap) 0;
    background: var(--bg-section);
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 56px;
}

.services-list-col h4 {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.services-list-col a {
    display: block;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all var(--t-fast) var(--ease);
}

.services-list-col a:hover {
    color: var(--text-white);
    padding-left: 8px;
}


/* ===================================================
   WORKS / SHOWCASE
   =================================================== */
.works {
    padding: var(--section-gap) 0;
    background: var(--bg-section);
}

.works-header {
    margin-bottom: 56px;
}

.works-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
}

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

.work-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.work-card-lg {
    grid-column: span 2;
}

.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease), filter var(--t-base);
}

.work-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.6);
}

.work-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    transform: translateY(8px);
    opacity: 0;
    transition: all var(--t-base) var(--ease);
}

.work-card:hover .work-card-overlay {
    transform: translateY(0);
    opacity: 1;
}

.work-tag {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.work-card-overlay h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    opacity: 0;
    transition: all var(--t-base) var(--ease);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.work-card:hover .play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}


/* ===================================================
   ABOUT / INFO SECTIONS (alternating layout)
   =================================================== */
.about-section,
.detail-section,
.studio-section {
    padding: var(--section-gap) 0;
}

.about-section {
    background: var(--bg-section-alt);
}

.detail-section {
    background: var(--bg-section);
}

.studio-section {
    background: var(--bg-section-alt);
}

.about-layout,
.detail-layout,
.studio-layout,
.cost-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-left p,
.detail-content p,
.studio-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-image-block,
.detail-image,
.studio-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.about-image-block img,
.detail-image img,
.studio-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform var(--t-slow) var(--ease);
}

.about-image-block:hover img,
.detail-image:hover img,
.studio-image:hover img {
    transform: scale(1.03);
}

.studio-list {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.studio-list li {
    position: relative;
    padding: 14px 0 14px 28px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.studio-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}


/* ===================================================
   WORKFLOW
   =================================================== */
.workflow-section {
    padding: var(--section-gap) 0;
    background: var(--bg-section);
}

.workflow-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.workflow-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.workflow-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1) 10%, rgba(255, 255, 255, 0.1) 90%, transparent);
}

.workflow-step {
    display: flex;
    gap: 40px;
    padding: 32px 0;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    position: relative;
    z-index: 2;
    transition: all var(--t-base) var(--ease);
}

.workflow-step:hover .step-number {
    background: var(--text-white);
    color: var(--bg-dark);
    border-color: var(--text-white);
    box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
}

.step-content h3 {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
    margin-top: 4px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}


/* ===================================================
   COST SECTION
   =================================================== */
.cost-section {
    padding: var(--section-gap) 0;
    background: var(--bg-section-alt);
}

.cost-content {
    padding-right: 40px;
}

.cost-content>p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
}

.cost-factors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cost-factor {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    transition: all var(--t-base) var(--ease);
}

.cost-factor:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.cost-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.cost-factor span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.cost-cta {
    display: flex;
    align-items: center;
}

.cost-cta-card {
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    text-align: center;
}

.cost-cta-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.cost-cta-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}


/* ===================================================
   FAQS
   =================================================== */
.faq-section {
    padding: var(--section-gap) 0;
    background: var(--bg-section);
}

.faq-list {
    max-width: 860px;
    margin: 48px auto 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    transition: color var(--t-fast);
}

.faq-question:hover {
    color: var(--text-white);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--t-base) var(--ease);
    color: var(--text-muted);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
    padding: 0 0 0 0;
}

.faq-item.open .faq-answer {
    max-height: 600px;
    padding-bottom: 28px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 24px;
    margin-bottom: 12px;
}

.faq-answer li {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

.faq-answer ol li {
    list-style: decimal;
}

.faq-answer strong {
    color: var(--text-light);
}


/* ===================================================
   CONTACT
   =================================================== */
.contact-section {
    padding: var(--section-gap) 0;
    background: var(--bg-section-alt);
}

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

.contact-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-info-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.contact-info-item a:hover {
    color: var(--text-white);
}

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-white);
    background: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all var(--t-fast) var(--ease);
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    cursor: pointer;
    color: var(--text-muted);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    background: var(--bg-input);
    cursor: pointer;
    appearance: auto;
    -webkit-appearance: auto;
}

.form-checkbox label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-checkbox label a {
    color: var(--text-light);
    text-decoration: underline;
}

.btn-submit {
    align-self: flex-start;
}


/* ===================================================
   FOOTER
   =================================================== */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    transition: all var(--t-fast) var(--ease);
}

.footer-socials a:hover {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

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

.footer-col h4 {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 8px;
}

.footer-col a {
    font-size: 0.88rem;
    color: var(--text-muted);
}

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

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

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.footer-bottom a {
    font-size: 0.8rem;
    color: var(--text-dim);
}

.footer-bottom a:hover {
    color: var(--text-muted);
}


/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
    :root {
        --section-gap: 100px;
    }

    .about-layout,
    .detail-layout,
    .studio-layout,
    .cost-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .stats-grid .stat-item:last-child {
        grid-column: span 2;
    }

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

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

    .gallery-item-wide {
        grid-column: span 2;
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .works-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 260px;
    }

    .work-card-lg {
        grid-column: span 2;
    }

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

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

    .cost-content {
        padding-right: 0;
    }
}

/* ===================================================
   ABOUT PAGE — STANDALONE
   =================================================== */
.about-hero {
    padding: 240px 0 180px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('generated image/Exterior 3d renders/Gemini_Generated_Image_gav7mmgav7mmgav7.png');
    background-size: cover;
    background-position: center center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-white);
    margin-top: 32px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.about-main-section {
    padding: var(--section-gap) 0;
    background: var(--bg-section);
}

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

.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(0.2) contrast(1.1);
}

.about-experience-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: var(--accent);
    padding: 24px 32px;
    border-radius: var(--radius-md);
    color: var(--text-white);
    box-shadow: 0 20px 40px rgba(255, 101, 0, 0.3);
}

.about-experience-badge .exp-num {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .exp-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-white);
    margin-bottom: 32px;
}

.about-para {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-para strong {
    color: var(--text-white);
    font-weight: 600;
}

.about-values {
    padding: var(--section-gap) 0;
    background: var(--bg-section-alt);
}

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

.value-card {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all var(--t-base) var(--ease);
}

.value-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
}

.value-card:hover .value-icon {
    color: var(--accent);
    opacity: 0.8;
}

.value-icon {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 101, 0, 0.1);
    line-height: 1;
    margin-bottom: 24px;
    transition: all var(--t-base) var(--ease);
}

.value-card h4 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-main-img {
        height: 400px;
    }
}

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

    .about-hero {
        padding: 140px 0 60px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-gap: 80px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(24, 30, 46, 0.98);
        backdrop-filter: blur(24px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right var(--t-base) var(--ease);
        z-index: 999;
        border-left: 1px solid rgba(255, 255, 255, 0.06);
    }

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

    .nav-links {
        flex-direction: column;
        gap: 28px;
    }

    .nav-link {
        font-size: 1rem;
    }

    .nav-cta-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        border: none;
        background: transparent;
        box-shadow: none;
        padding: 8px 0 0 16px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
        letter-spacing: 4px;
    }

    .hero-brand-watermark {
        font-size: clamp(3rem, 12vw, 6rem);
        letter-spacing: 8px;
    }

    .hero-tagline {
        letter-spacing: 2px;
        font-size: 0.8rem;
    }

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

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

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

    .services-list-grid {
        grid-template-columns: 1fr;
    }

    .works-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .work-card-lg {
        grid-column: span 1;
    }

    .about-image-block img,
    .detail-image img,
    .studio-image img {
        height: 320px;
    }

    .cost-factors {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .workflow-timeline::before {
        left: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }

    .hero-cta-row {
        flex-direction: column;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .workflow-step {
        gap: 20px;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 1.1rem;
    }
}


/* ===================================================
   SERVICE PAGE — HERO
   =================================================== */
.service-hero {
    align-items: center;
    padding: 120px 0 80px;
}

.service-hero .hero-content {
    padding-top: 0;
}

.service-hero .hero-title {
    font-size: clamp(1.96rem, 3.5vw, 3.5rem);
}

.service-hero .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.25) saturate(0.8);
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
}

.hero-breadcrumb a {
    color: var(--text-muted);
    transition: color var(--t-fast);
}

.hero-breadcrumb a:hover {
    color: var(--text-white);
}

.hero-breadcrumb span:last-child {
    color: var(--text-white);
}


/* ===================================================
   SHOWCASE GALLERY — Masonry Grid
   =================================================== */
.sp-showcase {
    padding: var(--section-gap) 0;
    background: var(--bg-section-alt);
}

.sp-showcase-header {
    text-align: center;
    margin-bottom: 56px;
}

.sp-showcase-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

.sp-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    grid-auto-rows: 320px;
}

.sp-showcase-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.sp-showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}

.sp-showcase-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.6);
}

.sp-showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    transform: translateY(8px);
    opacity: 0;
    transition: all var(--t-base) var(--ease);
}

.sp-showcase-item:hover .sp-showcase-overlay {
    transform: translateY(0);
    opacity: 1;
}

.sp-showcase-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.sp-showcase-overlay h3 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-white);
}

.sp-showcase-wide {
    grid-column: span 2;
}


/* ===================================================
   DETAIL BLOCKS — Alternating Text + Image
   =================================================== */
.sp-detail-section {
    padding: var(--section-gap) 0;
}

.sp-detail-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 100px;
}

.sp-detail-block:last-child {
    margin-bottom: 0;
}

.sp-detail-reverse {
    direction: rtl;
}

.sp-detail-reverse>* {
    direction: ltr;
}

.sp-detail-text p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
}

.sp-detail-image {
    border-radius: var(--radius);
    overflow: hidden;
}

.sp-detail-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 0.6s var(--ease);
}

.sp-detail-image:hover img {
    transform: scale(1.03);
}


/* ===================================================
   FEATURE LIST
   =================================================== */
.sp-feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sp-feature-list li {
    color: var(--text-muted);
    line-height: 1.7;
    padding-left: 28px;
    position: relative;
}

.sp-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

.sp-feature-list li strong {
    color: var(--text-white);
}

.sp-feature-list-checked li::before {
    content: '✓';
    background: none;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    top: 2px;
    width: auto;
    height: auto;
    border-radius: 0;
}


/* ===================================================
   SERVICE TYPE CARDS
   =================================================== */
.sp-services-types {
    padding: var(--section-gap) 0;
    background: var(--bg-section);
}

.sp-services-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto 56px;
    line-height: 1.8;
}

.sp-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sp-type-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: all var(--t-base) var(--ease);
}

.sp-type-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(91, 140, 240, 0.15);
    transform: translateY(-4px);
}

.sp-type-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(91, 140, 240, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
    transition: background var(--t-base);
}

.sp-type-card:hover .sp-type-icon {
    background: rgba(91, 140, 240, 0.15);
}

.sp-type-card h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

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


/* ===================================================
   FEATURES SECTION
   =================================================== */
.sp-features-section {
    padding: var(--section-gap) 0;
    background: var(--bg-section-alt);
}


/* ===================================================
   COST SECTION
   =================================================== */
.sp-cost-section {
    padding: var(--section-gap) 0;
}

.sp-cost-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto 56px;
    line-height: 1.8;
}

.sp-cost-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.sp-cost-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all var(--t-base) var(--ease);
}

.sp-cost-card:hover {
    border-color: rgba(91, 140, 240, 0.15);
    transform: translateY(-2px);
}

.sp-cost-num {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(91, 140, 240, 0.2);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.sp-cost-card h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.sp-cost-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.sp-cost-cta {
    text-align: center;
}

.sp-cost-cta p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1rem;
}


/* ===================================================
   CTA BANNER
   =================================================== */
.cta-banner {
    padding: var(--section-gap) 0;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(91, 140, 240, 0.12) 0%, transparent 50%),
        linear-gradient(315deg, rgba(91, 140, 240, 0.08) 0%, transparent 50%);
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-banner-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
}

.cta-banner-content .section-heading {
    text-align: center;
}

.cta-banner-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.sp-inline-link {
    color: var(--accent) !important;
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

.sp-inline-link:hover {
    color: var(--text-white) !important;
}


/* ===================================================
   DROPDOWN ACTIVE LINK
   =================================================== */
.dropdown-menu a.active {
    color: var(--accent);
}


/* ===================================================
   SERVICE PAGE — RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
    .sp-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 280px;
    }

    .sp-showcase-wide {
        grid-column: span 2;
    }

    .sp-detail-block {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 72px;
    }

    .sp-detail-reverse {
        direction: ltr;
    }

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

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

@media (max-width: 768px) {
    .sp-showcase-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .sp-showcase-wide {
        grid-column: span 1;
    }

    .sp-types-grid {
        grid-template-columns: 1fr;
    }

    .sp-cost-grid {
        grid-template-columns: 1fr;
    }

    .sp-detail-image img {
        height: 300px;
    }

    .cta-banner-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-breadcrumb {
        font-size: 0.7rem;
    }
}

/* Utility Classes */
.text-accent {
    color: var(--accent) !important;
}

/* ===================================================
   PRELOADER
   =================================================== */
#preloader {
    position: fixed;
    inset: 0;
    background: rgba(5, 12, 21, 0.85);
    /* Darker, richer background */
    backdrop-filter: blur(25px);
    /* Stronger premium blur */
    -webkit-backdrop-filter: blur(25px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#preloader.fade-out .preloader-logo {
    opacity: 0;
    transform: scale(1.1) translateY(-20px);
}

.preloader-logo img {
    height: 240px;
    /* Increased from 120px */
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0;
    animation: logoReveal 2s cubic-bezier(0.16, 1, 0.3, 1) forwards, logoFloat 4s ease-in-out infinite alternate 2s;
}

/* Subtle glowing accent behind logo */
.preloader-logo::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 101, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite alternate;
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
        filter: brightness(0) invert(1) blur(10px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: brightness(0) invert(1) blur(0px);
    }
}

@keyframes logoFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-8px);
    }
}

@keyframes glowPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}