@font-face {
    font-family: 'TikTok Sans';
    src: url('https://sf16-website-login.neutral.ttwstatic.com/obj/tiktok_web_login_static/tiktok_sans/TikTokSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TikTok Sans';
    src: url('https://sf16-website-login.neutral.ttwstatic.com/obj/tiktok_web_login_static/tiktok_sans/TikTokSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TikTok Sans';
    src: url('https://sf16-website-login.neutral.ttwstatic.com/obj/tiktok_web_login_static/tiktok_sans/TikTokSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
/* ==================== CSS RESET & VARIABLES ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
 --primary: #111111;
 --bg: #FFFFFF;
 --bg-secondary: #F7F7F7;
 --accent: #14202c;
 --accent-dark: #14202c;
 --border: #EAEAEA;
 --text: #1A1A1A;
 --muted: #777777;
 --font: 'TikTok Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
 --container: 1400px;
 --radius: 12px;
 --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}
/* Custom Cursor */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-follower {
    width: 36px;
    height: 36px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: 0.15s ease;
    opacity: 0.6;
}
.cursor.hover {
    width: 20px;
    height: 20px;
}
.cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: var(--accent);
    opacity: 0.3;
}
/* Smooth scroll container */
.smooth-wrapper {
    overflow: hidden;
    position: relative;
}
/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 700;
    line-height: 1.15;
    color: var(--primary);
}
p {
    color: var(--muted);
    font-weight: 400;
}
a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}
img {
    max-width: 100%;
    display: block;
}
ul {
    list-style: none;
}
button {
    font-family: var(--font);
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}
input, textarea, select {
    font-family: var(--font);
}
/* ==================== UTILITIES ==================== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}
.section-pad {
    padding: 120px 0;
}
.section-pad-lg {
    padding: 160px 0;
}
.label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
}
.section-title {
    font-size: clamp(36px, 4vw, 62px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 24px;
}
.section-title span {
    color: #4e1818 /*var(--accent)*/;
}
.section-subtitle {
    font-size: 17px;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.8;
}
/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
}
.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.d1 {
    transition-delay: 0.1s !important;
}
.d2 {
    transition-delay: 0.2s !important;
}
.d3 {
    transition-delay: 0.3s !important;
}
.d4 {
    transition-delay: 0.4s !important;
}
.d5 {
    transition-delay: 0.5s !important;
}
.d6 {
    transition-delay: 0.6s !important;
}
/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}
.btn:hover::before {
    transform: translateX(0);
}
.btn-primary {
    background: var(--accent);
    color: #fff;
}
.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(203,176,137,0.4);
}
.btn-outline {
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
}
.btn-outline:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}
.btn-outline1 {
    border: 1px solid #ffffff;
    color: #ffffff;
    background: transparent;
}
.btn-outline1:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}
.btn-white {
    background: #fff;
    color: var(--primary);
}
.btn-white:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}
.btn-dark {
    background: var(--primary);
    color: #fff;
}
.btn-dark:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.btn-icon {
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    transition: all var(--transition);
}
.btn-icon:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
/* Arrow icon */
.arrow-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
}
/* ==================== PRELOADER ==================== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--primary);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 32px;
}
.preloader-logo {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}
.preloader-logo span {
    color: var(--accent);
}
.preloader-bar-wrap {
    width: 240px;
    height: 1px;
    background: rgba(255,255,255,0.15);
}
.preloader-bar {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 2s ease;
}
.preloader-counter {
    font-size: 12px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}
/* ==================== HEADER ==================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    padding: 0 40px;
    transition: all 0.5s ease;
}
#header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 40px rgba(0,0,0,0.08);
    padding: 0 40px;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: height 0.4s;
}
#header.scrolled .header-inner {
    height: 76px;
}
/* Logo */
.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.logo-image {
    display: block;
    height: 46px;
    width: auto;
}
.logo-image--black {
    display: none;
}
#header.scrolled .logo-image--white {
    display: none;
}
#header.scrolled .logo-image--black {
    display: block;
}
/* Navigation */
nav {
    display: flex;
    align-items: center;
    gap: 0;
}
nav > ul {
    display: flex;
    align-items: center;
    gap: 0;
}
nav > ul > li {
    position: relative;
}
nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 32px 22px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}
nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 24px;
    left: 22px;
    right: 22px;
    height: 1px;
    background: #ffffff;  /* was: var(--accent) */
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}
nav > ul > li:hover > a::after, nav > ul > li.active > a::after {
    transform: scaleX(1);
    transform-origin: left;
}
#header.scrolled nav > ul > li > a {
    color: var(--primary);
}
nav > ul > li:hover > a {
    color: #ffffff;
}
#header.scrolled nav > ul > li:hover > a {
    color: var(--accent);
}
#header.scrolled nav > ul > li > a::after {
    background: var(--accent);
}
/* Dropdown arrow */
.has-dropdown > a .caret {
    width: 8px;
    height: 8px;
    border-bottom: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    display: inline-block;
    transition: transform 0.3s;
}
.has-dropdown:hover > a .caret {
    transform: rotate(-135deg);
    margin-top: 3px;
}
/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 240px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border-top: 2px solid var(--accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
    z-index: 100;
}
nav > ul > li.has-dropdown:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 13px 24px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    transition: all 0.25s;
}
.dropdown li:last-child a {
    border-bottom: none;
}
.dropdown li a:hover {
    color: var(--accent);
    padding-left: 32px;
}
.dropdown .has-sub-dropdown {
    position: relative;
}
.dropdown .has-sub-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.dropdown .has-sub-dropdown > a .caret {
    width: 7px;
    height: 7px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.dropdown .has-sub-dropdown:hover > a .caret {
    transform: rotate(45deg) translate(2px, -2px);
}
.sub-dropdown {
    position: absolute;
    top: -2px;
    left: 100%;
    min-width: 280px;
    background: #fff;
    border-top: 2px solid var(--accent);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateX(12px);
    transition: all 0.3s ease;
    z-index: 110;
}
.dropdown .has-sub-dropdown:hover > .sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.sub-dropdown li a {
    padding-left: 24px;
}
.sub-dropdown li a:hover {
    padding-left: 32px;
}
/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}
.header-cta .btn {
    padding: 12px 28px;
    font-size: 12px;
}
.header-tel {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.5px;
    transition: color 0.4s;
}
#header.scrolled .header-tel {
    color: var(--primary);
}
.header-tel:hover {
    color: var(--accent);
}
/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    height: 2px;
    background: #fff;
    transition: all 0.3s;
    border-radius: 2px;
}
.hamburger span:first-child {
    width: 28px;
}
.hamburger span:nth-child(2) {
    width: 20px;
}
.hamburger span:last-child {
    width: 24px;
}
#header.scrolled .hamburger span {
    background: var(--primary);
}
.hamburger.open span:first-child {
    width: 24px;
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}
.hamburger.open span:last-child {
    width: 24px;
    transform: rotate(-45deg) translate(5px, -5px);
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(420px, 100%);
    height: 100vh;
    background: var(--primary);
    z-index: 9500;
    padding: 100px 48px 48px;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mobile-menu.open {
    right: 0;
}
.mobile-menu ul {
    display: flex;
    flex-direction: column;
}
.mobile-menu ul li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu ul li a {
    display: block;
    padding: 18px 0;
    font-size: 22px;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s, padding-left 0.3s;
}
.mobile-menu ul li a:hover {
    color: var(--accent);
    padding-left: 8px;
}
.mobile-menu ul li.mobile-group-heading {
    border-bottom: none;
    padding: 18px 0 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(203,176,137,0.8);
}
.mobile-menu ul li.mobile-subitem a {
    padding: 10px 0 10px 18px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: none;
}
.mobile-menu ul li.mobile-subitem a:hover {
    padding-left: 24px;
}
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9400;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
}
.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-footer {
    margin-top: auto;
    padding-top: 40px;
}
.mobile-menu-footer p {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}
.mobile-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}
.mobile-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: all 0.3s;
}
.mobile-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
}
/* ==================== HERO ==================== */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1008 0%, #0d0d0d 50%, #1a0d0a 100%);
    z-index: 0;
}
/* Luxury interior image via CSS gradient simulation */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(160,120,70,0.18) 0%, transparent 60%), radial-gradient(ellipse 40% 80% at 90% 20%, rgba(203,176,137,0.08) 0%, transparent 50%);
    z-index: 1;
}
.hero-img {
    position: absolute;
    inset: 0;
    background-color: #000;
    background-image: url("images/hero/hero-banner.webp");
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.08);
    transition: transform 8s ease;
}
.hero-img.loaded {
    transform: scale(1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,8,6,0.82) 0%, rgba(10,8,6,0.5) 60%, rgba(10,8,6,0.25) 100%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 90px;
    max-width: 760px;
}
.hero-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #FFC933;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}
.hero-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: #FFC933;
}
.hero-title {
    font-size: clamp(48px, 6.5vw, 92px);
    font-weight: 700;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.9s 1s forwards;
}
.hero-title span {
    color: var(--accent);
    font-style: italic;
}
.hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.9s 1.2s forwards;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s 1.4s forwards;
}
.hero-scroll {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.9s 1.8s forwards;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
 0% {
opacity: 1;
transform: scaleY(1);
transform-origin: top;
}
 100% {
opacity: 0;
transform: scaleY(0);
transform-origin: top;
}
}
/* Hero side stats */
.hero-stats {
    position: absolute;
    right: 60px;
    bottom: 80px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 28px;
    opacity: 0;
    animation: fadeIn 1s 1.6s forwards;
}
.hero-stat {
    text-align: right;
}
.hero-stat-num {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.hero-stat-num span {
    color: var(--bg);
}
.hero-stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFC933;
    margin-top: 4px;
}
.hero-stat-divider {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin-left: auto;
    margin-top: 8px;
}
 @keyframes fadeUp {
 from {
opacity: 0;
transform: translateY(30px);
}
 to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeIn {
 from {
opacity: 0;
}
 to {
opacity: 1;
}
}
/* ==================== MARQUEE ==================== */
.marquee-section {
    background: var(--primary);
    padding: 22px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 0 28px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bg)/*rgba(255,255,255,0.45)*/;
}
.marquee-item .dot {
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.30);
    border-radius: 50%;
    flex-shrink: 0;
}
@keyframes marquee {
 from {
transform: translateX(0);
}
 to {
transform: translateX(-50%);
}
}
/* ==================== ABOUT ==================== */
#about {
    background: var(--bg);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}
