/* =============================================
   Urbancity Interior Design — Luxury Theme
   Red: #E31E24 | Cream: #F5F5F0 | Dark: #0A0A0A
   Fonts: Cormorant Garamond (headings) | DM Sans (body)
   ============================================= */

:root {
    --primary: #C9A84C;
    --primary-light: #D4B76A;
    --primary-dark: #A68A3D;
    --bg: #F5F5F0;
    --bg-alt: #F0EDE8;
    --dark: #0A0A0A;
    --dark-2: #1A1A1A;
    --dark-3: #2A2A2A;
    --text: #1A1A1A;
    --text-light: #555555;
    --text-lighter: #777777;
    --white: #FFFFFF;
    --border: rgba(0,0,0,0.08);
    --border-dark: rgba(255,255,255,0.1);
    --shadow: 0 4px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-red: 0 10px 40px rgba(201,168,76,0.25);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; overflow-x: hidden;}

html { scroll-behavior: smooth;
    
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.gold-italic {
    font-style: italic;
    color: var(--primary);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Custom Cursor */
.cursor-dot, .cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.cursor-dot {
    width: 8px; height: 8px;
    background: var(--primary);
    transition: transform 0.1s ease;
}
.cursor-ring {
    width: 40px; height: 40px;
    border: 1px solid rgba(201,168,76,0.4);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}
body:hover .cursor-dot, body:hover .cursor-ring { opacity: 1; }
.cursor-expand { width: 60px !important; height: 60px !important; border-color: var(--primary) !important; }

@media (pointer: coarse) {
    .cursor-dot, .cursor-ring { display: none !important; }
    body { cursor: auto; }
    .reveal { opacity: 1; transform: none; }
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 5px 0;
    transition: var(--transition-slow);
    backdrop-filter: blur(10px);
    background: rgba(245,245,240,0);
}
.header.scrolled {
    background: rgba(245,245,240,0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 5px 0;
}

.header-container, .header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    cursor: none;
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 3px;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.logo-main {
    color: var(--white);
}
.logo-sticky {
    color: var(--dark);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
}
.logo span {
    color: var(--primary);
}
.header.scrolled .logo-main {
    opacity: 0;
    visibility: hidden;
}
.header.scrolled .logo-sticky {
    opacity: 1;
    visibility: visible;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}
.nav-item {
    position: relative;
}
.nav-link {
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    cursor: none;
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--primary); }

.header.scrolled .nav-link {
    color: var(--dark);
}
.header.scrolled .nav-link:hover, .header.scrolled .nav-link.active {
    color: var(--primary);
}

/* Dropdown Menu */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    list-style: none;
    z-index: 1001;
}
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}
.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-link {
    display: block;
    padding: 10px 24px;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
    cursor: none;
    white-space: nowrap;
}
.nav-dropdown-link:hover {
    color: var(--primary);
    background: rgba(201,168,76,0.06);
}
.nav-dropdown-link.active {
    color: var(--primary);
}
.nav-link .dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}
.nav-item:hover .nav-link .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mobile dropdown */
.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: none;
    border: none;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    padding: 0;
}
.mobile-dropdown-toggle .dropdown-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}
.mobile-dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}
.mobile-dropdown-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}
.mobile-dropdown-menu.active {
    max-height: 500px;
    padding: 16px 0 8px;
}
.mobile-dropdown-link {
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}
.mobile-dropdown-link:hover, .mobile-dropdown-link.active {
    color: var(--primary);
}

.header-actions { display: flex; align-items: center; gap: 16px; }

.hamburger {
    display: none;
    width: 28px; height: 20px;
    background: none; border: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    display: block; width: 100%; height: 2px;
    background: var(--white);
    transition: 0.3s;
}
.header.scrolled .hamburger span {
    background: var(--dark);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px,-7px); }

.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; height: 100vh;
    background: var(--bg);
    z-index: 999;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 30px;
    padding: 100px 24px 40px;
    overflow-y: auto;
    transition: right 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.mobile-menu.active { right: 0; }
