/* ============================================================
   DIGI RITUAL — Master Stylesheet
   Colors: Background #0b0b0f | Gold #d4af37 | White #fff
   ============================================================ */

:root {
    --gold: #d4af37;
    --gold-light: #f6e09c;
    --gold-dark: #b8962e;
    --bg: #0b0b0f;
    --bg-alt: #111118;
    --bg-mid: #0e111a;
    --text: #fff;
    --text-muted: #cfcfcf;
    --text-dim: #888;
    --border-gold: rgba(212, 175, 55, 0.3);
    --border-gold-strong: rgba(212, 175, 55, 0.6);
}

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

html {
    overflow-x: hidden;
}

body {
    background: var(--bg);
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    padding-top: 80px;
}

section {
    padding: 80px 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
}

.gold {
    color: var(--gold);
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}

/* ==================== NAVBAR ==================== */
.navbar {
    padding: 0 !important;
    margin: 0;
    background: rgba(11, 11, 15, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 9999;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    /* Override Bootstrap defaults */
    flex-wrap: nowrap !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    background: rgba(11, 11, 15, 0.99);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(212, 175, 55, 0.15);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 20px;
    flex-wrap: nowrap;
    max-width: 1200px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
}

.navbar-logo {
    height: 58px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    transition: opacity 0.3s;
}

.navbar-logo:hover {
    opacity: 0.85;
}

/* Nav links wrapper */
.navbar-collapse {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-basis: auto !important;
    flex-grow: 0 !important;
}

.navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2px;
    margin: 0;
    padding: 0;
    /* Override Bootstrap */
    flex-direction: row !important;
}

.nav-item {
    position: relative;
    margin: 0;
    padding: 0;
}

/* Invisible bridge to prevent mega menu from closing during hover gap */
#megaParent {
    padding-bottom: 14px;
    margin-bottom: -14px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.78) !important;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: 0.4px;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: color 0.25s ease, background 0.25s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active-link::after {
    width: 60%;
    left: 20%;
}

.nav-link:hover,
.nav-link.active-link {
    color: var(--gold) !important;
    background: rgba(212, 175, 55, 0.06);
}

/* Services nav chevron */
.nav-services-toggle .chevron-icon {
    width: 13px;
    height: 13px;
    transition: transform 0.3s ease;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.nav-item.mega-open .chevron-icon {
    transform: rotate(180deg);
}

/* CTA Button */
.navbar-cta {
    flex-shrink: 0;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000 !important;
    padding: 10px 26px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
    display: inline-block;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.45);
    color: #000 !important;
    transform: translateY(-2px);
}

/* ==================== MEGA MENU ==================== */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    width: 800px;
    background: #0e0e16;
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 175, 55, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
    z-index: 10000;
}

/* Invisible hover bridge to prevent menu from closing when moving cursor diagonally */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 0;
    right: 0;
    height: 24px;
    background: transparent;
    pointer-events: auto;
    z-index: 1;
}

/* Notch/arrow */
.mega-menu::after {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 13px;
    height: 13px;
    background: #0e0e16;
    border-left: 1px solid var(--border-gold);
    border-top: 1px solid var(--border-gold);
    pointer-events: none;
}

.nav-item:hover .mega-menu,
.nav-item.mega-open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Keep mega menu open with delay via CSS */
.mega-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

/* Dividers between columns */
.mega-col:not(:last-child) {
    border-right: 1px solid rgba(212, 175, 55, 0.12);
    margin-right: 0;
    padding-right: 28px;
}

.mega-col:not(:first-child) {
    padding-left: 28px;
}

.mega-col-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.mega-col-header-icon {
    width: 32px;
    height: 32px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mega-col-header-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
}

.mega-col-title {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.mega-item:hover {
    background: rgba(212, 175, 55, 0.07);
    transform: translateX(3px);
}

.mega-item-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.mega-item:hover .mega-item-dot {
    opacity: 1;
}

.mega-item-text {
    cursor: pointer;
}

.mega-item-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.3;
    display: block;
    transition: color 0.2s;
}

.mega-item:hover .mega-item-name {
    color: var(--gold);
}

.mega-item-desc {
    color: #666;
    font-size: 11.5px;
    line-height: 1.4;
    margin-top: 2px;
    display: block;
}

