/* 
   MITTAI HUB - Premium Creative Media & Cinema Production
   ARK Productions Inspired Layout + Claymorphism + Logo Color Palette
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    /* Background Hierarchy */
    --bg-dark-primary: #07070a;
    --bg-dark-secondary: #0e0e14;
    --bg-dark-tertiary: #161620;
    --bg-dark-card: #12121a;

    /* Typography Colors */
    --color-text-primary: #ffffff;
    --color-text-secondary: #a0aec0;
    --color-text-muted: #64748b;

    /* Mittai Hub Logo Brand Palette */
    --color-brand-yellow: #fbb03b;
    --color-brand-pink: #ff497c;
    --color-brand-purple: #8b5cf6;

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, #fbb03b 0%, #ff497c 50%, #8b5cf6 100%);
    --gradient-brand-subtle: linear-gradient(135deg, rgba(251, 176, 59, 0.15) 0%, rgba(255, 73, 124, 0.15) 50%, rgba(139, 92, 246, 0.15) 100%);
    --gradient-dark-overlay: linear-gradient(180deg, rgba(7, 7, 10, 0.6) 0%, rgba(7, 7, 10, 0.95) 100%);
    --gradient-card-glow: linear-gradient(135deg, rgba(255, 73, 124, 0.08) 0%, rgba(139, 92, 246, 0.05) 100%);

    /* 3D Claymorphism Design Tokens */
    --clay-card-bg: rgba(18, 18, 26, 0.85);
    --clay-card-border: 1px solid rgba(255, 255, 255, 0.07);
    --clay-card-shadow: 
        inset 2px 2px 5px rgba(255, 255, 255, 0.06),
        inset -3px -3px 8px rgba(0, 0, 0, 0.7),
        0 10px 30px rgba(0, 0, 0, 0.6);
    --clay-card-shadow-hover: 
        inset 3px 3px 7px rgba(255, 255, 255, 0.1),
        inset -4px -4px 10px rgba(0, 0, 0, 0.8),
        0 16px 40px rgba(255, 73, 124, 0.25);

    /* Radii & Spacing */
    --border-radius-sm: 14px;
    --border-radius-md: 22px;
    --border-radius-lg: 32px;
    --border-radius-pill: 50px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Global Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark-primary);
    color: var(--color-text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #ffffff;
}

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

/* Common Layout Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.section-padding {
    padding: 100px 0;
}

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

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

.bg-dark-secondary {
    background-color: var(--bg-dark-secondary);
}

.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Helper Grid Layout Classes (With Responsive Fallbacks) */
.hero-wrapper-single {
    grid-template-columns: 1fr !important;
    text-align: center;
}

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

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

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

/* Section Header (ARK Style) */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px auto;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 36px;
    }
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: var(--border-radius-pill);
    background: var(--gradient-brand-subtle);
    border: 1px solid rgba(255, 73, 124, 0.2);
    color: var(--color-brand-yellow);
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    box-shadow: inset 1px 1px 3px rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: clamp(1.75rem, 4.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.25;
}

.section-desc {
    color: var(--color-text-secondary);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.7;
}

/* Claymorphic Glass Container */
.bg-glass {
    background: var(--clay-card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--clay-card-border);
    box-shadow: var(--clay-card-shadow);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
}

.bg-glass-hover:hover {
    box-shadow: var(--clay-card-shadow-hover);
    transform: translateY(-8px);
    border-color: rgba(255, 73, 124, 0.3);
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: var(--border-radius-pill);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-brand);
    color: #ffffff;
    box-shadow: 
        inset 2px 2px 4px rgba(255, 255, 255, 0.4),
        inset -3px -3px 6px rgba(0, 0, 0, 0.4),
        0 8px 25px -4px rgba(255, 73, 124, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        inset 3px 3px 6px rgba(255, 255, 255, 0.5),
        inset -4px -4px 8px rgba(0, 0, 0, 0.5),
        0 12px 32px -4px rgba(255, 73, 124, 0.7);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: var(--bg-dark-tertiary);
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        inset 2px 2px 4px rgba(255, 255, 255, 0.05),
        inset -3px -3px 6px rgba(0, 0, 0, 0.6),
        0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 
        inset 3px 3px 6px rgba(255, 255, 255, 0.08),
        inset -4px -4px 8px rgba(0, 0, 0, 0.7),
        0 10px 25px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   Header Navigation Bar (ARK Productions Style with Clay Touch)
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    background-color: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    padding: 14px 0;
    background-color: rgba(7, 7, 10, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    transition: var(--transition-fast);
}

.logo-link:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: -0.02em;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Nav Menu */
nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.98rem;
    color: var(--color-text-secondary);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-brand);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.dropdown-trigger {
    display: flex;
    align-items: center;
}