.mobile-nav-list { list-style: none; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.mobile-nav-link {
    text-decoration: none; font-family: var(--font-display);
    font-size: 2rem; font-weight: 600; color: var(--dark);
    cursor: none;
}
.mobile-nav-link:hover { color: var(--primary); }
.mobile-cta { margin-top: 20px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 14px 32px;
    font-family: var(--font-body); font-size: 0.85rem;
    font-weight: 600; letter-spacing: 0.5px;
    text-decoration: none; border: none;
    border-radius: 4px; cursor: none;
    transition: var(--transition); position: relative; overflow: hidden;
}
.btn-primary {
    background: var(--primary); color: var(--white);
}
.btn-primary::before {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.15);
    transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-red); }
.btn-outline {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
    background: var(--white); color: var(--dark);
    border-color: var(--white); transform: translateY(-2px);
}
.btn-outline-dark {
    background: transparent; color: var(--dark);
    border: 1.5px solid var(--border);
}
.btn-outline-dark:hover {
    background: var(--dark); color: var(--white);
    border-color: var(--dark); transform: translateY(-2px);
}
.btn-lg { padding: 16px 40px; font-size: 0.9rem; }
.btn-full { width: 100%; }
.btn-white { background: var(--white); color: var(--dark); }
.btn-white:hover { background: var(--bg); }

/* =============================================
   HERO (Homepage)
   ============================================= */
.hero {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-video-container, .hero-image-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-video-container video,
.hero-image-bg {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.85));
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center; max-width: 900px;
    padding-top: 80px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    font-weight: 600; color: var(--white);
    line-height: 1.1; margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero-title em { font-style: italic; color: var(--primary-light); }
.hero-subtitle {
    font-family: var(--font-body); font-size: clamp(1rem, 1.4vw, 1.25rem);
    color: rgba(255,255,255,0.75); line-height: 1.7;
    margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Hero Page (Subpages) */
.hero-page {
    height: auto;
    min-height: 500px;
    padding: 180px 0 100px;
}
.hero-page .hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-mouse {
    width: 24px; height: 36px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px; position: relative;
}
.scroll-wheel {
    width: 4px; height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}
@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}
.scroll-indicator span {
    font-size: 0.7rem; color: rgba(255,255,255,0.5);
    text-transform: uppercase; letter-spacing: 2px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex; justify-content: center; align-items: center;
    gap: 12px; margin-top: 16px;
}
.breadcrumb a {
    text-decoration: none; font-size: 0.85rem;
    color: rgba(255,255,255,0.6); text-transform: uppercase;
    letter-spacing: 1.5px; cursor: none;
    transition: var(--transition);
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span {
    font-size: 0.85rem; color: rgba(255,255,255,0.4);
    text-transform: uppercase; letter-spacing: 1.5px;
}

/* =============================================
   STATS
   ============================================= */
.stats-bar {
    padding: 0; margin-top: -60px;
    position: relative; z-index: 10;
}
.stats-card, .stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.stat-item {
    padding: 40px 24px; text-align: center;
    border-right: 1px solid var(--border);
    transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg); }
.stat-icon {
    width: 48px; height: 48px;
    background: rgba(201,168,76,0.08);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; color: var(--primary);
    font-size: 1.2rem;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem; font-weight: 700;
    color: var(--dark); line-height: 1;
}
.stat-label {
    font-size: 0.8rem; color: var(--text-lighter);
    margin-top: 8px; letter-spacing: 0.5px;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
    text-align: center; max-width: 800px;
    margin: 0 auto 60px;
}
.section-label {
    display: inline-block; font-family: var(--font-body);
    font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--primary); margin-bottom: 16px;
    padding: 6px 16px; background: rgba(227,30,36,0.08);
    border-radius: 20px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 600; color: var(--dark);
    line-height: 1.15; margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.05rem; color: var(--text-light);
    line-height: 1.7;
}

/* =============================================
   CO-FOUNDER / LEAD DESIGNER
   ============================================= */