/* Bottom CTA bar in mega menu */
.mega-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mega-footer-text {
    font-size: 12px;
    color: #666;
    letter-spacing: 0.3px;
}

.mega-footer-link {
    font-size: 12.5px;
    color: var(--gold);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.mega-footer-link:hover {
    gap: 9px;
}

/* ==================== HAMBURGER (Mobile) ==================== */
.navbar-toggler {
    background: transparent !important;
    border: 1px solid var(--border-gold) !important;
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
    display: 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%28212,175,55,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ==================== HERO ==================== */
.hero {
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 40%,
            rgba(212, 175, 55, 0.18) 0%,
            rgba(212, 175, 55, 0.06) 40%,
            #0b0f1a 72%), #0b0f1a;
}

/* Animated grain overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-content .tagline {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 66px;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.hero h1 span {
    color: var(--gold);
}

.subtitle {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: #000;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--gold-dark);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
    color: #000;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.25s;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--gold);
    color: var(--gold);
}

/* ==================== SECTION LABEL ==================== */
.section-label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11.5px;
    font-weight: 500;
    margin-bottom: 14px;
    display: block;
}

/* ==================== ABOUT (INDEX) ==================== */
.about p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 16px;
}

.circle-image {
    width: 420px;
    height: 420px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at center,
            rgba(212, 175, 55, 0.35) 0%,
            rgba(212, 175, 55, 0.15) 40%,
            rgba(212, 175, 55, 0.04) 70%,
            transparent 100%);
    box-shadow: 0 0 80px rgba(212, 175, 55, 0.25);
}

.circle-image img {
    width: 130%;
    height: 130%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ==================== CARDS ==================== */
.card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.custom-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-gold);
    padding: 40px 32px;
    border-radius: 14px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    height: 100%;
}

.custom-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.1);
}

.custom-card p {
    color: #bfbfbf;
    font-size: 14px;
    line-height: 1.7;
}

.custom-card h4 {
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

/* ==================== PHILOSOPHY ==================== */
.philosophy {
    background: var(--bg);
}

.philosophy h2 {
    letter-spacing: 2px;
    line-height: 1.4;
}

/* ==================== SERVICES SECTION ==================== */
#services-ritual {
    background: var(--bg-mid);
}

#services-ritual h2 {
    letter-spacing: 2px;
    line-height: 1.4;
}

/* ==================== QUOTE BAND ==================== */
.quote {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    text-align: center;
    padding: 70px 20px;
}

.quote h2 {
    font-size: 38px;
    line-height: 1.5;
}

/* ==================== CONTACT FORM ==================== */
.contact-form input,
.contact-form textarea,
.contact-form select {
    background: var(--bg-alt) !important;
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: #fff !important;
    padding: 14px 18px;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: var(--gold-dark);
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: #151520 !important;
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.18);
    color: #fff !important;
    outline: none;
}

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