.arrow-indicator {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: var(--transition-fast);
}

.nav-dropdown:hover .arrow-indicator,
.nav-dropdown.active .arrow-indicator {
    transform: rotate(180deg);
}

/* 3D Claymorphic Mega Dropdown (Solid Opaque Surface) */
.mega-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(16px) scale(0.96);
    background: #0e0e14;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.95),
        0 10px 30px rgba(0, 0, 0, 0.8),
        inset 1px 1px 2px rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    padding: 20px;
    width: 480px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1200;
}

.nav-dropdown:hover .mega-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(6px) scale(1);
}

.mega-dropdown-header {
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-dropdown-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-brand-yellow);
}

.mega-dropdown-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mega-dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #15151e;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-fast);
    text-decoration: none;
}

.mega-dropdown-item:hover,
.mega-dropdown-item.active-item {
    background: #1f1826;
    border-color: rgba(255, 73, 124, 0.4);
    transform: translateX(4px);
}

.mega-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-yellow);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.mega-dropdown-item:hover .mega-item-icon {
    background: var(--gradient-brand);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(255, 73, 124, 0.45);
}

.mega-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mega-item-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.96rem;
    font-weight: 700;
    color: #ffffff;
}

.mega-dropdown-item:hover .mega-item-title span:first-child {
    color: var(--color-brand-yellow);
}

.mega-item-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: var(--border-radius-pill);
    border: 1px solid;
    letter-spacing: 0.05em;
}

.mega-item-desc {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    line-height: 1.35;
}

.mega-item-arrow {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.3);
    transition: var(--transition-fast);
}

.mega-dropdown-item:hover .mega-item-arrow {
    color: var(--color-brand-pink);
    transform: translateX(4px);
}

.mega-dropdown-footer {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-footer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 12px;
    background: #1e1a14;
    border: 1px dashed rgba(251, 176, 59, 0.35);
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
    text-decoration: none;
}

.mega-footer-link:hover {
    background: #292218;
    border-color: var(--color-brand-yellow);
    color: #ffffff;
}

.mega-footer-action {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--color-brand-yellow);
}

/* Header Social Icons (ARK Productions Style) */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.header-social-icon:hover {
    background: var(--gradient-brand);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 73, 124, 0.4);
    border-color: transparent;
}

.header-cta-btn {
    padding: 10px 22px;
    font-size: 0.9rem;
}

/* Mobile Hamburger Toggle */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.hamburger-menu span {
    display: block;
    width: 26px;
    height: 2.5px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Mobile Drawer */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -360px;
    width: 340px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.9);
    z-index: 1050;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
    flex-shrink: 0;
}

.drawer-header .logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.drawer-close {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.4rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.drawer-close:hover {
    background: rgba(255, 73, 124, 0.2);
    color: var(--color-brand-pink);
    border-color: rgba(255, 73, 124, 0.4);
    transform: rotate(90deg);
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
    margin-right: -4px;
}

.drawer-body::-webkit-scrollbar {
    width: 4px;
}

.drawer-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.drawer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    margin: 0;
}

.drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.drawer-link:hover,
.drawer-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.drawer-link.active {
    background: var(--gradient-brand-subtle);
    border-color: rgba(255, 73, 124, 0.3);
    color: #ffffff;
}

.drawer-dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    padding: 14px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-dropdown-tag {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--color-brand-yellow);
    padding: 0 4px;
}

.drawer-dropdown-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-fast);
    text-decoration: none;
}

.drawer-menu-item:hover,
.drawer-menu-item.active-item {
    background: rgba(255, 73, 124, 0.12);
    border-color: rgba(255, 73, 124, 0.3);
}

.drawer-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-yellow);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.drawer-menu-item:hover .drawer-item-icon,
.drawer-menu-item.active-item .drawer-item-icon {
    background: var(--gradient-brand);
    color: #ffffff;
    border-color: transparent;
}

.drawer-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.drawer-item-title-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.drawer-item-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.drawer-item-sub {
    font-size: 0.73rem;
    color: var(--color-text-secondary);
    line-height: 1.3;
}

.drawer-item-arrow {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.drawer-menu-item:hover .drawer-item-arrow,
.drawer-menu-item.active-item .drawer-item-arrow {
    color: var(--color-brand-pink);
    transform: translateX(3px);
}

.drawer-footer-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 6px;
    padding: 12px;
    border-radius: 12px;
    background: var(--gradient-brand-subtle);
    border: 1px solid rgba(255, 73, 124, 0.25);
    font-size: 0.78rem;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-fast);
}