.about-media {
    position: relative;
}
.about-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.about-img-main:hover img {
    transform: scale(1.04);
}
.about-img-accent {
    position: absolute;
    right: -48px;
    bottom: -40px;
    width: 52%;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-badge {
    position: absolute;
    top: 40px;
    left: -32px;
    width: 130px;
    height: 130px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 50px rgba(203,176,137,0.4);
}
.about-badge-num {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.about-badge-text {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    text-align: center;
    line-height: 1.4;
    margin-top: 4px;
}
.about-content {
}
.about-text {
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 32px;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s;
}
.about-feature:hover {
    border-color: var(--accent);
    transform: translateX(6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.about-feature-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}
.about-feature-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}
.about-feature-text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}
.about-signature {
    margin-top: 8px;
}
.signature-line {
    font-size: 32px;
    color: var(--accent);
    font-style: italic;
    margin-bottom: 6px;
    font-family: 'Times New Roman', serif;
}
.signature-name {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--muted);
    text-transform: uppercase;
}
/* Stats row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 80px;
}
.stat-item {
    background: #fff;
    padding: 40px 24px;
    text-align: center;
    transition: background 0.3s;
}
.stat-item:hover {
    background: var(--bg-secondary);
}
.stat-num {
    font-size: 52px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-num sup {
    font-size: 28px;
    vertical-align: super;
    color: var(--accent);
}
.stat-num span {
    color: var(--accent);
}
.stat-label {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
}
/* ==================== SERVICES ==================== */
#services {
    background: var(--bg-secondary);
}
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 72px;
}
.services-header .section-subtitle {
    margin-bottom: 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid var(--border);
    group: true;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 72px rgba(0,0,0,0.12);
    border-color: transparent;
}
.service-card-img {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img {
    transform: scale(1.06);
}
.service-card-body {
    padding: 32px 32px 36px;
}
.service-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
    text-transform: uppercase;
}
.service-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    transition: color 0.3s;
}
.service-card:hover .service-card-title {
    color: var(--accent);
}
.service-card-text {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 24px;
}
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    transition: gap 0.3s, color 0.3s;
}
.service-link:hover {
    color: var(--accent);
    gap: 16px;
}
.service-link .arrow {
    width: 20px;
    height: 1px;
    background: currentColor;
    position: relative;
    transition: width 0.3s;
}
.service-link .arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}
.service-link:hover .arrow {
    width: 28px;
}
/* ==================== PROCESS ==================== */
#process {
    background: var(--bg);
}
.process-header {
    text-align: center;
    margin-bottom: 80px;
}
.process-header .section-subtitle {
    margin: 0 auto;
    text-align: center;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 48px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 1px;
    background: var(--border);
    z-index: 0;
}
.process-step {
    text-align: center;
    position: relative;
    padding: 0 20px;
}
.step-icon-wrap {
    width: 96px;
    height: 96px;
    margin: 0 auto 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    font-size: 32px;
    transition: all 0.4s;
}
.process-step:hover .step-icon-wrap {
    border-color: var(--accent);
    background: var(--accent);
    transform: scale(1.08);
    box-shadow: 0 12px 40px rgba(203,176,137,0.35);
}
.step-icon-wrap::after {
    content: attr(data-step);
    position: absolute;
    top: -6px;
    right: -6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}
