/* ═══════════════════════════════════════════════════════════════════════════
   APEKSHA THEME — MAIN STYLESHEET
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ─────────────────────────────────────────────────────────── */
:root {
    --color-primary: #111010;
    --color-primary-mid: #1c1a18;
    --color-accent: #c9a84c;
    --color-accent-light: #dfc06a;
    --color-bg-light: #faf6ee;
    --color-bg-cream: #f3edd8;
    --color-text: #1a1814;
    --color-text-light: #6b5f4d;
    --color-white: #ffffff;
    --color-cta-bg: #151312;

    --font-heading: 'Cinzel', 'Georgia', serif;
    --font-body: 'Lato', 'Helvetica Neue', sans-serif;
    --font-sub: 'Raleway', 'Arial', sans-serif;

    --transition: 0.3s ease;
    --radius: 4px;
    --shadow: 0 4px 24px rgba(43, 18, 0, 0.18);
    --container-max: 1200px;
    --header-height: 70px;
}

/* ── RESET & BASE ──────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg-light);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    color: var(--color-accent-light);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad {
    padding: 70px 0;
}

.text-center {
    text-align: center;
}

.text-center .section-divider {
    margin-left: auto;
    margin-right: auto;
}

.text-center .section-title,
.text-center .brands-heading,
.text-center .brands-subheading {
    text-align: center;
}

/* ── BUTTONS ───────────────────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: var(--radius);
    font-family: var(--font-sub);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), transform var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(14, 13, 12, 0.97);
    height: var(--header-height);
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: var(--color-primary);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.site-branding {
    flex-shrink: 0;
}

.custom-logo-wrap img,
.footer-logo img {
    max-height: 55px;
    width: auto;
}

.text-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
}

.text-logo span {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: rgba(200, 134, 10, 0.7);
    font-weight: 400;
}

.text-logo:hover {
    color: var(--color-accent-light);
}

/* Primary Nav */
.primary-nav {
    display: flex;
    align-items: center;
}

#primary-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

#primary-menu li {
    position: relative;
}

#primary-menu li a {
    display: block;
    padding: 10px 14px;
    font-family: var(--font-sub);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
}

#primary-menu li a:hover,
#primary-menu li.current-menu-item>a,
#primary-menu li.current_page_item>a {
    color: var(--color-accent);
    background: rgba(200, 134, 10, 0.1);
}

/* Dropdown */
#primary-menu li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: var(--color-primary);
    border: 1px solid rgba(200, 134, 10, 0.2);
    border-top: 2px solid var(--color-accent);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
    z-index: 100;
    flex-direction: column;
}

#primary-menu li:hover>ul {
    display: flex;
}

#primary-menu li ul li a {
    padding: 10px 18px;
    font-size: 0.78rem;
    border-radius: 0;
}

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

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ═══════════════════════════════════════════════════════════════════════════
   HERO BIO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.hero-bio {
    background: var(--color-primary);
    margin-top: var(--header-height);
    overflow: hidden;
}

.hero-bio-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

/* ── Left: Photo ──────────────────────────────────────────────────────────── */
.hero-bio-photo {
    position: relative;
    display: flex;
    align-items: stretch;
}

.hero-bio-accent-bar {
    width: 5px;
    background: var(--color-accent);
    flex-shrink: 0;
    position: relative;
}

.hero-bio-accent-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: -60px;
    bottom: 0;
    width: 60px;
    background: linear-gradient(to right, rgba(201, 168, 76, 0.3), transparent);
    pointer-events: none;
    display: none;
}

.hero-bio-img-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0908;
}

.hero-bio-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s ease;
}

.hero-bio:hover .hero-bio-img-wrap img {
    transform: scale(1.03);
}

/* ── Right: Content ───────────────────────────────────────────────────────── */
.hero-bio-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px 60px 60px;
    color: var(--color-white);
}

.hero-bio-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}

.hero-bio-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(255, 240, 220, 0.82);
    line-height: 1.85;
    margin-bottom: 18px;
    text-align: justify;
}

.hero-bio-cred-heading {
    font-family: var(--font-sub);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.08em;
    margin-top: 10px;
    margin-bottom: 14px;
}

.hero-bio-credentials {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.hero-bio-credentials li {
    position: relative;
    padding-left: 20px;
    font-size: 0.88rem;
    color: rgba(255, 240, 220, 0.78);
    line-height: 1.75;
    margin-bottom: 6px;
}

.hero-bio-credentials li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 1.1rem;
    line-height: 1.55;
}