.drawer-footer-link:hover {
    border-color: var(--color-brand-pink);
    background: rgba(255, 73, 124, 0.18);
}

.drawer-footer-action {
    font-weight: 600;
    color: var(--color-brand-pink);
    font-size: 0.82rem;
}

.drawer-footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
}

.drawer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.drawer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.drawer-social-link:hover {
    background: var(--gradient-brand);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
}

.drawer-social-link svg {
    flex-shrink: 0;
}

.drawer-cta-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ==========================================================================
   Hero Section (ARK Style Video BG + Claymorphic Cards)
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.35;
    filter: saturate(1.2) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(7, 7, 10, 0.4) 0%, rgba(7, 7, 10, 0.92) 80%);
    z-index: 2;
}

.hero-wrapper {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-badge-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    border-radius: var(--border-radius-pill);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-brand-yellow);
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: inset 1px 1px 3px rgba(255, 255, 255, 0.1);
}

.hero-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--border-radius-pill);
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #4ade80;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 10px #4ade80;
    animation: blinkStatus 2s infinite;
}

@keyframes blinkStatus {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(2rem, 5.5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .hero-title br,
    .section-title br,
    h1 br,
    h2 br {
        display: none;
    }
}

/* Inline Non-colliding Rotator */
.hero-rotator-wrapper {
    display: inline-block;
}

.hero-rotator-text {
    display: inline-block;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-rotator-text.fade-out {
    opacity: 0;
    transform: translateY(-14px);
}

.hero-rotator-text.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* Hero 3D Clay Showcase Card & Floating Badges */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glow-back {
    display: none !important;
}

.hero-showcase-card {
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 320px;
    animation: floatAnimation 4s ease-in-out infinite alternate;
}

@keyframes floatAnimation {
    0% { transform: translateY(0); }
    100% { transform: translateY(-14px); }
}

.hero-card-logo {
    max-width: 260px;
    height: auto;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.8));
    transition: var(--transition-normal);
}

.hero-showcase-card:hover .hero-card-logo {
    transform: scale(1.08) rotate(2deg);
}

/* Floating Metrics Badges */
.hero-float-badge {
    position: absolute;
    z-index: 4;
    padding: 10px 16px;
    border-radius: var(--border-radius-pill);
    background: rgba(18, 18, 26, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.15), 0 10px 24px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
}

.hero-float-badge:hover {
    transform: scale(1.08);
    border-color: var(--color-brand-pink);
    box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.2), 0 12px 30px rgba(255, 73, 124, 0.4);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    color: #ffffff;
    line-height: 1.2;
}

.badge-text small {
    display: block;
    font-size: 0.72rem;
    color: var(--color-brand-yellow);
}

.badge-top-right {
    top: -15px;
    right: -25px;
}

.badge-bottom-left {
    bottom: -15px;
    left: -25px;
}

.badge-bottom-right {
    bottom: 25px;
    right: -30px;
}

.hero-card-img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
}

/* ==========================================================================
   About & Statistics Counter Section
   ========================================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.stat-card {
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-brand);
    opacity: 0.7;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Showreel Video Box */
.showreel-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-top: 50px;
    box-shadow: var(--clay-card-shadow-hover);
    border: var(--clay-card-border);
}

.showreel-video {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.showreel-controls {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.showreel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(18, 18, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 1px 1px 3px rgba(255, 255, 255, 0.2), 0 6px 16px rgba(0, 0, 0, 0.6);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.showreel-btn:hover {
    background: var(--gradient-brand);
    transform: scale(1.1);
    border-color: transparent;
}

/* Founders / Team Spotlight */
.founders-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    margin-top: 60px;
}

.founder-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    border-radius: var(--border-radius-lg);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.founder-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), 0 0 30px rgba(255, 73, 124, 0.25);
    border-color: rgba(255, 73, 124, 0.4);
}

.founder-photo-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35), 0 0 25px rgba(255, 73, 124, 0.2);
    background: var(--gradient-brand);
}