.cofounder {
    background: var(--bg-alt);
    padding: 100px 0;
    position: relative;
}
.cofounder-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.cofounder-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.cofounder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}
.cofounder-content {
    padding: 20px 0;
}
.cofounder-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(201,168,76,0.08);
    border-radius: 20px;
}
.cofounder-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}
.cofounder-quote {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
    padding-left: 24px;
    border-left: 3px solid var(--primary);
}
.cofounder-content > p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}
.cofounder-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}
.cofounder-role {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* =============================================
   SERVICES PROFESSIONAL
   ============================================= */
.services-pro {
    background: var(--bg);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.services-pro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}
.service-pro-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow);
}
.service-pro-img {
    height: 180px;
    overflow: hidden;
}
.service-pro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-pro-card:hover .service-pro-img img {
    transform: scale(1.05);
}
.service-pro-body {
    padding: 32px;
}
.service-pro-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 0;
    background: var(--primary);
    transition: height 0.4s ease;
    z-index: 0;
}
.service-pro-card:hover::before {
    height: 4px;
}
.service-pro-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201,168,76,0.2);
    box-shadow: var(--shadow-lg);
}
.service-pro-icon {
    width: 56px; height: 56px;
    background: rgba(201,168,76,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.service-pro-card:hover .service-pro-icon {
    background: var(--primary);
    color: var(--white);
}
.service-pro-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.service-pro-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.service-pro-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    cursor: none;
}
.service-pro-link i { font-size: 0.75rem; transition: transform 0.3s ease; }
.service-pro-link:hover { color: var(--primary-light); }
.service-pro-link:hover i { transform: translateX(4px); }

/* =============================================
   SERVICE DETAIL (Subpage alternating)
   ============================================= */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.service-detail.reverse {
    direction: rtl;
}
.service-detail.reverse > * {
    direction: ltr;
}
.service-detail-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    display: block;
}
.service-detail-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 20px;
}
.service-detail-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}
.service-detail-content ul {
    list-style: none;
    margin: 24px 0;
}
.service-detail-content ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
}
.service-detail-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

/* =============================================
   PROCESS STEPS
   ============================================= */
.service-process {
    background: var(--bg-alt);
    padding: 100px 0;
}
.service-process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.service-process-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px; padding: 36px 28px;
    text-align: center; position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.service-process-step:hover {
    border-color: rgba(201,168,76,0.15);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.process-step-num {
    font-family: var(--font-display);
    font-size: 2.5rem; font-weight: 700;
    color: var(--primary); opacity: 0.25;
    line-height: 1; margin-bottom: 16px;
}
.service-process-step h4 {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 600;
    color: var(--dark); margin-bottom: 10px;
}
.service-process-step p {
    font-size: 0.85rem; color: var(--text-light);
    line-height: 1.6;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section { background: var(--bg-alt); padding: 80px 0; }
.cta-box {
    display: grid; grid-template-columns: 1.4fr 1fr;
    gap: 60px; align-items: center;
    background: var(--white);
    border-radius: 24px;
    padding: 60px;
    box-shadow: var(--shadow-lg);
}
.cta-content h3 {
    font-family: var(--font-body); font-size: 0.85rem;
    font-weight: 600; text-transform: uppercase;
    letter-spacing: 2px; color: var(--primary); margin-bottom: 8px;
}
.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600; color: var(--dark); margin-bottom: 16px;
}
.cta-content p {
    font-size: 1.05rem; color: var(--text-light);
    line-height: 1.7; margin-bottom: 32px;
    max-width: 540px;
}
.cta-image {
    border-radius: 16px; overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 320px;
}
.cta-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* CTA Banner (full width image) */
.cta-banner {
    position: relative;
    padding: 140px 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.cta-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
.cta-banner .container {
    position: relative;
    z-index: 2;
}
.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white);
    margin-bottom: 32px;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us { background: var(--bg); }
.why-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: start;
}
.why-content .section-title { text-align: left; margin-bottom: 8px; }
.why-intro {
    font-size: 1.05rem; color: var(--text-light);
    line-height: 1.7; margin-bottom: 40px;
}
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.why-card, .value-card {
    background: var(--white);
    border-radius: 16px; padding: 28px;
    box-shadow: var(--shadow);
    transition: var(--transition); border: 1px solid var(--border);
}
.why-card:hover, .value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,168,76,0.15);
}
.why-icon, .value-icon {
    width: 44px; height: 44px;
    background: rgba(201,168,76,0.08);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.1rem;
    margin-bottom: 16px;
}
.value-icon {
    stroke-width: 1.5;
}
.why-card h4, .value-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 600;
    color: var(--dark); margin-bottom: 8px;
}
.why-card p, .value-card p {
    font-size: 0.85rem; color: var(--text-lighter);
    line-height: 1.6;
}
.why-image { position: relative; }
.why-image img {
    width: 100%; border-radius: 24px;
    box-shadow: var(--shadow-lg);
}
.why-float-card {
    position: absolute; background: var(--white);
    border-radius: 16px; padding: 20px 24px;
    box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px;
    animation: floatY 3s ease-in-out infinite;
}
.float-1 { bottom: 80px; left: -30px; }
.float-2 { top: 60px; right: -20px; animation-delay: 1.5s; }
.float-icon {
    width: 44px; height: 44px;
    background: var(--primary); color: var(--white);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
}
.float-number {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 700;
    color: var(--dark); display: block; line-height: 1;
}
.float-label { font-size: 0.75rem; color: var(--text-lighter); }
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Values Grid (alt layout) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* =============================================
   PROJECTS
   ============================================= */