.step-text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
}
/* ==================== PORTFOLIO / PROJECTS ==================== */
#portfolio {
/*background: var(--bg-secondary);*/
}
.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}
.portfolio-filters {
    display: flex;
    gap: 0;
    margin-bottom: 48px;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px;
    width: fit-content;
    background: #fff;
}
.filter-btn {
    padding: 10px 28px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    transition: all 0.3s;
    cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
    background: var(--accent);
    color: #fff;
}
.portfolio-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(12, 1fr);
}
.portfolio-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.portfolio-item:nth-child(1) {
    grid-column: span 7;
    aspect-ratio: 16/9;
}
.portfolio-item:nth-child(2) {
    grid-column: span 5;
    aspect-ratio: 4/3;
}
.portfolio-item:nth-child(3) {
    grid-column: span 5;
    aspect-ratio: 4/3;
}
.portfolio-item:nth-child(4) {
    grid-column: span 7;
    aspect-ratio: 16/9;
}
.portfolio-item1 {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.portfolio-item1:nth-child(4n+1) {
    grid-column: span 6;
    /*aspect-ratio: 16/10;*/
}
.portfolio-item1:nth-child(4n+2) {
    grid-column: span 6;
    /*aspect-ratio: 4/3;*/
}
.portfolio-item1:nth-child(4n+3) {
    grid-column: span 6;
    /*aspect-ratio: 4/3;*/
}
.portfolio-item1:nth-child(4n) {
    grid-column: span 6;
    /*aspect-ratio: 16/9;*/
}
.portfolio-item1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.portfolio-item1:hover img {
    transform: scale(1.06);
}
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
}
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}
.portfolio-overlay1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 25%, transparent 50%);
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
}
.portfolio-cat {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 8px;
}
.portfolio-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 2px;
    width: fit-content;
}
.portfolio-view-all {
    text-align: center;
    margin-top: 60px;
}
/* ==================== TEAM ==================== */
#team {
    background: var(--bg);
}
.team-header {
    text-align: center;
    margin-bottom: 72px;
}
.team-header .section-subtitle {
    margin: 0 auto;
    text-align: center;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.team-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    transition: all 0.4s;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.1);
}
.team-img {
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
}
.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.team-card:hover .team-img img {
    transform: scale(1.04);
}
.team-social {
    position: absolute;
    inset: 0;
    background: rgba(17,17,17,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.4s;
}
.team-card:hover .team-social {
    opacity: 1;
}
.team-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    transition: all 0.3s;
}
.team-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.team-info {
    padding: 24px 24px 28px;
    background: #fff;
}
.team-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}
.team-role {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
}
/* ==================== TESTIMONIALS ==================== */
#testimonials {
    background: var(--primary);
    overflow: hidden;
}
.testimonials-inner {
    position: relative;
}
.testimonials-label {
    color: rgba(255,255,255,0.4);
}
.testimonials-label::before {
    background: rgba(255,255,255,0.2);
}
.testimonials-title {
    color: #fff;
}
.testimonials-title span {
    color: var(--bg);
}
.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}
.swiper-testimonials {
    overflow: visible !important;
}
.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 52px 52px 44px;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-size: 120px;
    line-height: 1;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 40px;
    font-family: Georgia, serif;
}
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}
.star {
    color: var(--accent);
    font-size: 16px;
}
.testimonial-text {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    font-style: italic;
}
.testimonial-author { /*display: flex; align-items: center; gap: 16px; */
}
.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
}
.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.author-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}
.author-role {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.swiper-nav {
    display: flex;
    gap: 12px;
}
.swiper-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: rgba(255,255,255,0.6);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.swiper-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
/* ==================== CTA SECTION ==================== */
#cta {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0b09 0%, #1a1209 100%);
}
.cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920&q=80&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}
.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}
.cta-label {
    justify-content: center;
    color: rgba(255,255,255,0.5);
}
.cta-label::before {
    background: rgba(255,255,255,0.3);
}
.cta-title {
    font-size: clamp(40px, 5vw, 72px);
    color: #fff;
    margin-bottom: 24px;
}
.cta-title span {
    color: var(--bg);
}
.cta-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    margin: 0 auto 52px;
    max-width: 520px;
}
.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.cta-divider {
    color: rgba(255,255,255,0.3);
    font-size: 12px;
}
/* ==================== BLOG ==================== */
#blog {
    background: var(--bg);
}
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s;
    background: #fff;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-color: transparent;
}
.blog-img {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.blog-card:hover .blog-img img {
    transform: scale(1.05);
}
.blog-body {
    padding: 28px 28px 32px;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.blog-cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(203,176,137,0.12);
    padding: 5px 12px;
    border-radius: 100px;
}
.blog-date {
    font-size: 12px;
    color: var(--muted);
}
.blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.4;
    transition: color 0.3s;
}
.blog-card:hover .blog-title {
    color: var(--accent);
}
.blog-excerpt {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 24px;
}
.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog-author-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}
.blog-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}
.blog-read {
    font-size: 12px;
    color: var(--muted);
}
/* ==================== FOOTER ==================== */
footer {
    background: #0d0d0d;
    color: rgba(255,255,255,0.6);
}
.footer-top {
    padding: 100px 0 72px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
}
.footer-brand {
}
.footer-logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    display: inline-block;
}
.footer-logo span {
    color: var(--accent);
}
.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 32px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 16px;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 16px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 1px;
    background: var(--accent);
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a::before {
    content: '›';
    color: var(--accent);
    opacity: 0;
    transition: 0.3s;
    margin-left: -12px;
}
.footer-links a:hover {
    color: rgba(255,255,255,0.9);
    padding-left: 12px;
}
.footer-links a:hover::before {
    opacity: 1;
}
.footer-contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 14px;
}
.footer-contact-icon {
    color: var(--accent);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}