.contact-form input:-webkit-autofill {
    -webkit-text-fill-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* ==================== FOOTER ==================== */
.custom-footer {
    background: #0b0b14;
    padding: 56px 20px 28px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-title {
    color: var(--gold);
    font-weight: 600;
    font-size: 30px;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    padding: 0 30px;
    letter-spacing: 1px;
}

.footer-title::before,
.footer-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 140px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    transform: translateY(-50%);
    border-radius: 2px;
}

.footer-title::before {
    right: 100%;
    margin-right: 14px;
}

.footer-title::after {
    left: 100%;
    margin-left: 14px;
}

.footer-contact {
    margin-bottom: 22px;
    font-size: 15px;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact a i {
    color: var(--gold);
    margin-right: 5px;
}

.footer-contact a:hover {
    color: var(--gold);
}

.divider {
    margin: 0 18px;
    color: var(--gold);
}

.footer-nav {
    margin-bottom: 22px;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 4px;
    transition: color 0.25s;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-social {
    margin-bottom: 24px;
}

.footer-social a {
    margin: 0 8px;
    font-size: 20px;
    transition: 0.3s ease;
    display: inline-block;
}

.footer-social a:hover {
    transform: translateY(-4px) scale(1.15);
}

.twitter {
    color: #1DA1F2;
}

.youtube {
    color: #FF0000;
}

.linkedin {
    color: #0A66C2;
}

.instagram {
    color: #E4405F;
}

.facebook {
    color: #1877F2;
}

.footer-copy {
    color: rgba(187, 187, 187, 0.5);
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* ==================== PAGE HERO (inner pages) ==================== */
.page-hero {
    padding: 100px 0 70px;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%,
            rgba(212, 175, 55, 0.15) 0%,
            rgba(212, 175, 55, 0.04) 50%,
            transparent 80%), var(--bg);
    border-bottom: 1px solid var(--border-gold);
}

.page-hero h1 {
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.page-hero p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb-bar {
    background: rgba(212, 175, 55, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 10px 0;
}

.breadcrumb-bar span {
    font-size: 12.5px;
    color: #666;
    letter-spacing: 0.3px;
}

.breadcrumb-bar a {
    color: var(--gold);
    text-decoration: none;
}

.breadcrumb-bar a:hover {
    text-decoration: underline;
}

/* ==================== ABOUT PAGE ==================== */
.about-values .value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.value-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--gold);
    opacity: 0.25;
    line-height: 1;
    font-weight: 700;
    flex-shrink: 0;
    width: 52px;
}

.value-content h4 {
    color: var(--gold);
    margin-bottom: 8px;
    font-size: 18px;
}

.value-content p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* Team cards */
.team-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.05));
    border: 2px solid var(--border-gold);
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: var(--gold);
}

.team-card h5 {
    margin-bottom: 6px;
    font-size: 18px;
}

.team-card .role {
    color: var(--gold);
    font-size: 12.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}

.team-card p {
    color: #aaa;
    font-size: 13px;
    line-height: 1.7;
}

/* Stats row */
.stat-box {
    text-align: center;
    padding: 32px 20px;
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    background: var(--bg-alt);
    height: 100%;
}

.stat-box .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-box p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* ==================== SERVICES PAGE ==================== */
.service-detail-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 44px 36px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-detail-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.service-detail-card:hover::after {
    transform: scaleX(1);
}

.service-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon-wrap img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-detail-card h3 {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.service-detail-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: #aaa;
    font-size: 13.5px;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.06);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '→';
    color: var(--gold);
    font-size: 13px;
    flex-shrink: 0;
}

/* Process steps */
.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 28px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 12px;
    background: var(--bg-alt);
    transition: border-color 0.3s, transform 0.3s;
}

.process-step:hover {
    border-color: var(--gold);
    transform: translateX(6px);
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--gold);
    opacity: 0.3;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
}

.step-content h4 {
    color: var(--gold);
    margin-bottom: 8px;
    font-size: 17px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Pricing */
.pricing-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--gold);
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.06), var(--bg-alt));
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 18px;
    border-radius: 20px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.1);
}

.pricing-card h4 {
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 14px;
    font-size: 20px;
}

.price-tag {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #fff;
    margin-bottom: 6px;
}

.price-tag span {
    font-size: 18px;
    color: var(--text-muted);
}

.price-desc {
    color: #666;
    font-size: 12.5px;
    margin-bottom: 26px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    color: #aaa;
    font-size: 13.5px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li::before {
    content: '✦';
    color: var(--gold);
    font-size: 10px;
}

/* ==================== CONTACT PAGE ==================== */
.contact-info-card {
    background: var(--bg-alt);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    padding: 36px 28px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 18px;
}

.contact-info-text h5 {
    margin-bottom: 4px;
    font-size: 15px;
    color: var(--gold);
}

.contact-info-text p,
.contact-info-text a {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
    text-decoration: none;
    transition: color 0.25s;
}

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

/* FAQ accordion */
.faq-item {
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: var(--gold);
}

.faq-question {
    width: 100%;
    background: var(--bg-alt);
    border: none;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    padding: 18px 22px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background 0.25s;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.04);
}

