:root {
    --gold: #e8a93a;
    --gold-light: #f4c463;
    --gold-dark: #c9891f;
    --bg-black: #0a0a0a;
    --bg-black-2: #0f0f0f;
    --bg-card: #151513;
    --border-gold: rgba(232, 169, 58, 0.25);
    --text-white: #f5f3ef;
    --text-gray: #a9a49c;
    --text-gray-dim: #7c7870;
    --radius: 10px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.eyebrow {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.accent {
    color: var(--gold);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #1a1200;
    transition: all .3s ease;
}

.btn-gold:hover {
    box-shadow: 0 8px 24px rgba(232, 169, 58, 0.35);
    transform: translateY(-2px);
    color: #1a1200;
}

.btn-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: transparent;
    color: var(--text-white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    transition: all .3s ease;
}

.btn-line:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: gap .3s;
}

.learn-more:hover {
    gap: 12px;
    color: var(--gold);
}

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin-bottom: 30px;
    font-weight: 700;
}

/* ===== HEADER (Bootstrap navbar = flexbox) ===== */
.navbar-tm {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 0;
}

.header-spacer {
    height: 76px;
}

.logo-mark {
    width: 32px;
    height: 38px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-text .name {
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-white);
}

.logo-text .tag {
    font-size: 0.52rem;
    letter-spacing: 1.5px;
    color: var(--text-gray-dim);
    text-transform: uppercase;
}

.navbar-brand>img {
    max-width: 200px;
}

.navbar-nav .nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-gray) !important;
    letter-spacing: 0.3px;
    padding: 8px 16px !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold) !important;
}