.founder-photo {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-card:hover .founder-photo {
    transform: scale(1.05);
}

.founder-meta-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(15, 18, 28, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.86rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.founder-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.founder-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin: 0;
}

.founder-role {
    color: var(--color-brand-yellow);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.founder-bio {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0;
}

.founder-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.founder-avatar {
    width: 130px;
    height: 130px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    border-radius: 20px;
    padding: 4px;
    background: linear-gradient(135deg, var(--color-brand-pink) 0%, #8a2be2 50%, var(--color-brand-cyan) 100%);
    box-shadow: 0 10px 30px rgba(255, 73, 124, 0.4), 0 0 20px rgba(0, 242, 254, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Numbered Services Cards (ARK Productions Style)
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-brand);
    transition: var(--transition-normal);
}

.service-card:hover::before {
    height: 100%;
}

.service-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.service-card:hover .service-number {
    color: var(--color-brand-yellow);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-sm);
    background: var(--gradient-brand-subtle);
    border: 1px solid rgba(255, 73, 124, 0.2);
    box-shadow: inset 1px 1px 3px rgba(255, 255, 255, 0.1);
    color: var(--color-brand-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-title {
    font-size: 1.45rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-arrow {
    color: var(--color-brand-yellow);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.service-card:hover .service-arrow {
    transform: translateX(6px);
}

.service-desc {
    color: var(--color-text-secondary);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 24px;
}

.service-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-highlights li {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-highlights li::before {
    content: '✓';
    color: var(--color-brand-pink);
    font-weight: bold;
}

/* ==========================================================================
   Filterable Work Showcase & Interactive Video Modal
   ========================================================================== */
/* ==========================================================================
   Filterable Work Showcase & Interactive Video Modal
   ========================================================================== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    background: transparent;
    border: 1px solid transparent;
    color: var(--color-text-secondary);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.filter-btn.active {
    background: var(--gradient-brand);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(255, 73, 124, 0.45);
}

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

.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 73, 124, 0.5);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 73, 124, 0.25);
}

.portfolio-card.reel {
    aspect-ratio: 9 / 14;
}

.portfolio-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-reel-thumb {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 24px;
    text-align: center;
}

.portfolio-reel-thumb.gradient-pink {
    background: linear-gradient(135deg, #ff497c 0%, #7928ca 50%, #121216 100%);
}

.portfolio-reel-thumb.gradient-purple {
    background: linear-gradient(135deg, #7928ca 0%, #4a00e0 50%, #121216 100%);
}

.portfolio-reel-thumb.gradient-yellow {
    background: linear-gradient(135deg, #ff9900 0%, #ff497c 50%, #121216 100%);
}

.portfolio-reel-thumb.gradient-blue {
    background: linear-gradient(135deg, #00f2fe 0%, #4a00e0 50%, #121216 100%);
}

.portfolio-reel-thumb.gradient-gold {
    background: linear-gradient(135deg, #f5af19 0%, #f12711 50%, #121216 100%);
}

.portfolio-card:hover .portfolio-thumbnail {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 7, 10, 0.15) 0%, rgba(7, 7, 10, 0.45) 50%, rgba(7, 7, 10, 0.95) 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0.9;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(7, 7, 10, 0.1) 0%, rgba(7, 7, 10, 0.35) 40%, rgba(7, 7, 10, 0.98) 100%);
}

.portfolio-badge-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
}

.portfolio-badge {
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(18, 18, 26, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-brand-yellow);
    letter-spacing: 0.06em;
}

.portfolio-quality-tag {
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(255, 73, 124, 0.2);
    border: 1px solid rgba(255, 73, 124, 0.3);
    font-size: 0.7rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-brand);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3), 0 8px 25px rgba(255, 73, 124, 0.6);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.portfolio-card:hover .play-icon-overlay {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5), 0 0 0 12px rgba(255, 73, 124, 0.25), 0 12px 30px rgba(255, 73, 124, 0.7);
}

.portfolio-meta {
    z-index: 2;
}

.portfolio-type {
    font-size: 0.78rem;
    color: var(--color-brand-pink);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 4px;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.portfolio-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 4px;
}

/* Video Modal Popup System */
.video-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 8, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.video-modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-container {
    position: relative;
    width: 100%;
    max-width: 960px;
    background: #0f121b;
    border: 1px solid rgba(255, 73, 124, 0.3);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 40px rgba(255, 73, 124, 0.25);
    border-radius: 20px;
    overflow: hidden;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal-backdrop.active .video-modal-container {
    transform: scale(1) translateY(0);
}

.video-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(15, 18, 27, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: var(--color-brand-pink);
    border-color: transparent;
}

.video-modal-body {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-modal-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   Clients & Testimonials Section
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.testimonial-stars {
    color: var(--color-brand-yellow);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--color-text-secondary);
    font-size: 0.98rem;
    line-height: 1.65;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #ffffff;
    font-size: 0.95rem;
}

.author-info h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Interactive Proposal / Quote Builder Form (3D Claymorphism Wizard)
   ========================================================================== */
.quote-section {
    position: relative;
}

.quote-form-container {
    padding: 48px;
    border-radius: var(--border-radius-lg);
    background: var(--clay-card-bg);
    border: var(--clay-card-border);
    box-shadow: var(--clay-card-shadow-hover);
}

.quote-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.quote-form-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin: 10px 0;
}

.quote-form-subtitle {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto;
}

/* Wizard Steps Bar */
.wizard-steps-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.wizard-step {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: var(--transition-fast);
}

.wizard-step.active,
.wizard-step.completed {
    opacity: 1;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-dark-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.wizard-step.active .step-circle {
    background: var(--gradient-brand);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(255, 73, 124, 0.5);
}

.wizard-step.completed .step-circle {
    background: #25d366;
    color: #ffffff;
    border-color: transparent;
}

.step-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.wizard-step.active .step-text {
    color: #ffffff;
}

.wizard-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.wizard-line.active {
    background: var(--gradient-brand);
}

/* Wizard Layout (Main Content + Live Sidebar) */
.wizard-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 36px;
    margin-top: 30px;
    align-items: start;
}

.wizard-main-content {
    display: flex;
    flex-direction: column;
}

.wizard-panel {
    display: none;
}

.wizard-panel.active {
    display: block;
    animation: fadeInStep 0.4s ease forwards;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-heading {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-brand-yellow);
}

/* Tile Grid (Service Selection Cards) */
.tile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.tile-card {
    position: relative;
    padding: 22px;
    border-radius: var(--border-radius-md);
    background: var(--bg-dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.05), 0 4px 14px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tile-card input[type="radio"] {
    display: none;
}

.tile-card:hover {
    border-color: rgba(255, 73, 124, 0.4);
    transform: translateY(-3px);
}

.tile-card.active {
    background: var(--gradient-brand-subtle);
    border-color: var(--color-brand-pink);
    box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.1), 0 8px 24px rgba(255, 73, 124, 0.3);
}

.tile-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.tile-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.tile-desc {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.45;
    margin-bottom: 14px;
}

.tile-price {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-brand-yellow);
}

.tile-check {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition-bounce);
}

.tile-card.active .tile-check {
    opacity: 1;
    transform: scale(1);
}

/* Options Groups & Pill Selectors */
.options-group {
    margin-bottom: 28px;
}

.options-group-title {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
}

.pill-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pill-option {
    padding: 12px 20px;
    border-radius: var(--border-radius-pill);
    background: var(--bg-dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.05);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.pill-option input[type="radio"] {
    display: none;
}

.pill-option:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.pill-option.active {
    background: var(--gradient-brand);
    color: #ffffff;
    border-color: transparent;
    box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.3), 0 6px 18px rgba(255, 73, 124, 0.4);
}

/* Summary Card */
.summary-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.98rem;
}

.summary-label {
    color: var(--color-text-secondary);
}

.summary-value {
    font-weight: 700;
    color: #ffffff;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

.summary-row.total-row {
    font-size: 1.25rem;
    font-weight: 800;
}

/* Wizard Actions */
.wizard-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Live Estimator Sidebar */
.estimate-box {
    padding: 28px 24px;
    position: sticky;
    top: 100px;
}

.estimate-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.estimate-price-badge {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    padding: 16px;
    border-radius: var(--border-radius-sm);
    background: var(--gradient-brand-subtle);
    border: 1px solid rgba(255, 73, 124, 0.2);
    margin-bottom: 14px;
}

.price-currency {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-brand-yellow);
}

.price-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.estimate-note {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: center;
}

.estimate-items-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.est-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.est-item-price {
    font-weight: 600;
    color: var(--color-brand-yellow);
}

.estimate-guarantee {
    font-size: 0.82rem;
    color: #4ade80;
    text-align: center;
    font-weight: 600;
}

@media (max-width: 900px) {
    .wizard-layout {
        grid-template-columns: 1fr;
    }

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

    .estimate-box {
        position: static;
    }
}


/* ==========================================================================
   Footer Section
   ========================================================================== */
footer {
    background: #040406;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 0 30px 0;
}

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

.footer-brand p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-top: 16px;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.footer-links a {
    color: var(--color-text-secondary);
    font-size: 0.92rem;
}

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

.footer-bottom {
    margin-top: 50px;
    padding-top: 28px;
    padding-bottom: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-text-secondary);
    font-size: 0.88rem;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 140px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-brand-pink), var(--color-brand-yellow), transparent);
}

.copyright-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.01em;
}