.hero-bio-btn {
    align-self: flex-start;
    margin-top: 6px;
    padding: 14px 36px;
    border: 2px solid var(--color-accent);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.about-section {
    background: var(--color-bg-light);
}

.about-split {
    padding: 0;
    /* Override section-pad for split layout */
    background: var(--color-primary-mid);
    /* Dark background for the second section */
}

.about-split-inner {
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
}

.about-content-left {
    order: 1;
    padding-left: 0;
    /* Let it stretch, or add padding if needed */
}

.about-photo-right {
    order: 2;
}

/* On mobile, reverse order so photo is on top */
@media (max-width: 900px) {
    .about-content-left {
        order: 2;
    }

    .about-photo-right {
        order: 1;
    }
}

.about-split .hero-bio-heading,
.about-split .hero-bio-text {
    color: var(--color-white);
}

.about-split .hero-bio-credentials {
    margin-top: 15px;
    margin-bottom: 30px;
}

.about-inner {
    max-width: 780px;
    text-align: center;
}

.section-heading,
.about-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
    line-height: 1.3;
}

.about-subtitle {
    font-family: var(--font-sub);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 18px;
    line-height: 1.6;
}

/* Stars */
.apeksha-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 14px 0 24px;
}

.star {
    font-size: 1.4rem;
    color: rgba(200, 134, 10, 0.25);
    transition: color var(--transition);
}

.star.filled {
    color: var(--color-accent);
}

.about-text p {
    font-size: 1.1rem;
    color: #3a3428;
    line-height: 1.85;
    margin-bottom: 14px;
    text-align: justify;
}





/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.services-section {
    background: var(--color-bg-cream);
}

.services-main-heading {
    text-align: center;
    margin-bottom: 40px;
}

/* ── Tab Navigation ───────────────────────────────────────────────────────── */
.services-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid rgba(201, 168, 76, 0.25);
    margin-bottom: 40px;
    overflow-x: auto;
    scrollbar-width: none;
}

.services-tabs::-webkit-scrollbar {
    display: none;
}

.services-tab-btn {
    position: relative;
    background: none;
    border: none;
    padding: 14px 28px;
    font-family: var(--font-sub);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    cursor: pointer;
    white-space: nowrap;
    transition: color var(--transition);
    outline: none;
}

.services-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.services-tab-btn:hover {
    color: var(--color-text);
}

.services-tab-btn:hover::after {
    transform: scaleX(0.5);
}

.services-tab-btn.active {
    color: var(--color-accent);
}

.services-tab-btn.active::after {
    transform: scaleX(1);
}

/* ── Tab Panels ───────────────────────────────────────────────────────────── */
.services-tab-panel {
    display: none;
    animation: fadeInUp 0.35s ease;
}

.services-tab-panel.active {
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 60px;
}

.service-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto auto auto;
    column-gap: 18px;
    align-items: start;
    padding: 24px 20px;
    background: var(--color-bg-light);
    border-radius: 6px;
    border-bottom: 3px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
    border-bottom-color: var(--color-accent);
    box-shadow: 0 6px 30px rgba(43, 18, 0, 0.12);
    transform: translateY(-4px);
}

.service-label {
    grid-column: 2;
    grid-row: 1;
    font-family: var(--font-sub);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 4px;
    display: block;
}

.service-icon-wrap {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 52px;
    height: 52px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
    padding: 12px;
}

.service-icon-wrap svg {
    width: 100%;
    height: 100%;
    fill: white;
}

.service-title {
    grid-column: 2;
    grid-row: 2;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text);
    margin-bottom: 8px;
}

.service-desc {
    grid-column: 2;
    grid-row: 3;
    font-size: 0.87rem;
    color: var(--color-text-light);
    line-height: 1.65;
    margin-bottom: 10px;
}

.read-more-link {
    grid-column: 2;
    grid-row: 4;
    font-family: var(--font-sub);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    transition: color var(--transition);
    align-self: start;
}

.read-more-link:hover {
    color: var(--color-primary);
}

.no-services-msg {
    text-align: center;
    color: var(--color-text-light);
    font-style: italic;
    padding: 30px 0;
}