.projects {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--bg);
}
.projects-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.project-card {
    border-radius: 20px; overflow: hidden;
    position: relative; cursor: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.project-card.large { grid-column: span 2; }
.project-image { height: 320px; overflow: hidden; }
.project-card.large .project-image { height: 380px; }
.project-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s ease;
}
.project-card:hover .project-image img { transform: scale(1.08); }
.project-info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 32px;
    background: linear-gradient(transparent, rgba(0,0,0,0.88));
    transform: translateY(20px); opacity: 0.9;
    transition: var(--transition);
}
.project-card:hover .project-info { transform: translateY(0); opacity: 1; }
.project-tag {
    display: inline-block; font-size: 0.7rem;
    font-weight: 600; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--primary);
    background: rgba(201,168,76,0.15);
    padding: 4px 12px; border-radius: 20px;
    margin-bottom: 10px;
}
.project-info h3 {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 600;
    color: var(--white); margin-bottom: 6px;
}
.project-info p {
    font-size: 0.85rem; color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

/* =============================================
   GALLERY / PORTFOLIO
   ============================================= */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filter-tab {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: none;
    transition: var(--transition);
}
.filter-tab:hover, .filter-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: none;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}
.gallery-item-info h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 4px;
}
.gallery-item-info span {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.gallery-item.hidden-load {
    display: none;
}
.gallery-item.hidden-load.show {
    display: block;
}

.load-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}
.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: var(--transition);
}
.lightbox-close:hover {
    background: var(--primary);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: var(--transition);
}
.lightbox-nav:hover {
    background: var(--primary);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--bg-alt);
}
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px; padding: 40px 32px;
    position: relative; transition: var(--transition);
    box-shadow: var(--shadow);
}
.testimonial-card:hover {
    border-color: rgba(201,168,76,0.15);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.quote-icon {
    font-size: 2rem; color: var(--primary);
    margin-bottom: 20px; opacity: 0.3;
}
.testimonial-text {
    font-size: 0.9rem; color: var(--text-light);
    line-height: 1.8; margin-bottom: 28px;
    font-style: italic;
}
.testimonial-author h4 {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 600;
    color: var(--dark);
}
.testimonial-author span {
    font-size: 0.8rem; color: var(--primary);
}

/* =============================================
   TEAM
   ============================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.team-member {
    text-align: center;
}
.team-photo {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 3/4;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.team-member:hover .team-photo img {
    transform: scale(1.05);
}
.team-social {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: var(--transition);
}
.team-member:hover .team-social {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.team-social a {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    cursor: none;
    transition: var(--transition);
}
.team-social a:hover {
    background: var(--primary);
    color: var(--white);
}
.team-social a svg {
    width: 16px;
    height: 16px;
}
.team-member h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}
.team-member > span {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}
.team-member > p {
    font-size: 0.85rem;
    color: var(--text-lighter);
    line-height: 1.6;
}

/* =============================================
   ACCORDION
   ============================================= */
.accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.accordion-item {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}
.accordion-item.active {
    border-color: rgba(201,168,76,0.2);
    box-shadow: var(--shadow);
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: none;
    text-align: left;
    gap: 16px;
}
.accordion-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.accordion-item.active .accordion-body {
    max-height: 300px;
    padding: 0 28px 24px;
}
.accordion-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* =============================================
   FAQ
   ============================================= */
.faq { background: var(--bg-alt); }
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.faq-header { position: sticky; top: 120px; }
.faq-header .section-title { text-align: left; margin-bottom: 12px; }
.faq-intro { font-size: 1.05rem; color: var(--text-light); line-height: 1.7; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: rgba(201,168,76,0.1); }
.faq-item.active { border-color: rgba(201,168,76,0.2); box-shadow: var(--shadow); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 28px; cursor: none;
    gap: 16px;
}
.faq-question h4 {
    font-family: var(--font-body); font-size: 0.95rem;
    font-weight: 600; color: var(--dark); line-height: 1.4;
}
.faq-toggle {
    width: 32px; height: 32px; flex-shrink: 0;
    background: var(--bg); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 0.8rem;
    transition: var(--transition);
}
.faq-item.active .faq-toggle { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 28px 24px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* =============================================
   CONTACT
   ============================================= */
.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 16px 20px;
    border: 1.5px solid var(--border);
    border-radius: 12px; font-family: var(--font-body);
    font-size: 0.9rem; color: var(--dark);
    background: var(--bg); transition: var(--transition);
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}
.form-success.show {
    display: block;
}
.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 8px;
}
.form-success p {
    color: var(--text-light);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(201,168,76,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}
.contact-info-icon svg {
    width: 20px;
    height: 20px;
}
.contact-info-item h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}
.contact-info-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 300px;
    margin-top: 20px;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =============================================
   VIDEO SHOWCASE
   ============================================= */