.copyright-icon {
    font-size: 1rem;
    color: var(--color-brand-pink);
}

.brand-highlight {
    color: var(--color-text-main);
    font-weight: 600;
}

.developer-credit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.dev-label {
    color: var(--color-text-muted);
    font-size: 0.82rem;
    font-weight: 400;
}

.developer-link {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.dev-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-brand-pink);
    box-shadow: 0 0 8px var(--color-brand-pink);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.dev-name {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.dev-arrow {
    color: var(--color-brand-pink);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.developer-link:hover {
    background: rgba(255, 43, 143, 0.1);
    border-color: rgba(255, 43, 143, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 43, 143, 0.25);
}

.developer-link:hover .dev-dot {
    background: var(--color-brand-yellow);
    box-shadow: 0 0 10px var(--color-brand-yellow);
}

.developer-link:hover .dev-name {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-brand-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.developer-link:hover .dev-arrow {
    color: var(--color-brand-yellow);
    transform: translate(2px, -2px);
}

/* Floating WhatsApp CTA */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.4), 0 8px 24px rgba(37, 211, 102, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 990;
    transition: var(--transition-bounce);
}

.whatsapp-float-btn:hover {
    transform: scale(1.12);
}

/* Responsive Breakpoints System */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 36px auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .stats-grid,
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .services-grid,
    .portfolio-grid,
    .testimonials-grid,
    .footer-top,
    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .quote-grid {
        grid-template-columns: 1fr !important;
    }

    .sticky-estimator,
    .estimate-box {
        position: static !important;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    nav, .header-right {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .hero-title, .hero-content h1 {
        font-size: clamp(1.8rem, 6vw, 2.6rem) !important;
    }

    .stats-grid,
    .services-grid,
    .portfolio-grid,
    .testimonials-grid,
    .founders-wrapper,
    .footer-top,
    .grid-cols-4,
    .grid-cols-3,
    .grid-cols-2 {
        grid-template-columns: 1fr !important;
    }

    .founder-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .founder-avatar {
        width: 110px;
        height: 110px;
    }

    .founder-card {
        text-align: center;
        padding: 32px 24px;
    }

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

    .form-group.full-width {
        grid-column: span 1;
    }

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

    .footer-bottom::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .developer-credit {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-showcase-card {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 640px) {
    .hero-visual {
        margin-top: 24px;
    }

    .hero-showcase-card {
        width: 220px !important;
        height: 220px !important;
        padding: 10px !important;
    }

    .hero-card-logo {
        max-width: 150px !important;
    }

    .hero-float-badge {
        padding: 6px 12px !important;
    }

    .badge-icon {
        font-size: 1rem !important;
    }

    .badge-text strong {
        font-size: 0.78rem !important;
    }

    .badge-text small {
        font-size: 0.65rem !important;
    }

    .badge-top-right {
        top: -12px !important;
        right: 0px !important;
    }

    .badge-bottom-left {
        bottom: -12px !important;
        left: 0px !important;
    }

    .badge-bottom-right {
        bottom: 15px !important;
        right: 0px !important;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .quote-container,
    .quote-form-container {
        padding: 24px 16px !important;
        border-radius: var(--border-radius-md) !important;
    }

    .wizard-progress-bar,
    .wizard-steps-bar {
        overflow-x: auto;
        padding-bottom: 12px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }

    .wizard-step-item,
    .wizard-step {
        flex-shrink: 0;
    }

    .tile-grid {
        grid-template-columns: 1fr !important;
    }

    .tile-card {
        padding: 16px;
    }

    .video-modal-backdrop {
        padding: 12px;
    }

    .video-modal-container {
        border-radius: 14px;
    }
}

@media (max-width: 480px) {
    .mobile-drawer {
        width: 85vw;
        right: -90vw;
    }

    .whatsapp-float-btn {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
}

/* ==========================================================================
   Master Proposal Builder & Extended Wizard Styles (Redesigned Luxury UI)
   ========================================================================== */
.quote-container {
    position: relative;
    padding: 48px 44px;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

@media (max-width: 1200px) {
    .quote-container {
        padding: 36px 30px;
        border-radius: 22px;
    }
}

@media (max-width: 768px) {
    .quote-container {
        padding: 24px 18px;
        border-radius: 18px;
    }
}

.wizard-progress-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 44px;
    padding: 6px 4px 14px 4px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1280px) {
    .wizard-progress-bar {
        overflow-x: auto;
        padding-bottom: 16px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 73, 124, 0.4) rgba(255, 255, 255, 0.05);
    }
    .wizard-progress-bar::-webkit-scrollbar {
        height: 4px;
    }
    .wizard-progress-bar::-webkit-scrollbar-thumb {
        background: rgba(255, 73, 124, 0.4);
        border-radius: 4px;
    }
    .wizard-step-item {
        flex-shrink: 0;
    }
    .wizard-step-line {
        min-width: 24px;
        flex-shrink: 0;
    }
}

.wizard-step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.wizard-step-item.clickable {
    cursor: pointer;
}

.wizard-step-item.clickable:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.wizard-step-item.active {
    opacity: 1;
}

.wizard-step-item .step-num {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-secondary);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 1px 1px 3px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.wizard-step-item .num-text {
    display: inline-block;
}

.wizard-step-item .check-icon {
    display: none;
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
}

.wizard-step-item.active .step-num {
    background: var(--gradient-brand);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(255, 73, 124, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.4);
    transform: scale(1.08);
}

.wizard-step-item.completed .step-num {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 0 14px rgba(16, 185, 129, 0.4);
}

.wizard-step-item.completed .num-text {
    display: none;
}

.wizard-step-item.completed .check-icon {
    display: inline-block;
}

.step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    white-space: nowrap;
    transition: color 0.3s ease;
}

.wizard-step-item.active .step-title,
.wizard-step-item.completed .step-title {
    color: #ffffff;
}

.wizard-step-line {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    min-width: 20px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.wizard-step-line.completed {
    background: linear-gradient(90deg, #10b981 0%, #f43f5e 100%);
    box-shadow: 0 0 8px rgba(244, 63, 94, 0.4);
}

.quote-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 36px;
    align-items: start;
}

@media (max-width: 992px) {
    .quote-grid {
        grid-template-columns: 1fr !important;
    }
    .wizard-progress-bar {
        overflow-x: auto;
        padding-bottom: 12px;
    }
}

.wizard-panel {
    display: none;
    animation: wizardPanelFade 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.wizard-panel.active {
    display: block;
}

@keyframes wizardPanelFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-panel-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--color-brand-yellow);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.wizard-panel-subtitle {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 28px;
}

.tile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

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

.tile-card {
    position: relative;
    padding: 24px 20px;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.06), 0 8px 24px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    overflow: hidden;
}

.tile-card input[type="radio"] {
    display: none;
}

.tile-card:hover {
    border-color: rgba(255, 73, 124, 0.5);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.12), 0 12px 32px rgba(255, 73, 124, 0.15);
}

.tile-card.active {
    background: linear-gradient(135deg, rgba(251, 176, 59, 0.14) 0%, rgba(255, 73, 124, 0.18) 100%);
    border-color: var(--color-brand-pink);
    box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.18), 0 12px 36px rgba(255, 73, 124, 0.35);
    transform: translateY(-2px);
}

.tile-icon {
    flex-shrink: 0;
}

.tile-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-yellow);
    box-shadow: inset 1px 1px 2px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tile-card:hover .tile-icon-wrap {
    color: var(--color-brand-pink);
    border-color: rgba(255, 73, 124, 0.4);
    transform: scale(1.05);
}

.tile-card.active .tile-icon-wrap {
    background: var(--gradient-brand);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(255, 73, 124, 0.4);
}

.tile-info {
    flex: 1;
}

.tile-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.tile-info p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.45;
    margin-bottom: 10px;
}

.tile-price {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-brand-yellow);
    background: rgba(251, 176, 59, 0.1);
    padding: 3px 10px;
    border-radius: 12px;
    border: 1px solid rgba(251, 176, 59, 0.2);
}