.newsletter-form {
    margin-top: 20px;
}
.newsletter-input {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
    outline: none;
    margin-bottom: 12px;
    font-family: var(--font);
    transition: border-color 0.3s;
}
.newsletter-input::placeholder {
color: rgba(255,255,255,0.3);
}
.newsletter-input:focus {
    border-color: var(--accent);
}
.newsletter-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 6px;
    font-family: var(--font);
    cursor: pointer;
    border: none;
    transition: background 0.3s;
}
.newsletter-btn:hover {
    background: var(--accent-dark);
}
.footer-bottom {
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}
.footer-copy a {
    color: var(--accent);
}
.footer-bottom-links {
    display: flex;
    gap: 24px;
}
.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    transition: color 0.3s;
}
.footer-bottom-links a:hover {
    color: rgba(255,255,255,0.7);
}
/* ==================== BACK TO TOP ==================== */
#back-top {
    position: fixed;
    right: 36px;
    bottom: 36px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 8000;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 8px 30px rgba(203,176,137,0.4);
}
#back-top.visible {
    opacity: 1;
    visibility: visible;
}
#back-top:hover {
    transform: translateY(-4px);
}
#back-top::before {
    content: '↑';
}
/* ==================== PAGE HERO (Inner Pages) ==================== */
.page-hero {
    height: 420px;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--primary);
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?w=1920&q=80&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}
.page-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;
}
.page-hero-label {
    color: var(--accent);
}
.page-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}
.breadcrumb a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}
.breadcrumb a:hover {
    color: var(--accent);
}
.breadcrumb span {
    color: rgba(255,255,255,0.2);
}
/* ==================== CONTACT SECTION ==================== */
#contact {
    background: var(--bg-secondary);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info {
}
.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}
.contact-detail:last-child {
    border-bottom: none;
}
.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-detail-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}
.contact-detail-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.5;
}
.contact-form-wrap {
    background: #fff;
    border-radius: var(--radius);
    padding: 52px;
    border: 1px solid var(--border);
}
.form-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}
.form-subtitle {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 36px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}
.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text);
    outline: none;
    font-family: var(--font);
    transition: border-color 0.3s;
    background: var(--bg-secondary);
}
.form-control:focus {
    border-color: var(--accent);
    background: #fff;
}
textarea.form-control {
    resize: none;
    min-height: 140px;
}
.form-select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text);
    outline: none;
    font-family: var(--font);
    background: var(--bg-secondary);
    transition: border-color 0.3s;
}
.form-select:focus {
    border-color: var(--accent);
}
.form-submit {
    width: 100%;
    margin-top: 8px;
}
/* ==================== FAQ SECTION ==================== */
#faq {
    background: var(--bg);
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.faq-image {
    border-radius: var(--radius);
    overflow: hidden;
}
.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.3s;
    gap: 20px;
}
.faq-question:hover {
    color: var(--accent);
}
.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: var(--muted);
    transition: all 0.3s;
}
.faq-item.open .faq-toggle {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer-inner {
    padding: 0 0 24px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
}
.faq-item.open .faq-answer {
    max-height: 300px;
}
/* ==================== PRICING ==================== */
#pricing {
    background: var(--bg-secondary);
}
.pricing-header {
    text-align: center;
    margin-bottom: 72px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pricing-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 48px 40px;
    border: 1px solid var(--border);
    transition: all 0.4s;
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.1);
}
.pricing-card.featured {
    background: var(--primary);
    border-color: var(--primary);
}
.pricing-badge {
    position: absolute;
    top: -14px;
    right: 36px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
}
.pricing-plan {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.pricing-price {
    font-size: 60px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}
.pricing-card.featured .pricing-price {
    color: #fff;
}
.pricing-price sup {
    font-size: 24px;
    vertical-align: super;
    margin-right: 4px;
}
.pricing-period {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 32px;
}
.pricing-card.featured .pricing-period {
    color: rgba(255,255,255,0.4);
}
.pricing-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 32px;
}
.pricing-card.featured .pricing-divider {
    background: rgba(255,255,255,0.12);
}
.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}
.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--muted);
}
.pricing-card.featured .pricing-feature {
    color: rgba(255,255,255,0.65);
}
.pricing-check {
    color: var(--accent);
    font-size: 14px;
    flex-shrink: 0;
}
.pricing-card.featured .pricing-title {
    color: #fff;
}
/* ==================== 404 PAGE ==================== */
.page-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg);
    padding: 100px 40px;
}
.err-num {
    font-size: clamp(120px, 20vw, 200px);
    font-weight: 700;
    color: var(--bg-secondary);
    line-height: 1;
    margin-bottom: -20px;
    user-select: none;
}
.err-num span {
    color: var(--accent);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
.container {
    padding: 0 32px;
}
.about-grid {
    gap: 64px;
}
.services-grid {
    grid-template-columns: repeat(2, 1fr);
}
.footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
}
.footer-grid .footer-col:last-child {
    grid-column: 1 / -1;
    max-width: 380px;
}
}