.faq-question .faq-icon {
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

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

.faq-answer {
    background: rgba(212, 175, 55, 0.02);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer.open {
    max-height: 300px;
}

.faq-answer p {
    padding: 18px 22px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* ==================== PHILOSOPHY PAGE ==================== */
.philosophy-intent {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-mid) 50%, var(--bg) 100%);
}

.philosophy-intent p {
    color: #d0d0d0;
    font-size: 18px;
    line-height: 1.9;
    max-width: 850px;
    margin: auto;
}

.brand-quote-card {
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.07), rgba(17, 17, 24, 0.9));
    border: 1px solid var(--border-gold);
    padding: 52px 44px;
    border-radius: 18px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(8px);
    transition: 0.4s ease;
}

.brand-quote-card p {
    font-family: 'Playfair Display', serif;
    font-size: 23px;
    line-height: 1.9;
    color: #f5f5f5;
}

.brand-quote-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
}

.signature-manifesto {
    padding: 80px 0;
    text-align: center;
    background: var(--bg);
}

.signature-manifesto h2 {
    font-size: 44px;
    line-height: 1.5;
    max-width: 900px;
    margin: auto;
    color: #f5f5f5;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .mega-menu {
        width: 560px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .circle-image {
        width: 320px;
        height: 320px;
    }

    .page-hero h1 {
        font-size: 40px;
    }

    .quote h2 {
        font-size: 30px;
    }
}