.tile-checkmark {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition-bounce);
    box-shadow: 0 2px 8px rgba(255, 73, 124, 0.5);
}

.tile-card.active .tile-checkmark {
    opacity: 1;
    transform: scale(1);
}

.option-group {
    margin-bottom: 28px;
}

.option-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-brand-yellow);
    margin-bottom: 14px;
}

.pills-grid {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pill-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: var(--border-radius-pill);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-text-secondary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
}

.pill-badge {
    font-size: 1rem;
    line-height: 1;
}

.pill-option input[type="radio"] {
    display: none;
}

.pill-option:hover {
    border-color: rgba(255, 73, 124, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07);
}

.pill-option.active {
    background: var(--gradient-brand);
    border-color: transparent;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(255, 73, 124, 0.45);
    transform: translateY(-1px);
}

.wizard-nav-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* estimator sidebar styling */
.sticky-estimator {
    position: sticky;
    top: 120px;
    padding: 28px 24px;
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}

.estimator-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.estimator-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.estimator-progress-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.estimator-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    overflow: hidden;
}

.estimator-progress-fill {
    height: 100%;
    background: var(--gradient-brand);
    border-radius: 6px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.estimator-progress-text {
    font-size: 0.78rem;
    color: var(--color-text-secondary);
    font-weight: 600;
}

.estimator-price-wrap {
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.02);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.estimator-tag {
    display: block;
    color: var(--color-brand-yellow);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 4px;
}

.estimator-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    transition: transform 0.2s ease, color 0.2s ease;
}