@media (max-width: 1024px) {
.section-pad {
    padding: 90px 0;
}
.about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
}
.about-img-accent {
    right: 0;
    bottom: -20px;
    width: 45%;
}
/*.portfolio-item:nth-child(1) {
    grid-column: span 12;
}
.portfolio-item:nth-child(2) {
    grid-column: span 6;
}
.portfolio-item:nth-child(3) {
    grid-column: span 6;
}
.portfolio-item:nth-child(4) {
    grid-column: span 12;
}*/
	.portfolio-item:nth-child(1) { grid-column: span 12; }
.portfolio-item:nth-child(2) { grid-column: span 6; }
.portfolio-item:nth-child(3) { grid-column: span 6; }
.portfolio-item:nth-child(4) { grid-column: span 12; }
.team-grid {
    grid-template-columns: repeat(2, 1fr);
}
.process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}
.process-steps::before {
    display: none;
}
.faq-grid {
    grid-template-columns: 1fr;
}
.faq-image {
    max-height: 400px;
}
.contact-grid {
    grid-template-columns: 1fr;
}
.stats-row {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.container {
    padding: 0 24px;
}
.section-pad {
    padding: 72px 0;
}
nav {
    display: none;
}
.header-cta .btn, .header-tel {
    display: none;
}
.hamburger {
    display: flex;
}
#header:not(.scrolled) .logo-image--white {
    display: block;
}
#header:not(.scrolled) .logo-image--black {
    display: none;
}
.hero-stats {
    display: none;
}
.hero-title {
    font-size: clamp(36px, 10vw, 56px);
}
.services-grid {
    grid-template-columns: 1fr;
}
.services-header, .blog-header, .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}
.blog-grid {
    grid-template-columns: 1fr;
}
.team-grid {
    grid-template-columns: repeat(2, 1fr);
}
.pricing-grid {
    grid-template-columns: 1fr;
}
.process-steps {
    grid-template-columns: 1fr;
}
.footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}
.footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
}
.form-row {
    grid-template-columns: 1fr;
}
.stats-row {
    grid-template-columns: repeat(2, 1fr);
}
.testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}
.cta-actions {
    flex-direction: column;
}
#header {
    padding: 0 24px;
}
#header.scrolled {
    padding: 0 24px;
}
.portfolio-filters {
    overflow-x: auto;
    width: 100%;
}
	.portfolio-cat {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 8px;
}
.portfolio-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0px;
}
	.portfolio-overlay1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 40%, transparent 50%);
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 10px;
}
}