.video-showcase {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--bg-alt);
}
.video-showcase-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.video-showcase-media {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.video-showcase-media video,
.video-showcase-media img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}
.video-showcase-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 20px;
}
.video-showcase-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}
.video-showcase-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.video-showcase-stat {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
}
.video-showcase-stat .num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
}
.video-showcase-stat .label {
    font-size: 0.7rem;
    color: var(--text-lighter);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
}
.video-play-btn {
    width: 80px; height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: none;
    transition: var(--transition);
    box-shadow: 0 0 0 15px rgba(227,30,36,0.15);
}
.video-play-btn:hover {
    transform: scale(1.1);
    background: var(--primary-light);
}

/* =============================================
   HOME CONTACT SECTION
   ============================================= */
.home-contact {
    background: var(--bg);
    padding: 120px 0;
    position: relative;
}
.home-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}
.home-contact-info .section-title {
    text-align: left;
    margin-bottom: 12px;
}
.home-contact-info > p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}
.home-contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.home-contact-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.home-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,168,76,0.1);
}
.home-contact-card-icon {
    width: 44px; height: 44px;
    background: rgba(201,168,76,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 12px;
}
.home-contact-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}
.home-contact-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}
.home-contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    cursor: none;
}
.home-contact-form-wrap {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.home-contact-form-wrap h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}
.home-contact-form-wrap > p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

/* =============================================
   FOOTER BANNER
   ============================================= */
.footer-banner {
    position: relative;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg);
}
.footer-banner-content {
    position: relative; z-index: 2; text-align: center;
}
.footer-banner-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600; color: var(--dark);
    margin-bottom: 32px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--bg-alt);
    padding: 80px 0 0;
    position: relative;
}
.footer-top, .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px; padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
}
.footer-brand p {
    font-size: 0.9rem; color: var(--text-light);
    line-height: 1.7; margin-bottom: 24px;
    margin-top: 16px;
}
.footer-social, .social-links {
    display: flex; gap: 12px;
}
.footer-social a, .social-links a {
    width: 40px; height: 40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    cursor: none;
}
.footer-social a:hover, .social-links a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
}
.social-links a svg {
    width: 18px;
    height: 18px;
}
.footer-links h4, .footer-column h4 {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 600;
    color: var(--dark); margin-bottom: 24px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    text-decoration: none; font-size: 0.85rem;
    color: var(--text-lighter); transition: var(--transition); cursor: none;
}
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-newsletter h4 {
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 600;
    color: var(--dark); margin-bottom: 24px;
}
.footer-newsletter p, .footer-contact p {
    font-size: 0.85rem; color: var(--text-lighter);
    margin-bottom: 8px;
    line-height: 1.6;
}
.footer-bottom {
    padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-lighter); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
    text-decoration: none; font-size: 0.8rem;
    color: var(--text-lighter); transition: var(--transition); cursor: none;
}
.footer-legal a:hover { color: var(--primary); }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed; bottom: 32px; right: 32px;
    width: 50px; height: 50px;
    background: var(--primary); color: var(--white);
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; cursor: none; z-index: 100;
    opacity: 0; visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition); box-shadow: var(--shadow-red);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-4px); }

/* =============================================
   TOAST
   ============================================= */
.toast {
    position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%);
    z-index: 2000;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.toast.show { opacity: 1; visibility: visible; }