.estimator-breakdown-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    font-size: 0.88rem;
}

.estimator-breakdown-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.estimator-breakdown-list .scope-item-name {
    color: var(--color-text-secondary);
    font-weight: 500;
}

.estimator-breakdown-list .scope-item-status {
    color: #4ade80;
    font-weight: 700;
    font-size: 0.82rem;
    background: rgba(74, 222, 128, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.estimator-guarantee {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.guarantee-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* ==========================================================================
   Form Group & Form Controls (Step 5 & Global Contact Inputs)
   ========================================================================== */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.form-group label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.form-control {
    width: 100%;
    box-sizing: border-box;
    display: block;
    padding: 14px 18px;
    border-radius: var(--border-radius-sm);
    background: rgba(18, 18, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.5), inset -1px -1px 2px rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.98rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-brand-pink);
    background: rgba(24, 24, 34, 0.95);
    box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 16px rgba(255, 73, 124, 0.35);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

/* ==========================================================================
   SEO Landing Page Components (Workflow, Capabilities, FAQ, Locations)
   ========================================================================== */

/* 1. Workflow Grid */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.workflow-card {
    position: relative;
    padding: 36px 30px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.workflow-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 73, 124, 0.4);
    box-shadow: var(--shadow-clay-sm), 0 16px 36px rgba(255, 73, 124, 0.15);
}

.workflow-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 73, 124, 0.25) 0%, rgba(139, 92, 246, 0.25) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-brand-pink);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-clay-sm);
}