@media (max-width: 480px) {
.team-grid {
    grid-template-columns: 1fr;
}
.about-img-accent {
    display: none;
}
.about-badge {
    display: none;
}
.hero-actions {
    flex-direction: column;
}
.btn {
    padding: 14px 28px;
}
}
/* ==================== SECTION DIVIDER ==================== */
.divider {
    height: 1px;
    background: var(--border);
    margin: 0 auto;
    max-width: var(--container);
}
/* SVG icons inline (simple shapes) */
.icon-arch::before {
    content: '⬡';
}
.icon-consult::before {
    content: '◈';
}
.icon-kitchen::before {
    content: '◱';
}
.icon-living::before {
    content: '◳';
}
.icon-bath::before {
    content: '◲';
}
.icon-outdoor::before {
    content: '◺';
}
/* Number counter */
.counter {
    font-variant-numeric: tabular-nums;
}

/* Loading skeleton shimmer */
@keyframes shimmer {
 0% {
background-position: -200% 0;
}
 100% {
background-position: 200% 0;
}
}
/* Hero Swiper Slideshow */
.swiper-hero {
    pointer-events: none;
}
.swiper-hero .swiper-slide {
    background-size: cover !important;
    background-position: center !important;
}
/*.swiper-hero .swiper-slide-active { transform: scale(1); }*/
	/* Hero Swiper Fix */
.swiper-hero {
    overflow: hidden !important;
}
.swiper-hero .swiper-wrapper {
    align-items: stretch;
}
.swiper-hero .swiper-slide {
    min-width: 100% !important;
    width: 100% !important;
    flex-shrink: 0;
}
.research-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/hero/research.webp");
    background-size: cover;
    background-position: center top;
    transform: scale(1.06);
    transition: transform 10s ease;
    z-index: 0;
}
.research-hero-bg.loaded {
    transform: scale(1);
}
.blog-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/index/about-03.webp")
    background-size: cover;
    background-position: center top;
    transform: scale(1.06);
    transition: transform 10s ease;
    z-index: 0;
}
.blog-hero-bg.loaded {
    transform: scale(1);
}
.page-hero-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #FFC933;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.page-hero-eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: #FFC933;
}