.toast-content {
    background: var(--white); color: var(--dark);
    border: 1px solid var(--border);
    padding: 14px 28px; border-radius: 50px;
    display: flex; align-items: center; gap: 12px;
    font-size: 0.9rem; box-shadow: var(--shadow-lg);
}
.toast-content i { color: var(--primary); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .section-padding { padding: 80px 0; }
    .stats-card, .stats-row { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
    .services-pro-grid { grid-template-columns: repeat(2, 1fr); }
    .service-process-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-box { grid-template-columns: 1fr; gap: 40px; }
    .cta-image { display: none; }
    .cta-content { text-align: center; }
    .cta-content p { margin-left: auto; margin-right: auto; }
    .why-grid { grid-template-columns: 1fr; }
    .why-image { max-width: 600px; margin: 0 auto; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .project-card.large { grid-column: span 2; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-header { position: static; }
    .footer-top, .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .cofounder-grid { grid-template-columns: 1fr; }
    .video-showcase-container { grid-template-columns: 1fr; }
    .video-showcase-stats { grid-template-columns: repeat(3, 1fr); }
    .home-contact-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .service-detail { grid-template-columns: 1fr; gap: 40px; }
    .service-detail.reverse { direction: ltr; }
    .contact-layout { grid-template-columns: 1fr; }
    .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .hamburger { display: flex; }
    .header-actions .btn { display: none; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero { min-height: 600px; }
    .stats-card, .stats-row { grid-template-columns: 1fr; margin-top: -40px; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-item:last-child { border-bottom: none; }
    .services-pro-grid { grid-template-columns: 1fr; }
    .service-pro-body { padding: 24px; }
    .service-process-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .project-card.large { grid-column: span 1; }
    .project-image { height: 260px; }
    .project-card.large .project-image { height: 260px; }
    .why-cards { grid-template-columns: 1fr; }
    .why-float-card { display: none; }
    .contact-form-wrap { padding: 28px; }
    .footer-top, .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-social, .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .cta-box { padding: 32px; }
    .cta-content h2 { font-size: 1.6rem; }
    .cta-content p { font-size: 0.95rem; }
    .video-showcase { padding: 80px 0; }
    .video-showcase-text { text-align: center; }
    .video-showcase-text .btn { margin: 0 auto; }
    .video-showcase-media { margin: 0 auto; max-width: 500px; }
    .cofounder { padding: 80px 0; }
    .cofounder-image { max-height: 350px; }
    .cofounder-image img { min-height: auto; }
    .cofounder-content h2 { font-size: 1.6rem; }
    .services-pro { padding: 80px 0; }
    .home-contact { padding: 80px 0; }
    .footer-banner { padding: 80px 0; }
    .page-header h1 { font-size: 2rem; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; }
    .stats-bar { margin-top: -40px; }
    .projects { padding: 80px 0; }
    .testimonials { padding: 80px 0; }
    .faq { padding: 80px 0; }
    .section-title { font-size: 1.8rem; }
    .btn-lg { padding: 14px 28px; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .service-detail-image img { min-height: auto; }
    .gallery-masonry { grid-template-columns: 1fr; }
    .filter-tabs { gap: 8px; }
    .filter-tab { padding: 8px 16px; font-size: 0.8rem; }
    .lightbox-nav { width: 40px; height: 40px; }
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }
    .accordion-header { padding: 20px; font-size: 0.9rem; }
    .accordion-item.active .accordion-body { padding: 0 20px 20px; }
    .video-showcase-stats { grid-template-columns: 1fr; }
    .video-play-btn { width: 70px; height: 70px; font-size: 1.3rem; }
    .home-contact-cards { grid-template-columns: 1fr; }
    .home-contact-form-wrap { padding: 28px; }
    .cofounder-quote { font-size: 1.1rem; }
    .hero-page { min-height: auto; padding: 140px 0 80px; }
    .contact-map { height: 250px; }
}

/* Animation visibility fix */
.service-card, .project-card, .testimonial-card, .why-card, .stat-item, .faq-item, .cta-box, .contact-form-wrap, .contact-info, .service-detail-card, .service-process-step, .mission-card, .cert-card, .leader-card, .timeline-item, .contact-card, .gallery-item, .value-card, .team-member {
    opacity: 1 !important;
    will-change: transform, opacity;
}