.workflow-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.workflow-desc {
    color: var(--color-text-secondary);
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

.workflow-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-brand-yellow);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* 2. Capabilities & Gear Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.capability-card {
    padding: 30px 24px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-medium);
}

.capability-card:hover {
    transform: translateY(-6px);
    border-color: rgba(251, 176, 59, 0.4);
    box-shadow: var(--shadow-clay-sm), 0 14px 30px rgba(251, 176, 59, 0.12);
}

.capability-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-pink);
    margin-bottom: 20px;
    box-shadow: var(--shadow-clay-sm);
}

.capability-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.capability-desc {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* 3. Interactive FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item.active {
    border-color: rgba(255, 73, 124, 0.4);
    box-shadow: 0 10px 30px rgba(255, 73, 124, 0.1);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.12rem;
    font-weight: 600;
    cursor: pointer;
    gap: 16px;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-brand-pink);
}

.faq-toggle-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-brand-pink);
    transition: var(--transition-medium);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
    background: var(--color-brand-pink);
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 28px;
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 350px;
    padding: 0 28px 24px 28px;
}

/* 4. Regional Production Hubs */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.location-card {
    padding: 34px 28px;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.location-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: var(--shadow-clay-sm), 0 16px 36px rgba(139, 92, 246, 0.15);
}

.location-flag {
    font-size: 2.2rem;
    margin-bottom: 14px;
    display: block;
}

.location-city {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.location-role {
    color: var(--color-brand-yellow);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.location-desc {
    color: var(--color-text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Print Styles for PDF Proposal Export */
@media print {
    header, footer, nav, .hero, .hero-overlay, .wizard-progress-bar, .wizard-nav-btns, .btn, .location-grid, .faq-accordion {
        display: none !important;
    }

    body {
        background: #ffffff !important;
        color: #000000 !important;
        font-family: 'Helvetica Neue', Arial, sans-serif !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .container, .quote-container, .quote-grid, .estimator-card {
        width: 100% !important;
        max-width: 100% !important;
        background: #ffffff !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .quote-grid {
        display: block !important;
    }

    #master-quote-success {
        display: block !important;
        background: #f8fafc !important;
        color: #0f172a !important;
        border: 2px solid #e2e8f0 !important;
        border-radius: 12px !important;
        padding: 30px !important;
        margin-bottom: 30px !important;
    }

    #master-quote-success h3, #master-quote-success p {
        color: #0f172a !important;
    }

    .estimator-card {
        border: 1px solid #cbd5e1 !important;
        padding: 20px !important;
        border-radius: 8px !important;
        page-break-inside: avoid;
    }

    .estimator-amount, .estimator-title {
        color: #000000 !important;
    }

    .estimator-breakdown-list li {
        border-bottom-color: #cbd5e1 !important;
        color: #334155 !important;
    }
}