/* ═══════════════════════════════════════════════════════════════════════════
   STATS BANNER — PREMIUM
   ═══════════════════════════════════════════════════════════════════════════ */
.stats-banner {
    position: relative;
    background-color: #e8890b;
    padding: 0;
    overflow: hidden;
    isolation: isolate;
}

/* Diagonal stripe texture overlay */
.stats-banner-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-45deg,
            rgba(255, 255, 255, 0.04) 0px,
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px,
            transparent 14px);
    pointer-events: none;
    z-index: 0;
}

/* Top/bottom decorative gold borders */
.stats-banner-edge {
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 2;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.55) 20%,
            rgba(255, 255, 255, 0.9) 50%,
            rgba(255, 255, 255, 0.55) 80%,
            transparent 100%);
}

.stats-banner-edge--top {
    top: 0;
}

.stats-banner-edge--bottom {
    bottom: 0;
}

/* Inner layout */
.stats-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 56px 32px;
    gap: 0;
}

/* Individual stat card */
.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 40px;
    position: relative;
    transition: transform 0.35s ease;
}

.stat-item:hover {
    transform: translateY(-6px);
}

/* Shine sweep on hover */
.stat-item::before {
    content: '';
    position: absolute;
    top: -80%;
    left: -60%;
    width: 60%;
    height: 260%;
    background: linear-gradient(105deg,
            transparent 40%,
            rgba(255, 255, 255, 0.18) 50%,
            transparent 60%);
    transform: skewX(-20deg);
    opacity: 0;
    transition: opacity 0.4s, left 0.7s ease;
}

.stat-item:hover::before {
    opacity: 1;
    left: 130%;
}

/* Sparkle icon */
.stat-icon {
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
    animation: stat-sparkle 3s ease-in-out infinite;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes stat-sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.75;
    }

    50% {
        transform: scale(1.25) rotate(18deg);
        opacity: 1;
    }
}

/* Prefix text */
.stat-prefix {
    font-family: var(--font-sub);
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

/* Big number */
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(255, 255, 255, 0.15);
}

/* Label row with side bars */
.stat-label-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-label-bar {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
    display: block;
    max-width: 28px;
}

.stat-label {
    font-family: var(--font-sub);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Vertical divider */
.stats-divider {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    width: 2px;
    align-self: stretch;
}

.stats-divider-line {
    display: block;
    width: 1px;
    height: 100%;
    min-height: 80px;
    background: linear-gradient(to bottom,
            transparent,
            rgba(255, 255, 255, 0.5) 30%,
            rgba(255, 255, 255, 0.5) 70%,
            transparent);
}

/* Entrance animation */
@keyframes statFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-item {
    animation: statFadeUp 0.6s ease both;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(5) {
    animation-delay: 0.3s;
}


/* ═══════════════════════════════════════════════════════════════════════════
   BRANDS CAROUSEL
   ═══════════════════════════════════════════════════════════════════════════ */
.brands-section {
    background: var(--color-white);
    overflow: hidden;
}

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

.brands-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.brands-subheading {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.brands-carousel-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

/* Gradient masks for smooth fade on edges */
.brands-carousel-wrap::before,
.brands-carousel-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-carousel-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--color-white), transparent);
}

.brands-carousel-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--color-white), transparent);
}