.navbar-toggler {
    border-color: var(--border-gold);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28232, 169, 58, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu-tm {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
}

.dropdown-menu-tm .dropdown-item {
    color: var(--text-gray);
    font-size: 0.85rem;
}

.dropdown-menu-tm .dropdown-item:hover {
    background: rgba(232, 169, 58, 0.1);
    color: var(--gold);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 110px 0 60px;
    overflow: hidden;
    background: radial-gradient(ellipse at top right, rgba(232, 169, 58, 0.10), transparent 55%), var(--bg-black);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    -webkit-mask-image: radial-gradient(ellipse 55% 70% at 78% 40%, #000 40%, transparent 80%);
    mask-image: radial-gradient(ellipse 55% 70% at 78% 40%, #000 40%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

.hero-skyline {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
    max-width: 640px;
    height: auto;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.hero-row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1 1 420px;
}

.hero-visual-col {
    flex: 1 1 420px;
}

.hero-content h1 {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    font-weight: 700;
}

.hero-content p {
    color: var(--text-gray);
    font-size: 0.98rem;
    max-width: 460px;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-ring {
    position: absolute;
    width: 340px;
    height: 340px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-ring.r2 {
    width: 420px;
    height: 420px;
    opacity: 0.6;
}

.hero-podium {
    width: 170px;
    height: 200px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 34px rgba(232, 169, 58, 0.55));
}

.hero-podium svg {
    width: 100%;
    height: 100%;
}

.hero-base {
    position: absolute;
    bottom: 36px;
    width: 220px;
    height: 26px;
    background: radial-gradient(ellipse, rgba(232, 169, 58, 0.5), transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.orbit-icon {
    position: absolute;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    background: rgba(21, 21, 19, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.05rem;
}

.orbit-icon span {
    position: absolute;
    top: 62px;
    font-size: 0.5rem;
    color: var(--text-gray-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.oi-strategy {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.oi-growth {
    top: 22%;
    left: 2%;
}

.oi-branding {
    top: 22%;
    right: 2%;
}

.oi-innovation {
    bottom: 14%;
    left: -4%;
}

.oi-success {
    bottom: 14%;
    right: -4%;
}

/* ===== TRUST BAR ===== */
.trust {
    padding: 44px 0;
    background: var(--bg-black-2);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 44px;
}

.trust-logos .logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray-dim);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.7;
    transition: opacity .3s;
}

.trust-logos .logo-item:hover {
    opacity: 1;
    color: var(--text-gray);
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
}

.services .section-head {
    max-width: 640px;
    margin-bottom: 56px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin-bottom: 14px;
    font-weight: 700;
}

.section-head p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.services-row {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}

.service-card {
    flex: 1 1 300px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: border-color .3s, transform .3s;
}

.service-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(232, 169, 58, 0.1);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.08rem;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.88rem;
    margin-bottom: 22px;
}

/* ===== WHY CHOOSE US ===== */
.why {
    padding: 100px 0;
    background: var(--bg-black-2);
}

.why-row {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.why-img-col {
    flex: 1 1 420px;
}

.why-content-col {
    flex: 1.2 1 460px;
}

.why-img {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-content h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin-bottom: 30px;
    font-weight: 700;
}

.why-feats {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-bottom: 32px;
}

.feat {
    flex: 1 1 220px;
    display: flex;
    gap: 14px;
}

.feat-icon {
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(232, 169, 58, 0.1);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
}

.feat h4 {
    font-size: 0.92rem;
    margin-bottom: 6px;
}

.feat p {
    color: var(--text-gray);
    font-size: 0.82rem;
}

.stats-bar {
    margin-top: 70px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 36px 20px;
    display: flex;
    flex-wrap: wrap;
    background: var(--bg-card);
}

.stat {
    flex: 1 1 220px;
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    padding: 10px 0;
}

.stat:last-child {
    border-right: none;
}

.stat-icon {
    color: var(--gold);
    font-size: 1.4rem;
}

.stat h3 {
    font-size: 1.6rem;
    color: var(--gold);
    margin: 0;
}

.stat p {
    font-size: 0.72rem;
    color: var(--text-gray-dim);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

/* ===== PROJECTS (SWIPER) ===== */
.work {
    padding: 100px 0;
}

.work-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.filter-btn {
    padding: 9px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: var(--text-gray);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all .25s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gold);
    color: #1a1200;
    border-color: var(--gold);
    font-weight: 600;
}

.work-slider-wrap {
    position: relative;
}

.work-slide {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.work-slide img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform .5s;
}

.work-slide:hover img {
    transform: scale(1.08);
}

.work-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.work-caption h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.work-caption span {
    font-size: 0.75rem;
    color: var(--gold);
}

.slider-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    background: var(--bg-card);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: background .3s;
}

.slider-nav:hover {
    background: var(--gold);
    color: #1a1200;
}

.work-prev {
    left: -22px;
}

.work-next {
    right: -22px;
}

.view-all-wrap {
    text-align: center;
    margin-top: 44px;
}

/* ===== TESTIMONIALS (SWIPER) ===== */
.testimonials {
    padding: 100px 0;
    background: var(--bg-black-2);
    text-align: center;
    position: relative;
}

.testi-wrap {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 64px;
}

.quote-icon {
    color: var(--gold);
    font-size: 2.4rem;
    margin-bottom: 20px;
    opacity: 0.6;
}

.testi-slide p {
    font-size: 1.15rem;
    color: var(--text-white);
    font-weight: 300;
    margin-bottom: 26px;
    line-height: 1.7;
}

.stars {
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testi-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.testi-role {
    color: var(--text-gray-dim);
    font-size: 0.8rem;
}

.testi-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    background: var(--bg-card);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.testi-nav:hover {
    background: var(--gold);
    color: #1a1200;
}

.testi-prev {
    left: 0;
}

.testi-next {
    right: 0;
}
/* ===== PAGE HERO (Contact) ===== */
.page-hero {
    position: relative;
    padding: 150px 0 90px;
    overflow: hidden;
    background: radial-gradient(ellipse at top right, rgba(232, 169, 58, 0.10), transparent 55%), var(--bg-black);
    text-align: center;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    -webkit-mask-image: radial-gradient(ellipse 60% 90% at 50% 30%, #000 40%, transparent 80%);
    mask-image: radial-gradient(ellipse 60% 90% at 50% 30%, #000 40%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

.page-hero .inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: clamp(2.1rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.page-hero p {
    color: var(--text-gray);
    font-size: 0.98rem;
    margin-bottom: 0;
}

.breadcrumb-tm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 0.8rem;
    color: var(--text-gray-dim);
    letter-spacing: 0.5px;
}

.breadcrumb-tm a {
    color: var(--text-gray);
}

.breadcrumb-tm a:hover {
    color: var(--gold);
}

.breadcrumb-tm i {
    font-size: 0.65rem;
    color: var(--gold);
}

/* ===== CONTACT INFO CARDS ===== */
.contact-cards {
    padding: 0 0 100px;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.cc-row {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}

.cc-card {
    flex: 1 1 300px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: border-color .3s, transform .3s;
    text-align: center;
}

.cc-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
}

.cc-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(232, 169, 58, 0.1);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    margin: 0 auto 20px;
}

.cc-card h3 {
    font-size: 1.02rem;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.cc-card p {
    color: var(--text-gray);
    font-size: 0.88rem;
    margin-bottom: 6px;
}

.cc-card a {
    color: var(--text-gray);
    transition: color .25s;
}

.cc-card a:hover {
    color: var(--gold);
}

/* ===== CONTACT FORM + MAP ===== */
.contact-main {
    padding: 0 0 100px;
}

.cm-row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: stretch;
}

.cm-form-col {
    flex: 1.1 1 460px;
}

.cm-map-col {
    flex: 1 1 420px;
}

.cm-form-wrap {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 44px 40px;
    height: 100%;
}

.cm-form-wrap h2 {
    font-size: clamp(1.5rem, 2.6vw, 1.9rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.cm-form-wrap>p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.tm-input-group {
    margin-bottom: 20px;
}

.tm-input-group label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.tm-input-group input,
.tm-input-group select,
.tm-input-group textarea {
    width: 100%;
    padding: 13px 16px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    transition: border-color .25s;
}

.tm-input-group select>option {
    color: #fff;
    background: #000;
}

.tm-input-group input:focus,
.tm-input-group select:focus,
.tm-input-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(232, 169, 58, 0.04);
}

.tm-input-group input::placeholder,
.tm-input-group textarea::placeholder {
    color: var(--text-gray-dim);
}

.tm-input-group textarea {
    resize: vertical;
    min-height: 130px;
}

.tm-row-2 {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.tm-row-2 .tm-input-group {
    flex: 1 1 200px;
}

.cm-submit {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    border: none;
    cursor: pointer;
}

.cm-map-col {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.cm-map-frame {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 280px;
    filter: grayscale(1) invert(0.92) contrast(0.86);
}

.cm-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
}

.cm-hours {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 28px 30px;
}

.cm-hours h4 {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: var(--gold);
    letter-spacing: 0.3px;
}

.cm-hours ul li {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-gray);
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cm-hours ul li:last-child {
    border-bottom: none;
}

.cm-hours ul li span:last-child {
    color: var(--text-white);
    font-weight: 500;
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--bg-black-2);
}

.faq-head {
    max-width: 600px;
    margin: 0 auto 50px;
    text-align: center;
}

.faq-head h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 700;
    margin-bottom: 14px;
}

.faq-head p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.accordion-tm {
    max-width: 820px;
    margin: 0 auto;
}

.accordion-item-tm {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    margin-bottom: 14px;
    overflow: hidden;
}

.accordion-item-tm.active {
    border-color: var(--border-gold);
}

.accordion-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    cursor: pointer;
}

.accordion-q h4 {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.accordion-q i {
    color: var(--gold);
    transition: transform .3s;
}

.accordion-item-tm.active .accordion-q i {
    transform: rotate(45deg);
}

.accordion-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.accordion-a p {
    padding: 0 26px 22px;
    color: var(--text-gray);
    font-size: 0.86rem;
    margin: 0;
}
/* SERVICES INTRO */
.svc-intro {
    padding: 90px 0 40px;
    text-align: center;
}

.svc-intro p {
    color: var(--text-gray);
    max-width: 680px;
    margin: 0 auto;
    font-size: 0.98rem;
}

/* SERVICE DETAIL BLOCKS */
.svc-block {
    padding: 70px 0;
}

.svc-block:nth-child(even) {
    background: var(--bg-black-2);
}

.svc-row {
    display: flex;
    flex-wrap: wrap;
    gap: 56px;
    align-items: center;
}

.svc-row.reverse {
    flex-direction: row-reverse;
}

.svc-img-col {
    flex: 1 1 420px;
}

.svc-text-col {
    flex: 1.1 1 460px;
}

.svc-img {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.svc-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.svc-icon-lg {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(232, 169, 58, 0.1);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 22px;
}

.svc-text-col h2 {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    margin-bottom: 16px;
    font-weight: 700;
}

.svc-text-col p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 22px;
}

.svc-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 28px;
    margin-bottom: 26px;
}

.svc-features li {
    flex: 1 1 220px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.88rem;
}

.svc-features li i {
    color: var(--gold);
}

/* PROCESS */
.process {
    padding: 90px 0;
}

.section-head {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin-bottom: 14px;
    font-weight: 700;
}

.section-head p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.process-row {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}

.process-card {
    flex: 1 1 220px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    position: relative;
    transition: border-color .3s, transform .3s;
}

.process-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-6px);
}

.process-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #1a1200;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1rem;
}

.process-card h4 {
    font-size: 0.98rem;
    margin-bottom: 10px;
}

.process-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0;
}

/* CTA */
.cta-band {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    padding: 56px 0;
    text-align: center;
}

.cta-band h2 {
    color: #1a1200;
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    margin-bottom: 12px;
    font-weight: 700;
}

.cta-band p {
    color: rgba(26, 18, 0, 0.75);
    margin-bottom: 26px;
}

.btn-dark-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1a1200;
    color: var(--gold-light);
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
}
  /* STORY */
  .story {
      padding: 90px 0;
  }

  .story-row {
      display: flex;
      flex-wrap: wrap;
      gap: 56px;
      align-items: center;
  }

  .story-img-col {
      flex: 1 1 420px;
      position: relative;
  }

  .story-text-col {
      flex: 1.1 1 460px;
  }

  .story-img {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .story-img img {
      width: 100%;
      height: 420px;
      object-fit: cover;
  }

  .story-badge {
      position: absolute;
      bottom: -24px;
      right: -24px;
      background: var(--bg-card);
      border: 1px solid var(--border-gold);
      border-radius: var(--radius);
      padding: 22px 28px;
      text-align: center;
  }

  .story-badge h3 {
      color: var(--gold);
      font-size: 2rem;
      margin: 0;
  }

  .story-badge p {
      font-size: 0.72rem;
      color: var(--text-gray-dim);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin: 0;
  }

  .story-text-col h2 {
      font-size: clamp(1.7rem, 3vw, 2.3rem);
      margin-bottom: 18px;
      font-weight: 700;
  }

  .story-text-col p {
      color: var(--text-gray);
      font-size: 0.95rem;
      margin-bottom: 18px;
  }

  /* MISSION / VISION */
  .mv {
      padding: 90px 0;
      background: var(--bg-black-2);
  }

  .mv-row {
      display: flex;
      flex-wrap: wrap;
      gap: 26px;
  }

  .mv-card {
      flex: 1 1 320px;
      background: var(--bg-card);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: var(--radius);
      padding: 36px 32px;
      transition: border-color .3s, transform .3s;
  }

  .mv-card:hover {
      border-color: var(--border-gold);
      transform: translateY(-6px);
  }

  .mv-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(232, 169, 58, 0.1);
      border: 1px solid var(--border-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 1.3rem;
      margin-bottom: 20px;
  }

  .mv-card h3 {
      font-size: 1.1rem;
      margin-bottom: 12px;
  }

  .mv-card p {
      color: var(--text-gray);
      font-size: 0.9rem;
      margin: 0;
  }

  /* VALUES */
  .values {
      padding: 90px 0;
  }

  .section-head {
      max-width: 640px;
      margin: 0 auto 56px;
      text-align: center;
  }

  .section-head h2 {
      font-size: clamp(1.7rem, 3vw, 2.3rem);
      margin-bottom: 14px;
      font-weight: 700;
  }

  .section-head p {
      color: var(--text-gray);
      font-size: 0.95rem;
  }

  .values-row {
      display: flex;
      flex-wrap: wrap;
      gap: 26px;
  }

  .value-card {
      flex: 1 1 220px;
      text-align: center;
      padding: 10px;
  }

  .value-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(232, 169, 58, 0.1);
      border: 1px solid var(--border-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 1.5rem;
      margin: 0 auto 18px;
  }

  .value-card h4 {
      font-size: 0.95rem;
      margin-bottom: 10px;
  }

  .value-card p {
      color: var(--text-gray);
      font-size: 0.84rem;
      margin: 0;
  }

  /* STATS */
  .stats {
      padding: 0 0 90px;
  }

  .stats-bar {
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius);
      padding: 36px 20px;
      display: flex;
      flex-wrap: wrap;
      background: var(--bg-card);
  }

  .stat {
      flex: 1 1 220px;
      display: flex;
      align-items: center;
      gap: 16px;
      justify-content: center;
      border-right: 1px solid rgba(255, 255, 255, 0.07);
      padding: 10px 0;
  }

  .stat:last-child {
      border-right: none;
  }

  .stat-icon {
      color: var(--gold);
      font-size: 1.4rem;
  }

  .stat h3 {
      font-size: 1.6rem;
      color: var(--gold);
      margin: 0;
  }

  .stat p {
      font-size: 0.72rem;
      color: var(--text-gray-dim);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin: 0;
  }


  /* CTA */
  .cta-band {
      background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
      padding: 56px 0;
      text-align: center;
  }

  .cta-band h2 {
      color: #1a1200;
      font-size: clamp(1.4rem, 2.6vw, 1.9rem);
      margin-bottom: 12px;
      font-weight: 700;
  }

  .cta-band p {
      color: rgba(26, 18, 0, 0.75);
      margin-bottom: 26px;
  }

  .btn-dark-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #1a1200;
      color: var(--gold-light);
      padding: 14px 30px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.85rem;
  }
/* ===== FOOTER ===== */
footer {
    padding: 80px 0 0;
    background: var(--bg-black);
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-about {
    flex: 1.4 1 280px;
}

.footer-col {
    flex: 1 1 160px;
}

.footer-about p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 16px 0 20px;
    max-width: 280px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 0.85rem;
    transition: all .25s;
}

.social-icons a:hover {
    background: var(--gold);
    color: #1a1200;
    border-color: var(--gold);
}

.footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-gray);
    font-size: 0.85rem;
    transition: color .25s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding: 26px 0;
    color: var(--text-gray-dim);
    font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media(max-width:991px) {
    .cm-row {
        flex-direction: column;
    }
}

@media(max-width:640px) {
    .cc-card {
        flex: 1 1 100%;
    }

    .footer-col,
    .footer-about {
        flex: 1 1 100%;
    }

    .cm-form-wrap {
        padding: 34px 24px;
    }
}

@media(max-width:560px) {
    .testi-wrap {
        padding: 0 4px;
    }

    .testi-nav {
        position: static;
        transform: none;
        display: inline-flex;
        margin: 18px 8px 0;
    }

    .testi-slide {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* ===== NEWSLETTER ===== */
.newsletter {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    padding: 36px 0;
}

.nl-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.nl-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nl-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1200;
    font-size: 1.3rem;
}

.nl-left h3 {
    color: #1a1200;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.nl-left p {
    color: rgba(26, 18, 0, 0.75);
    font-size: 0.85rem;
    margin: 0;
}

.nl-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nl-form input {
    padding: 14px 18px;
    border-radius: 6px;
    border: none;
    background: rgba(0, 0, 0, 0.15);
    color: #1a1200;
    font-size: 0.85rem;
    min-width: 260px;
}

.nl-form input::placeholder {
    color: rgba(26, 18, 0, 0.6);
}

.nl-form button {
    background: #1a1200;
    color: var(--gold-light);
    border: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== FOOTER ===== */
footer {
    padding: 80px 0 0;
    background: var(--bg-black);
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-about {
    flex: 1.4 1 280px;
}

.footer-col {
    flex: 1 1 160px;
}

.footer-about p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 16px 0 20px;
    max-width: 280px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 0.85rem;
    transition: all .25s;
}

.social-icons a:hover {
    background: var(--gold);
    color: #1a1200;
    border-color: var(--gold);
}

.footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-gray);
    font-size: 0.85rem;
    transition: color .25s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding: 26px 0;
    color: var(--text-gray-dim);
    font-size: 0.8rem;
}

/* PAGE BANNER */
.page-banner {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
    text-align: center;
    background: radial-gradient(ellipse at top right, rgba(232, 169, 58, 0.10), transparent 55%), var(--bg-black-2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
}

.page-banner h1 {
    position: relative;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 14px;
}

.breadcrumb-tm {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-gray-dim);
}

.breadcrumb-tm a {
    color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media(max-width:991px) {
    .hero {
        padding: 70px 0 60px;
    }

    .hero-row {
        flex-direction: column;
        gap: 0;
    }

    .hero-visual-col {
        order: -1;
        width: 100%;
    }

    .hero-visual {
        height: 360px;
    }

    .hero-content {
        flex: 1 1 auto;
        width: 100%;
    }

    .stat {
        flex: 1 1 45%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .services,
    .why,
    .work,
    .testimonials {
        padding: 30px 0 70px 0;
    }

    .stats-bar {
        padding: 20px;
    }

    .stats-bar .stat {
        padding: 20px 0;
    }

    .stats-bar .stat:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media(max-width:640px) {
    .service-card {
        flex: 1 1 100%;
    }

    .feat {
        flex: 1 1 100%;
    }

    .stat {
        flex: 1 1 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .footer-col,
    .footer-about {
        flex: 1 1 100%;
    }

    .nl-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .nl-form {
        width: 100%;
    }

    .nl-form input {
        flex: 1;
        min-width: 0;
    }

    .hero-content {
        flex: 1 1 auto;
    }

    .hero-btns .btn-gold,
    .hero-btns .btn-line {
        flex: 1;
        justify-content: center;
        padding: 12px;
        font-size: 0.75rem;
    }

    .hero-visual>img {
        height: 100%;
        object-fit: cover;
    }

    .oi-growth {
        left: -6%;
    }

    .oi-branding {
        right: -6%;
    }

    .work-prev,
    .work-next {
        display: none;
    }

    .services {
        padding: 30px 0 70px 0;
    }

    .stats-bar {
        padding: 30px;
    }

    .stats-bar .stat {
        padding: 15px 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .stats-bar .stat:last-child {
        border-bottom: none;
    }

    .work {
        padding: 30px 0 70px 0;
    }

    .why {
        padding: 30px 0 70px 0;
    }

    .testimonials {
        padding: 30px 0 70px 0;
    }
    .values,
    .mv {
        padding: 30px 0 70px 0;
    }
}