@media (max-width: 992px) {

    /* Hamburger appears */
    .navbar-toggler {
        display: block;
    }

    .navbar .container {
        height: 70px;
    }

    .navbar-collapse {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(11, 11, 15, 0.99);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-gold);
        padding: 16px 20px 24px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        z-index: 9998;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .navbar-collapse.show {
        display: flex;
    }

    .navbar-nav {
        flex-direction: column !important;
        gap: 2px;
        align-items: stretch;
    }

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

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        margin: 0;
        padding: 14px 16px !important;
        border-radius: 8px;
        font-size: 15px;
    }

    /* Remove underline effect on mobile, use bg instead */
    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active-link {
        background: rgba(212, 175, 55, 0.08);
    }

    /* Mega menu inside mobile */
    .mega-menu {
        display: none !important;
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 10px !important;
        margin-top: 8px !important;
        margin-bottom: 8px !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: none !important;
        overflow: visible !important;
        box-shadow: none !important;
        padding: 16px 12px 20px !important;
        border: 1px solid rgba(212, 175, 55, 0.15) !important;
        background: rgba(14, 14, 22, 0.98) !important;
        pointer-events: auto !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        z-index: 1 !important;
    }

    .mega-menu::before,
    .mega-menu::after {
        display: none !important;
    }

    .nav-item.mega-open .mega-menu {
        display: block !important;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr !important;
        gap: 0;
    }

    .mega-col {
        width: 100% !important;
    }

    .mega-col:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.12);
        padding-right: 0;
        padding-bottom: 14px;
        margin-bottom: 14px;
        margin-right: 0;
    }

    .mega-col:not(:first-child) {
        padding-left: 0;
    }

    .mega-col-header {
        margin-bottom: 10px;
    }

    .mega-col-title {
        font-size: 11px;
    }

    .mega-col-header-icon {
        width: 28px;
        height: 28px;
    }

    .mega-item {
        padding: 8px 10px;
        margin-bottom: 2px;
    }

    .mega-item-name {
        font-size: 13px;
    }

    .mega-item-desc {
        font-size: 11px;
    }

    .mega-footer {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        margin-top: 16px;
        padding-top: 14px;
    }

    .navbar-cta {
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(212, 175, 55, 0.1);
    }

    .navbar-cta .btn-gold,
    .btn-gold {
        width: 100%;
        text-align: center;
        display: block;
        padding: 14px;
        font-size: 14px;
    }

    /* Hero adjustments */
    .hero {
        min-height: auto;
    }

    .hero h1 {
        font-size: 38px;
    }

    /* Page hero */
    .page-hero h1 {
        font-size: 36px;
    }

    /* Circle image */
    .circle-image {
        width: 280px;
        height: 280px;
    }

    /* Pricing cards */
    .pricing-card {
        margin-bottom: 8px;
    }

    .price-tag {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    section {
        padding: 50px 0;
    }

    .navbar .container {
        height: 64px;
        gap: 12px;
    }

    .navbar-collapse {
        top: 64px;
        max-height: calc(100vh - 64px);
    }

    .navbar-logo {
        height: 42px;
        max-width: 130px;
    }

    .hero {
        height: auto;
        padding: 80px 20px 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 30px;
        letter-spacing: 0.5px;
    }

    .hero h1 br {
        display: none;
    }

    .hero-content .tagline {
        font-size: 11px;
        letter-spacing: 3px;
        margin-bottom: 18px;
    }

    .subtitle {
        font-size: 14px;
        margin-bottom: 32px;
        line-height: 1.7;
    }

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

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        text-align: center;
        width: 100%;
        padding: 14px 24px;
    }

    .circle-image {
        width: 220px;
        height: 220px;
        margin-top: 30px;
    }

    /* Section headings */
    .section-label {
        font-size: 10.5px;
        letter-spacing: 2.5px;
    }

    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 20px;
    }

    /* Page hero */
    .page-hero {
        padding: 60px 0 40px;
    }

    .page-hero h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .page-hero p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* About section */
    .about p {
        font-size: 14px;
    }

    /* Cards */
    .custom-card {
        padding: 28px 20px;
    }

    .custom-card p {
        font-size: 13px;
    }

    .card-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 16px;
    }

    /* Quote band */
    .quote {
        padding: 50px 16px;
    }

    .quote h2 {
        font-size: 22px !important;
        line-height: 1.5;
    }

    /* Contact form */
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 12px 14px;
        font-size: 14px;
    }

    /* Contact info card */
    .contact-info-card {
        padding: 28px 20px;
    }

    .contact-info-item {
        gap: 14px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .contact-info-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    /* Footer */
    .custom-footer {
        padding: 40px 16px 24px;
    }

    .footer-title {
        font-size: 20px;
        padding: 0;
        margin-bottom: 20px;
    }

    .footer-title::before,
    .footer-title::after {
        display: none;
    }

    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 10px;
        font-size: 13px;
    }

    .divider {
        display: none;
    }

    .footer-nav {
        gap: 4px;
        margin-bottom: 16px;
    }

    .footer-nav a {
        font-size: 12px;
        padding: 4px 8px;
    }

    .footer-social {
        margin-bottom: 18px;
    }

    .footer-social a {
        font-size: 18px;
        margin: 0 6px;
    }

    .footer-copy {
        font-size: 11.5px;
    }

    /* Services page */
    .service-detail-card {
        padding: 24px 18px;
    }

    .service-detail-card h3 {
        font-size: 18px;
    }

    .service-detail-card p {
        font-size: 13px;
    }

    .service-icon-wrap {
        width: 56px;
        height: 56px;
        border-radius: 12px;
        margin-bottom: 18px;
    }

    .service-icon-wrap img {
        width: 32px;
        height: 32px;
    }

    .service-features li {
        font-size: 12.5px;
        padding: 5px 0;
    }

    /* Process steps */
    .process-step {
        flex-direction: column;
        gap: 12px;
        padding: 22px 18px;
    }

    .step-num {
        font-size: 28px;
        width: auto;
    }

    .step-content h4 {
        font-size: 16px;
    }

    .step-content p {
        font-size: 13px;
    }

    /* Pricing */
    .pricing-card {
        padding: 30px 22px;
    }

    .price-tag {
        font-size: 34px;
    }

    .price-tag span {
        font-size: 15px;
    }

    .price-desc {
        font-size: 12px;
    }

    .pricing-features li {
        font-size: 12.5px;
        padding: 7px 0;
    }

    .pricing-badge {
        font-size: 10px;
        padding: 3px 14px;
        top: -12px;
    }

    /* About page */
    .value-item {
        gap: 14px;
        margin-bottom: 24px;
    }

    .value-number {
        font-size: 32px;
        width: 42px;
    }

    .value-content h4 {
        font-size: 16px;
    }

    .value-content p {
        font-size: 13px;
    }

    .team-card {
        padding: 28px 20px;
    }

    .team-avatar {
        width: 72px;
        height: 72px;
        font-size: 24px;
    }

    .team-card h5 {
        font-size: 16px;
    }

    .team-card .role {
        font-size: 11px;
    }

    .team-card p {
        font-size: 12.5px;
    }

    .stat-box {
        padding: 22px 14px;
    }

    .stat-box .stat-number {
        font-size: 32px;
    }

    .stat-box p {
        font-size: 12px;
    }

    /* Philosophy page */
    .philosophy-intent p {
        font-size: 15px;
        line-height: 1.8;
    }

    .brand-quote-card {
        padding: 28px 18px;
    }

    .brand-quote-card p {
        font-size: 16px;
        line-height: 1.7;
    }

    .signature-manifesto {
        padding: 50px 0;
    }

    .signature-manifesto h2 {
        font-size: 24px !important;
        line-height: 1.5;
    }

    .signature-manifesto h2 br {
        display: none;
    }

    /* FAQ */
    .faq-question {
        font-size: 13.5px;
        padding: 14px 16px;
    }

    .faq-answer p {
        padding: 14px 16px;
        font-size: 13px;
    }

    /* Breadcrumb */
    .breadcrumb-bar {
        padding: 8px 0;
    }

    .breadcrumb-bar span {
        font-size: 11.5px;
    }

    /* Mega footer inside menu */
    .mega-footer {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Extra small devices (320px - 480px) */
@media (max-width: 480px) {
    body {
        padding-top: 64px;
    }

    .navbar .container {
        height: 58px;
        gap: 8px;
        padding: 0 12px;
    }

    .navbar-collapse {
        top: 58px;
        max-height: calc(100vh - 58px);
        padding: 12px 14px 20px;
    }

    .navbar-logo {
        height: 36px;
        max-width: 110px;
    }

    .navbar-toggler {
        padding: 4px 8px;
    }

    .hero {
        padding: 60px 16px 50px;
    }

    .hero h1 {
        font-size: 26px;
        letter-spacing: 0;
    }

    .hero-content .tagline {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 14px;
    }

    .subtitle {
        font-size: 13px;
        margin-bottom: 28px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        padding: 12px 20px;
        font-size: 13px;
    }

    section {
        padding: 40px 0;
    }

    .circle-image {
        width: 180px;
        height: 180px;
    }

    h2 {
        font-size: 22px !important;
    }

    .page-hero {
        padding: 50px 0 32px;
    }

    .page-hero h1 {
        font-size: 22px;
    }

    .page-hero p {
        font-size: 13px;
    }

    .custom-card {
        padding: 22px 16px;
    }

    .card-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 14px;
    }

    .quote {
        padding: 36px 14px;
    }

    .quote h2 {
        font-size: 19px !important;
    }

    .contact-info-card {
        padding: 22px 16px;
    }

    .contact-info-item {
        gap: 12px;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .contact-info-icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
        border-radius: 8px;
    }

    .contact-info-text h5 {
        font-size: 14px;
    }

    .contact-info-text p,
    .contact-info-text a {
        font-size: 12.5px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 11px 12px;
        font-size: 13px;
    }

    .service-detail-card {
        padding: 20px 16px;
    }

    .service-detail-card h3 {
        font-size: 16px;
    }

    .service-features li {
        font-size: 12px;
    }

    .process-step {
        padding: 18px 14px;
    }

    .pricing-card {
        padding: 24px 18px;
    }

    .price-tag {
        font-size: 30px;
    }

    .footer-title {
        font-size: 18px;
    }

    .footer-contact a {
        font-size: 12px;
    }

    .footer-social a {
        font-size: 16px;
        margin: 0 5px;
    }

    .stat-box .stat-number {
        font-size: 28px;
    }

    .stat-box p {
        font-size: 11px;
    }

    .brand-quote-card {
        padding: 22px 14px;
    }

    .brand-quote-card p {
        font-size: 14px;
    }

    .signature-manifesto h2 {
        font-size: 20px !important;
    }

    .team-card {
        padding: 22px 16px;
    }

    .team-avatar {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .value-number {
        font-size: 26px;
        width: 36px;
    }

    .value-content h4 {
        font-size: 15px;
    }

    .value-content p {
        font-size: 12.5px;
    }

    .faq-question {
        font-size: 12.5px;
        padding: 12px 14px;
        gap: 8px;
    }

    .faq-answer p {
        padding: 12px 14px;
        font-size: 12.5px;
    }

    /* Prevent horizontal scroll */
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }
}

/* ==================== SECURITY ==================== */
img {
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
}