.brands-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brand-slide {
    flex-shrink: 0;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-slide img {
    max-height: 70px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.brand-slide:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS SLIDER — MODERN PREMIUM
   ═══════════════════════════════════════════════════════════════════════════ */
.testimonials-section {
    background: linear-gradient(135deg, #fdfbf7 0%, #f4eee1 100%);
    overflow: hidden;
    position: relative;
}

.testimonials-slider-wrap {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 40px 20px;
    /* Top padding allows avatar overlap */
}

.testimonials-track {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    padding-top: 45px;
    /* Space for the overlapping avatar */
}

.testimonial-card {
    background: var(--color-white);
    padding: 60px 50px 50px;
    border-radius: 24px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.04),
        0 4px 15px rgba(200, 134, 10, 0.05);
    position: relative;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Overlapping Avatar */
.testimonial-avatar-wrap {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    padding: 6px;
    background: var(--color-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 5;
}

.testimonial-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Background Watermark Quote */
.testimonial-watermark {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 16rem;
    color: var(--color-accent);
    opacity: 0.04;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

/* Star Rating */
.testimonial-rating {
    margin-bottom: 24px;
    z-index: 1;
}

.apeksha-stars {
    color: #e5e5e5;
    font-size: 1.15rem;
    letter-spacing: 4px;
}

.apeksha-stars .star.filled {
    color: #f5b041;
    /* bright gold star */
}

/* The Quote Text */
.testimonial-content {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    line-height: 1.5;
    color: var(--color-primary);
    margin-bottom: 35px;
    z-index: 1;
    position: relative;
    font-weight: 400;
}

.testimonial-content p {
    margin-bottom: 0;
}

/* Author Meta */
.testimonial-meta {
    margin-top: auto;
    z-index: 1;
    position: relative;
}

.testimonial-name {
    font-family: var(--font-sub);
    font-size: 1rem;
    font-weight: 700;
    color: #1a1208;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.testimonial-designation {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* Slider Controls */
.ts-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ts-btn:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.ts-prev {
    left: -10px;
}

.ts-next {
    right: -10px;
}

.ts-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.ts-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.ts-dot.active {
    background: var(--color-accent);
    transform: scale(1.2);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--color-primary);
    color: rgba(255, 240, 210, 0.8);
}

.footer-top {
    padding: 60px 0 40px;
}

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

.footer-text-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255, 240, 210, 0.7);
    margin-top: 14px;
}

.footer-heading {
    font-family: var(--font-sub);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(200, 134, 10, 0.25);
}

/* Footer Nav Menu */
.footer-col--links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col--links ul li::before {
    content: '›';
    margin-right: 8px;
    color: var(--color-accent);
}

.footer-col--links ul a {
    font-size: 0.87rem;
    color: rgba(255, 240, 210, 0.78);
    transition: color var(--transition), padding-left var(--transition);
}

.footer-col--links ul a:hover {
    color: var(--color-accent);
    padding-left: 4px;
}

/* Contact List */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.87rem;
    color: rgba(255, 240, 210, 0.8);
    line-height: 1.55;
}

.footer-contact-list svg {
    flex-shrink: 0;
    margin-top: 3px;
    fill: var(--color-accent);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(200, 134, 10, 0.18);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-copyright {
    font-size: 0.82rem;
    color: rgba(255, 240, 210, 0.6);
}

.footer-copyright a {
    color: var(--color-accent);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(200, 134, 10, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    border: 1px solid rgba(200, 134, 10, 0.3);
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.social-icon svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.social-icon:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
}

.social-icon:hover svg {
    fill: var(--color-white);
}


/* ═══════════════════════════════════════════════════════════════════════════
   GENERIC PAGE / SINGLE
   ═══════════════════════════════════════════════════════════════════════════ */
.page-content-wrap {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    min-height: 60vh;
}

.page-hero {
    background: var(--color-primary);
    padding: 80px 0 50px;
    margin-top: var(--header-height);
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    color: var(--color-accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.entry-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 50px 24px;
    font-size: 0.97rem;
    line-height: 1.85;
    color: var(--color-text);
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin: 28px 0 14px;
    letter-spacing: 0.04em;
}

.entry-content p {
    margin-bottom: 18px;
}

.entry-content img {
    border-radius: var(--radius);
    margin: 20px 0;
}

.entry-content a {
    color: var(--color-accent);
}

.entry-content ul,
.entry-content ol {
    padding-left: 22px;
    margin-bottom: 18px;
}

.entry-content li {
    margin-bottom: 8px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL-TO-TOP
   ═══════════════════════════════════════════════════════════════════════════ */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 42px;
    height: 42px;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), background var(--transition);
    box-shadow: 0 3px 14px rgba(43, 18, 0, 0.35);
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
    .hero-bio-inner {
        grid-template-columns: 1fr;
    }

    .hero-bio-photo {
        min-height: 400px;
    }

    .hero-bio-content {
        padding: 40px 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .footer-col--brand {
        grid-column: 1 / -1;
    }

    .stats-inner {
        padding: 44px 20px;
    }

    .stat-item {
        padding: 16px 20px;
    }

    .stat-number {
        font-size: clamp(2.2rem, 5vw, 3.2rem);
    }
}

/* Mobile */
@media (max-width: 640px) {
    :root {
        --header-height: 60px;
    }

    .menu-toggle {
        display: flex;
    }

    .primary-nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-primary);
        border-top: 2px solid var(--color-accent);
        padding: 16px 0;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .primary-nav.open {
        display: block;
    }

    #primary-menu {
        flex-direction: column;
        gap: 0;
    }

    #primary-menu li ul {
        position: static;
        border: none;
        border-top: 1px solid rgba(200, 134, 10, 0.2);
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 0;
    }

    #primary-menu li:hover>ul {
        display: flex;
    }

    .hero-bio-inner {
        grid-template-columns: 1fr;
    }

    .hero-bio-photo {
        min-height: 350px;
    }

    .hero-bio-accent-bar {
        width: 16px;
    }

    .hero-bio-content {
        padding: 30px 20px;
    }

    .hero-bio-heading {
        font-size: 1.3rem;
    }

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

    .service-card {
        grid-template-columns: 46px 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    /* Stats banner: stack on mobile */
    .stats-inner {
        flex-direction: column;
        gap: 0;
        padding: 36px 24px;
    }

    .stats-divider {
        width: 100%;
        height: 1px;
        padding: 0;
    }

    .stats-divider-line {
        width: 60%;
        height: 1px;
        min-height: 1px;
        background: linear-gradient(to right,
                transparent,
                rgba(255, 255, 255, 0.45) 30%,
                rgba(255, 255, 255, 0.45) 70%,
                transparent);
    }

    .stat-item {
        padding: 28px 20px;
    }

    .stat-item:hover {
        transform: none;
    }

    /* Brands Carousel Mobile Tweaks */
    .brands-header {
        margin-bottom: 24px;
        text-align: center;
    }

    .brands-carousel-wrap::before,
    .brands-carousel-wrap::after {
        width: 50px;
    }

    .brand-slide {
        padding: 0 20px;
    }

    .brand-slide img {
        max-height: 50px;
        max-width: 120px;
    }
}


@media (max-width: 400px) {
    .hero-bio-heading {
        font-size: 1.15rem;
    }

    .cta-heading {
        font-size: 1.1rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   COACHING PAGE SPECIFIC STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

/* Included Contents Grid */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.included-card {
    background: #fff;
    border: 1px solid rgba(200, 134, 10, 0.15);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.included-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.included-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(200, 134, 10, 0.08);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.included-icon svg {
    width: 28px;
    height: 28px;
}

.included-title {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.included-desc {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Upcoming Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.event-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.event-img-wrap {
    position: relative;
    aspect-ratio: 561 / 250;
    width: 100%;
}

.event-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.event-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-accent);
    color: #fff;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-card-title {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.event-location {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-location svg {
    color: var(--color-accent);
}

.event-excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.event-card-content .btn {
    align-self: flex-start;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLOG ARCHIVE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */
.blog-hero {
    background: #111;
    color: #fff;
    padding: 100px 0 80px;
    position: relative;
}

.blog-hero .page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 15px;
}

.blog-hero .page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.blog-img-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    overflow: hidden;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.05);
}

.blog-cat-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-accent);
    color: #fff;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    z-index: 2;
}

.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-title {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-card-title a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: var(--color-accent);
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.btn-read-more:hover {
    color: var(--color-accent);
}

.btn-read-more svg {
    transition: transform 0.2s ease;
}

.btn-read-more:hover svg {
    transform: translateX(4px);
}

.blog-pagination {
    margin-top: 60px;
}

.blog-pagination h2.screen-reader-text {
    display: none;
}

.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 10px 18px;
    background: #fff;
    color: var(--color-primary);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
    background: var(--color-accent);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   GALLERY STYLES
   ═══════════════════════════════════════════════════════════════════════════ */
.gallery-filters {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.gallery-filter-btn {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 8px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    transition: opacity 0.4s ease;
}

.gallery-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 9, 8, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-img-wrap:hover img {
    transform: scale(1.08);
}

.gallery-img-wrap:hover .gallery-overlay {
    opacity: 1;
}

.gallery-img-wrap:hover .gallery-title {
    transform: translateY(0);
}

/* Lightbox Styles */
.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation-name: zoom;
    animation-duration: 0.4s;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

@keyframes zoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--color-accent);
    text-decoration: none;
    transform: scale(1.1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */
.contact-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact-section::before,
.contact-section::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, rgba(201, 168, 76, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

.contact-section::before {
    top: -100px;
    right: -100px;
}

.contact-section::after {
    bottom: -150px;
    left: -150px;
}

.contact-pre-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.pre-title-line {
    width: 24px;
    height: 1px;
    background: var(--color-accent);
}

.pre-title-star {
    font-size: 0.8rem;
    color: var(--color-accent);
    line-height: 1;
}

.pre-title-text {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-top-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info-card {
    background: #111010;
    background-image: radial-gradient(circle at top left, rgba(201, 168, 76, 0.16) 0%, transparent 60%);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 16px;
    padding: 50px 40px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 16px;
    color: #ffffff;
}

.contact-info-title .accent-title-part {
    display: block;
    font-style: italic;
    color: var(--color-accent);
    margin-top: 5px;
}

.contact-info-desc {
    font-size: 0.9rem;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 35px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px 20px;
    transition: border-color var(--transition), background var(--transition);
}

.contact-info-item:hover {
    border-color: rgba(201, 168, 76, 0.35);
    background: rgba(201, 168, 76, 0.03);
}

.contact-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-accent);
    color: var(--color-primary);
    border-radius: 8px;
    flex-shrink: 0;
}

.contact-icon-wrapper svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.contact-item-text {
    display: flex;
    flex-direction: column;
}

.contact-item-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
}

.contact-socials-section {
    margin-top: 10px;
}

.contact-social-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-socials-list {
    display: flex;
    gap: 12px;
}

.contact-socials-list .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.35);
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-socials-list .social-icon:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.25);
}

.contact-socials-list .social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.contact-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 480px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-image-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 30px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    color: #ffffff;
}

.contact-quote-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-quote-author {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-form-wrap {
    background: #111010;
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 30px;
}

.form-pre-title {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.25;
}

.form-title .accent-title-part {
    font-style: italic;
    color: var(--color-accent);
}

.form-note {
    font-size: 0.8rem;
    color: #888888;
    max-width: 250px;
    line-height: 1.5;
    text-align: right;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 30px;
    margin-bottom: 24px;
}

.custom-contact-form .form-group {
    margin-bottom: 0;
}

.custom-contact-form .form-group.full-width {
    margin-top: 24px;
}

.custom-contact-form label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.custom-contact-form input,
.custom-contact-form textarea {
    width: 100%;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #ffffff;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.custom-contact-form input::placeholder,
.custom-contact-form textarea::placeholder {
    color: #555555;
}

.custom-contact-form input:focus,
.custom-contact-form textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-actions {
    margin-top: 35px;
}

.custom-submit-btn {
    width: 100%;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 18px;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.custom-submit-btn:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 168, 76, 0.3);
}

.custom-submit-btn span {
    display: inline-block;
    line-height: 1;
}

@media (max-width: 991px) {
    .contact-top-split {
        grid-template-columns: 1fr;
    }

    .contact-image-wrap {
        height: auto;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .form-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .form-note {
        text-align: left;
        max-width: 100%;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-wrap {
        padding: 30px 20px;
    }
}


/* ═══════════════════════════════════════════════════════════════════════════
   NEW 4-COLUMN FOOTER STYLES
   ═══════════════════════════════════════════════════════════════════════════ */
#site-footer {
    background-color: #07090d;
    /* Very dark blue/black */
    color: #f1f1f1;
    font-family: var(--font-body);
}

.footer-top {
    padding: 70px 0 50px;
}

.footer-grid-3col {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 60px;
}

/* Col 1: Logo Text */
.footer-text-logo-custom {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.1;
}

.logo-line-1 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}

.logo-line-2 {
    font-family: var(--font-headings);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-accent);
    text-transform: uppercase;
    margin: 2px 0;
}

.logo-line-3 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #ccc;
    text-transform: uppercase;
}

/* Col 2 & 3: Menus */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--color-accent);
}

/* Col 4: Contact & Socials */
.footer-contact-list-new {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.footer-contact-list-new li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #e0e0e0;
}

.contact-svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.footer-social-new {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-sq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--color-accent);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-sq-icon:hover {
    transform: translateY(-3px);
    background-color: #fff;
    color: var(--color-accent);
}

/* Bottom Bar */
.footer-bottom-new {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-copyright-new {
    margin: 0;
    font-size: 0.85rem;
    color: #aaa;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-grid-3col {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid-3col {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact-list-new li {
        justify-content: center;
    }

    .footer-social-new {
        justify-content: center;
    }

    .footer-text-logo-custom {
        align-items: center;
    }
}