@charset "UTF-8";
/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&amp;display=swap");
/* ══════════════════════════════════════════════
   DESIGN SYSTEM
══════════════════════════════════════════════ */
:root {
    --gold: #A7715C;
    --rose: #c8856a;
    --rose-lt: #e0a88e;
    --rose-dk: #9e5c43;
    --dark: #111;
    --ink: rgb(32 31 31 / 85%);
    --ink2: rgb(20 19 18 / 84%);
    --ink3: #2e2826;
    --cream: #fffdf9;
    --warm: #f7f2ec;
    --warm2: #ede6db;
    --muted: #7a6e68;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.06);
    --glass2: rgba(255, 255, 255, 0.03);
    --border: rgba(200, 133, 106, 0.18);
    --borderW: rgba(255, 255, 255, 0.08);
    --shadow: 0 32px 80px rgba(200, 133, 106, 0.15);
    --r: 2px;
}
a:hover {
    color: var(--rose);
}
a{
    color: var(--gold);
}
@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl,
    .container-xxxl {
        max-width: 1320px;
    }
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
.container-xxxl {
    --bs-gutter-x: 30px;
}

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

html {
    scroll-behavior: smooth;
}
body {
    font-family: "Jost", sans-serif;
    background: var(--ink);
    color: var(--white);
    overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
    font-family: "Playfair Display", serif;
}
::-webkit-scrollbar {
    width: 3px;
}
::-webkit-scrollbar-track {
    background: var(--ink);
}
::-webkit-scrollbar-thumb {
    background: var(--rose);
    border-radius: 2px;
}


/* ── NAVBAR ── */
.navbar-viya {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.5s ease;
    background-color: #eee;
}
.navbar-viya.stuck {
    padding: 14px 0;
    background: rga(255, 255, 255, 0.9);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--borderW);
}
.nav-logo {
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.06em;
}
.nav-logo span {
    background: linear-gradient(135deg, var(--rose-lt), var(--rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(17, 15, 15, 0.6);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: var(--r);
    transition: all 0.3s;
}
.nav-a:hover {
    color: var(--gold);
}
.nav-cta {
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 10px 26px;
    background: linear-gradient(135deg, var(--rose), var(--rose-dk));
    color: var(--white);
    text-decoration: none;
    border-radius: var(--r);
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(200, 133, 106, 0.3);
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(200, 133, 106, 0.45);
    color: var(--white);
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}
.hero-mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(200, 133, 106, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(200, 133, 106, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 80% 10%, rgba(158, 92, 67, 0.12) 0%, transparent 50%),
        linear-gradient(160deg, #0e0c0b 0%, #1c1410 50%, #0e0c0b 100%);
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(200, 133, 106, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 133, 106, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px;
}
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 20px 8px 10px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rose-lt);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}
.hero-pill-dot {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--rose), var(--rose-dk));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(200, 133, 106, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(200, 133, 106, 0);
    }
}
.hero h1 {
    font-size: clamp(3.2rem, 4.1vw, 6.2rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    color: var(--white);
}
.hero h1 .grad {
    background: linear-gradient(135deg, var(--rose-lt) 0%, var(--rose) 50%, #e8c4aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 48px;
    font-weight: 300;
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}
.btn-rose {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--rose), var(--rose-dk));
    color: var(--white);
    text-decoration: none;
    border-radius: var(--r);
    transition: all 0.35s;
    box-shadow: 0 12px 40px rgba(200, 133, 106, 0.35);
    border: none;
}
.btn-rose:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(200, 133, 106, 0.5);
    color: var(--white);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 15px 36px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-radius: var(--r);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
}
.btn-ghost:hover {
    border-color: var(--rose);
    color: var(--rose-lt);
    background: rgba(200, 133, 106, 0.06);
}
.hero-kpis {
    display: flex;
    gap: 0;
    border: 1px solid var(--borderW);
    background: var(--glass2);
    backdrop-filter: blur(12px);
    width: fit-content;
    border-radius: var(--r);
    overflow: hidden;
}
.kpi-item {
    padding: 22px 36px;
    border-right: 1px solid var(--borderW);
    text-align: center;
}
.kpi-item:last-child {
    border-right: none;
}
.kpi-num {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--rose-lt);
    line-height: 1;
    margin-bottom: 4px;
}
.kpi-label {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}
/* Hero right side */
.hero-right {
    position: relative;
    height: 620px;
}
.hero-main-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    filter: brightness(0.85);
}
.hero-card-float {
    position: absolute;
    background: rgba(14, 12, 11, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--borderW);
    border-radius: 4px;
    padding: 20px 24px;
    transition: transform 0.3s;
}
.hero-card-float:hover {
    transform: scale(1.03);
}
.hc1 {
    bottom: 60px;
    left: -30px;
    min-width: 200px;
}
.hc2 {
    top: 40px;
    left: 0px;
    min-width: 170px;
}
.hc-label {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rose-lt);
    margin-bottom: 6px;
}
.hc-val {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
}
.hc-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
}
.hero-badge {
    position: absolute;
    bottom: -20px;
    right: 10px;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--rose), var(--rose-dk));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 36px rgba(200, 133, 106, 0.4);
    animation: spin-slow 12s linear infinite;
}
.hero-badge-inner {
    text-align: center;
}
.hero-badge .num {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.hero-badge .txt {
    font-size: 0.52rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}
@keyframes spin-slow {
    to {
        transform: rotate(360deg);
    }
}

/* ── LOGO TICKER ── */
.ticker-section {
    padding: 40px 0;
    background: rgba(22, 17, 17, 0.05);
    border-top: 1px solid var(--borderW);
    border-bottom: 1px solid var(--borderW);
    overflow: hidden;
}
.ticker-label {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dark);
    text-align: center;
    margin-bottom: 24px;
}
.ticker-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: ticker 28s linear infinite;
}
.ticker-track:hover {
    animation-play-state: paused;
}
@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 56px;
    white-space: nowrap;
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.06em;
    border-right: 1px solid var(--borderW);
    transition: color 0.3s;
    cursor: default;
}
.ticker-item:hover {
    color: var(--rose-lt);
}
.ticker-item i {
    font-size: 0.8rem;
    color: var(--rose);
    opacity: 0.6;
}
.ticker-dot {
    width: 5px;
    height: 5px;
    background: var(--rose);
    border-radius: 50%;
    opacity: 0.5;
}

/* ── SECTION COMMON ── */
.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 18px;
}
.sec-tag::before {
    content: "";
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--rose), transparent);
}
.sec-h {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--white);
}
.sec-h .it {
    font-style: italic;
    color: var(--rose-lt);
    font-weight: 400;
}
.sec-light {
    color: var(--ink);
}
.sec-h.dark {
    color: var(--ink);
}
.sec-tag.dark {
    color: var(--rose-dk);
}
.sec-tag.dark::before {
    background: linear-gradient(90deg, var(--rose-dk), transparent);
}

/* ── ABOUT ── */
.about-section {
    padding: 130px 0;
    background: var(--warm);
    position: relative;
    overflow: hidden;
}
.about-section::before {
    content: "VIYA";
    position: absolute;
    font-family: "Playfair Display", serif;
    font-size: 28vw;
    font-weight: 900;
    color: rgba(200, 133, 106, 0.04);
    right: -5vw;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -0.02em;
}
.feat-pill {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 32px;
    background: var(--white);
    border: 1px solid rgba(200, 133, 106, 0.12);
    border-radius: 4px;
    transition: all 0.4s;
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
}
.feat-pill::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 133, 106, 0.06), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}
.feat-pill:hover::after {
    opacity: 1;
}
.feat-pill:hover {
    transform: translateX(6px);
    box-shadow: 0 16px 48px rgba(200, 133, 106, 0.12);
    border-color: var(--rose);
}
.feat-ico {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--rose), var(--rose-dk));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
}
.feat-title {
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
}
.feat-desc {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.7;
}
.about-img-wrap {
    position: relative;
    padding: 24px 24px 24px 0;
}
.about-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    position: relative;
    z-index: 1;
}
.about-img-deco {
    position: absolute;
    bottom: 0;
    left: 24px;
    width: 70%;
    height: 70%;
    border: 2px solid rgba(200, 133, 106, 0.25);
    border-radius: 4px;
    z-index: 0;
}
.about-stat-block {
    position: absolute;
    top: 50px;
    right: 0;
    background: linear-gradient(135deg, var(--rose), var(--rose-dk));
    padding: 28px 32px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 16px 48px rgba(200, 133, 106, 0.4);
}
.about-stat-block .n {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.about-stat-block .l {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
}

/* ── SERVICES ── */
.services-section {
    padding: 130px 0;
    background: var(--ink2);
    position: relative;
    overflow: hidden;
}
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    height: 320px;
}
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.65) saturate(0.8);
}
.service-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.45) saturate(0.6);
}
.svc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 12, 11, 0.96) 0%, rgba(14, 12, 11, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}
.svc-tag {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 6px;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s 0.05s;
}
.svc-title {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.svc-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rose-lt);
    text-decoration: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s 0.1s;
}
.service-card:hover .svc-tag,
.service-card:hover .svc-arrow {
    opacity: 1;
    transform: translateY(0);
}
.svc-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    transition:
        color 0.4s,
        opacity 0.4s;
}
.service-card:hover .svc-num {
    color: rgba(200, 133, 106, 0.15);
}

/* ── CTA STRIP ── */
.cta-strip {
    background: linear-gradient(135deg, var(--rose-dk) 0%, var(--rose) 50%, var(--rose-lt) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 50px,
        rgba(255, 255, 255, 0.03) 50px,
        rgba(255, 255, 255, 0.03) 51px
    );
}
.cta-strip::after {
    content: "";
    position: absolute;
    right: -150px;
    top: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}
.cta-counter {
    font-family: "Playfair Display", serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.testimonials-section{
    padding: 80px 0px;
}

/* ===== Slider Wrapper ===== */
.testi-slider-wrap {
    overflow: hidden;
    max-width: 1200px;
    margin: auto;
}

.testi-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 15px;
}

.testi-name{
    font-weight: 600;
}
.testi-card {
    flex: 0 0 32%;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s;
}

/* Mobile */
@media (max-width: 768px) {
    .testi-card {
        flex: 0 0 100%;
    }
}

.testimonial-section {
    background: #f9fafc;
}

.testi-card.v2 {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.testi-card.v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}




.testi-stars {
    color: gold;
    font-size: 18px;
}

.testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}


.slider-btns {
    text-align: center;
    margin-top: 25px;
}

.slider-btns button {
    background: linear-gradient(135deg, var(--rose), var(--rose-dk));
    color: #fff;
    border: none;
    padding: 12px 28px;
    margin: 8px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Hover Effect */
.slider-btns button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

/* Click Effect */
.slider-btns button:active {
    transform: scale(0.95);
}

/* ── FAQ ── */
.faq-section {
    padding: 130px 0;
    background: var(--ink2);
}
.faq-section.v2 {
    padding: 70px 0;
    background: var(--ink2);
}
.faq-item {
    border-bottom: 1px solid var(--borderW);
}
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
    cursor: pointer;
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s;
    gap: 20px;
}
.faq-q:hover {
    color: var(--white);
}
.faq-item.open .faq-q {
    color: var(--rose-lt);
}
.faq-toggle {
    width: 36px;
    height: 36px;
    border: 1px solid var(--borderW);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: all 0.4s;
    background: var(--glass2);
}
.faq-item.open .faq-toggle {
    background: var(--rose);
    border-color: var(--rose);
    color: var(--white);
    transform: rotate(45deg);
}
.faq-a {
    display: none;
    padding: 0 48px 26px 0;
    font-size: 0.91rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.85;
}

.faq-section.v2 .faq-item {
    border-bottom: 1px solid var(--ink2);
}
.faq-section.v2 .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
    cursor: pointer;
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(26, 24, 24, 0.75);
    transition: color 0.3s;
    gap: 20px;
}
.faq-section.v2 .faq-q:hover {
    color: var(--gold);
}
.faq-section.v2 .faq-item.open .faq-q {
    color: var(--rose-lt);
}
.faq-section.v2 .faq-toggle {
    width: 36px;
    height: 36px;
    border: 1px solid var(--ink2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: all 0.4s;
    background: var(--black);
}
.faq-section.v2 .faq-item.open .faq-toggle {
    background: var(--rose);
    border-color: var(--rose);
    color: var(--dark);
    transform: rotate(45deg);
}
.faq-section.v2 .faq-a {
    display: none;
    padding: 0 48px 26px 0;
    font-size: 0.91rem;
    color: rgba(26, 24, 24, 0.75);
    line-height: 1.85;
}


/* ── CONTACT ── */
.contact-section {
    padding: 130px 0;
    background: var(--ink);
    position: relative;
    overflow: hidden;
}
.contact-section::before {
    content: "";
    position: absolute;
    top: -300px;
    right: -300px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 133, 106, 0.06), transparent 70%);
    pointer-events: none;
}
.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 36px;
}
.c-ico {
    width: 52px;
    height: 52px;
    background: rgba(200, 133, 106, 0.1);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s;
}
.contact-info-row:hover .c-ico {
    background: var(--rose);
    border-color: var(--rose);
    color: var(--white);
}
.c-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rose-lt);
    margin-bottom: 4px;
}
.c-val {
    font-family: "Playfair Display", serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
}
.contact-form {
    background: var(--glass2);
    border: 1px solid var(--borderW);
    border-radius: 4px;
    padding: 48px;
    backdrop-filter: blur(10px);
}
.cf-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
    display: block;
}
.cf-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--borderW);
    border-radius: var(--r);
    color: var(--white);
    font-family: "Jost", sans-serif;
    font-size: 15px;
    outline: none;
    transition:
        border-color 0.3s,
        background 0.3s;
    margin-bottom: 20px;
}
.cf-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}
.cf-input:focus {
    border-color: var(--rose);
    background: rgba(200, 133, 106, 0.04);
}
textarea.cf-input {
    resize: none;
}

/* ── BLOG ── */
.blog-section {
    padding: 100px 0;
    /*background: var(--ink2);*/
}
.blog-card {
    background: var(--glass2);
    border: 1px solid var(--borderW);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s;
    height: 100%;
}
.blog-card:hover {
    border-color: rgba(200, 133, 106, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}
.blog-card-img {
    overflow: hidden;
    height: 210px;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.8);
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.07);
    filter: brightness(0.7);
}
.blog-body {
    padding: 28px 32px 32px;
    background-color: var(--cream);
}
.blog-date {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 12px;
}
.blog-title{
    
    margin-bottom: 12px;
}
.blog-title a{
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    text-decoration: none;
}
.blog-title a:hover{
    color: var(--rose);
}

.blog-exc {
    font-size: 0.86rem;
    color: rgba(24, 24, 24, 0.9);
    line-height: 1.7;
    margin-bottom: 24px;
}
.blog-lnk {
    font-size: 0.73rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rose);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}
.blog-lnk:hover {
    gap: 14px;
    color: var(--rose-lt);
}

/* ── FOOTER ── */
.footer {
    background: var(--ink);
    padding: 90px 0 0;
    border-top: 1px solid var(--borderW);
}
.footer-logo {
    font-family: "Playfair Display", serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
}
.footer-logo span {
    color: var(--rose);
}
.footer-desc {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.8;
    max-width: 280px;
    margin-bottom: 28px;
}
.footer-head {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 22px;
}
.footer-ul {
    list-style: none;
}
.footer-ul li {
    margin-bottom: 10px;
}
.footer-ul a {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-ul a:hover {
    color: var(--rose-lt);
}
.footer-ul a::before {
    content: "";
    width: 0;
    height: 1px;
    background: var(--rose);
    transition: width 0.3s;
}
.footer-ul a:hover::before {
    width: 10px;
}
.socials {
    display: flex;
    gap: 12px;
}
.social-a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--borderW);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s;
}
.social-a:hover {
    background: var(--rose);
    border-color: var(--rose);
    color: var(--white);
    transform: translateY(-3px);
}
.footer-bottom {
    margin-top: 60px;
    padding: 22px 0;
    border-top: 1px solid var(--borderW);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
}
.footer-copy a{
    color: var(--rose)
}
.footer-copy a:hover{
    color: var(--gold)
}
/* ── UPGRADE BANNER ── */
.upgrade-sec {
    padding: 60px 0 60px;
    background: var(--warm);
}
.upgrade-card {
    background: linear-gradient(135deg, var(--rose-dk) 0%, var(--rose) 60%, var(--rose-lt) 100%);
    border-radius: 4px;
    padding: 60px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}
.upgrade-card::before {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    pointer-events: none;
}
.upgrade-card::after {
    content: "";
    position: absolute;
    right: 60px;
    top: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}
.upg-ico {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}
.upg-title {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 6px;
}
.upg-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}
.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 36px;
    background: var(--white);
    color: var(--rose-dk);
    text-decoration: none;
    border-radius: var(--r);
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-white:hover {
    background: var(--ink);
    color: var(--white);
    transform: translateY(-2px);
}

/* ── SCROLL FADE ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}
.reveal.on {
    opacity: 1;
    transform: translateY(0);
}
.reveal-d1 {
    transition-delay: 0.1s;
}
.reveal-d2 {
    transition-delay: 0.2s;
}
.reveal-d3 {
    transition-delay: 0.3s;
}

/* ── CLIENTS SECTION ── */
.clients-section {
    padding: 80px 0;
    background: var(--warm2);
    border-top: 1px solid rgba(200, 133, 106, 0.1);
}



dl, ol, ul{
    padding-left: 0px !important;
}


/* ── STORY SECTION ── */
.story-section {
    padding: 120px 0;
    background: var(--ink2);
}
.story-section img{
    width: 100%; height: 420px; object-fit: cover; display: block; filter: brightness(0.8)
}
.about_box p{
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.85;
}
.about_box ul{
    padding-left: 15px !important;
}
.about_box ul li{
    padding-bottom: 15px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.85;
}
.story-num {
    font-family: "Playfair Display", serif;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(200, 133, 106, 0.06);
    line-height: 1;
    position: absolute;
    top: -20px;
    left: 0;
    pointer-events: none;
}
.story-item {
    position: relative;
    padding: 48px 0 48px 32px;
    border-left: 1px solid var(--borderW);
    margin-bottom: 60px;
}
.story-item:last-child {
    margin-bottom: 0;
}
.story-dot {
    position: absolute;
    left: -6px;
    top: 50px;
    width: 11px;
    height: 11px;
    background: var(--rose);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(200, 133, 106, 0.2);
}
.story-year {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 10px;
}
.story-title {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}
.story-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.85;
}

/* ── MISSION/VISION ── */
.mv-section {
    padding: 120px 0;
    background: var(--warm);
}
.mv-card {
    background: var(--white);
    border: 1px solid rgba(200, 133, 106, 0.1);
    border-radius: 4px;
    padding: 52px 44px;
    height: 100%;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.mv-card::before {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 133, 106, 0.08), transparent);
    pointer-events: none;
    transition: all 0.4s;
}
.mv-card:hover {
    box-shadow: 0 24px 80px rgba(200, 133, 106, 0.15);
    transform: translateY(-4px);
}
.mv-card:hover::before {
    transform: scale(1.4);
}
.mv-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--rose), var(--rose-dk));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 28px;
}
.mv-title {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
}
.mv-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.85;
}

/* ── TEAM ── */
.team-section {
    padding: 120px 0;
    background: var(--ink2);
}
.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}
.team-card img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: top;
    filter: grayscale(20%) brightness(0.85);
    transition: all 0.6s;
}
.team-card:hover img {
    filter: grayscale(0) brightness(0.7);
    transform: scale(1.04);
}
.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 12, 11, 0.95) 0%, rgba(14, 12, 11, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}
.team-name {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}
.team-role {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rose-lt);
    margin-top: 4px;
}
.team-socials {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s;
}
.team-card:hover .team-socials {
    opacity: 1;
    transform: translateY(0);
}
.team-s {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.75rem;
    text-decoration: none;
    transition: background 0.3s;
}
.team-s:hover {
    background: var(--rose);
    color: var(--white);
}

/* ── STATS BAR ── */
.stats-bar {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--rose-dk), var(--rose), var(--rose-lt));
    position: relative;
    overflow: hidden;
}
.stats-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 50px,
        rgba(255, 255, 255, 0.03) 50px,
        rgba(255, 255, 255, 0.03) 51px
    );
}
.stat-box {
    text-align: center;
    padding: 0 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stat-box:last-child {
    border-right: none;
}
.stat-n {
    font-family: "Playfair Display", serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.stat-l {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

/* ── VALUES ── */
.values-section {
    padding: 120px 0;
    background: var(--ink);
}
.value-item {
    display: flex;
    gap: 24px;
    padding: 32px;
    border: 1px solid var(--borderW);
    border-radius: 4px;
    transition: all 0.4s;
    margin-bottom: 20px;
    background: var(--glass2);
}
.value-item:hover {
    border-color: var(--border);
    background: rgba(200, 133, 106, 0.04);
    transform: translateX(8px);
}
.value-num {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(200, 133, 106, 0.65);
    line-height: 1;
    flex-shrink: 0;
    min-width: 60px;
}
.value-title {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}
.value-desc {
    font-size: 0.87rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.8;
}

/* ── TICKER ── */
.ticker-wrap {
    padding: 32px 0;
    background: rgba(48, 42, 42, 0.99);
    border-top: 1px solid var(--borderW);
    border-bottom: 1px solid var(--borderW);
    overflow: hidden;
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 28s linear infinite;
}
.ticker-track:hover {
    animation-play-state: paused;
}
@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.tick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 56px;
    white-space: nowrap;
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.98);
    letter-spacing: 0.06em;
    border-right: 1px solid var(--borderW);
    cursor: default;
    transition: color 0.3s;
}
.tick-item:hover {
    color: var(--rose-lt);
}
.tick-item i {
    font-size: 0.75rem;
    color: var(--rose);
    opacity: 0.6;
}
.page-hero {
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    padding-top: 140px;
    position: relative;
    overflow: hidden;
}
.page-hero-mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 80% 40%, rgba(200, 133, 106, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 10% 80%, rgba(200, 133, 106, 0.08) 0%, transparent 50%),
        linear-gradient(160deg, #0e0c0b 0%, #1c1410 60%, #0e0c0b 100%);
}
.page-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(200, 133, 106, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 133, 106, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.breadcrumb-viya {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 20px;
}
.breadcrumb-viya a {
    color: var(--rose);
    text-decoration: none;
}
.breadcrumb-viya a:hover {
    color: var(--rose-dk);
}
.breadcrumb-viya span {
    color: rgba(255, 255, 255, 0.2);
}
.page-hero h1 {
    font-size: clamp(3rem, 3.5vw, 5rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--cream);
    text-align: center;
}
.page-hero p{
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    margin-top: 20px;
    font-weight: 300;
}
.page-hero h1 .gr {
    background: linear-gradient(135deg, var(--rose-lt), var(--rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.service-5__item {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
}

.service-5__item:hover .service-5__thumb img {
    transform: scale(1.2);
}

.service-5__item:hover .service-5__thumb::after {
    opacity: 1;
    visibility: visible;
    width: 100%;
    right: auto;
    left: 0;
}

.service-5__item:hover .service-5__icon span img {
    transform: scale(1);
}

.service-5__thumb {
    position: relative;
    overflow: hidden;
}

.service-5__thumb img {
    transition: 0.4s;
}

.service-5__thumb::after {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: 0%;
    height: 100%;
    background-color: rgb(153 131 104 / 84%);
    content: "";
    transition: 0.7s;
    opacity: 0;
    visibility: hidden;
}

.service-5__content {
    text-align: center;
    padding: 30px;
}

.service-5__content span {
    font-size: 17px;
    font-weight: 400;
    color: var(--it-theme-1-5);
    display: block;
}
.service-5__content span a{
    color: var(--gold);
    text-decoration: none;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px),
only screen and (min-width: 1200px) and (max-width: 1399px) {
    .service-5__content span {
        font-size: 16px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 767px) {
    .service-5__content span {
        font-size: 14px;
    }
}
.mb-30{
    margin-bottom: 30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-5__title-sm {
    font-size: 20px;
  }
}
.service-5__title-sm {
  font-size: 21px;
  font-weight: 600;
  
  display: inline-block;
  padding-bottom: 5px;
}
.service-5__title-sm a{
    color: var(--rose);  
    text-decoration: none;
}

.service-5__title-sm a:hover{
  color: var(--dark);  
}


/* Contact info */

.contactinfo-con {
    padding: 80px 0;
}
.contactinfo-con .contact-leftflower {
    position: absolute;
    left: 0;
    top: 85px;
}
.contactinfo-con .contact-leftflower img {
    width: 249px;
    opacity: 20%;
}
.contactinfo-con .contact_content h6{
    margin-bottom: 16px;
}
.contactinfo-con .contact_content h2{
    margin-bottom: 64px;
}
.contactinfo-con .contact-box {
    padding: 54px 40px 46px;
    border-radius: 20px;
    background-color: transparent;
    border: 1px solid rgb(0 0 0 / 10%);
    transition: all 0.3s ease-in-out;
}
.contactinfo-con .contact-box a{
    color: var(--rose)
}
.contactinfo-con .contact-box:hover {
    background-color: var(--rose);
    border: 1px solid var(--gold);
}
.contactinfo-con .contact-box .icon {
    height: 60px;
    margin-bottom: 26px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.contactinfo-con .contact-box:hover .icon {
    transform: translateY(-5px);
    filter: brightness(0) invert(1);
}
.contactinfo-con .contact-box h5 {
    margin-bottom: 10px;
    color: var(--e-global-color-secondary);
    transition: all 0.3s ease-in-out;
}
.contactinfo-con .contact-box a {
    margin-bottom: 15px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.contactinfo-con .contact-box a:hover {
    color: var(--e-global-color-secondary) !important;
}
.contactinfo-con .contact-box:hover h5,
.contactinfo-con .contact-box:hover a {
    color: var(--e-global-color-white);
}

/* Contact Form */

.contactform-con {
    padding-bottom: 40px;
}
.contact_content{
    padding: 35px 0 30px 40px;
    position: relative;
    z-index: 1;
}
.contact_content h6{
    margin-bottom: 14px;
}
.contact_content h2{
    margin-bottom: 46px;
}
.contact_content .form-group{
    margin-bottom: 26px;
}
.contact_content .input1 {
    float: left;
    margin-right: 22px;
}
.contact_content input {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    height: 53px;
    padding: 8px 10px 10px 24px;
    color: #666;
    background-color: var(--white);
    border: 1px solid var(--gold);
    border-radius: 30px;
    overflow: visible;
    outline: none;
    box-shadow: none;
    width: 100%;
}
.contact_content textarea {
    height: 118px;
    padding: 16px 24px;
    width: 100% !important;
    border-radius: 18px;
    resize: none;
    outline: none;
    border: 1px solid var(--gold);
    overflow: auto;
}
.contact_content .message {
    margin-bottom: 42px;
}
.contact_content input:focus,
.contact_content textarea:focus {
    border: 1px solid #222;
}
.contact_content .submit_now {
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    padding: 21px 42px;
    text-align: center;
    display: inline-block;
    position: relative;
    border-radius: 30px;
    color: var(--e-global-color-white);
    background: linear-gradient(135deg, var(--rose), var(--rose-dk));
    transition: all 0.8s ease-in-out;
    outline: none;
    border-style: none;
}
.contact_content .submit_now:hover {
    color: var(--e-global-color-secondary);
    background-color: var(--e-global-color-white);
}
.contact_content input::placeholder,
.contact_content textarea::placeholder{
    color: var(--e-global-color-text);
}
/*.contact_content form span {
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    margin-top: 5px;
    position: absolute;
    display: block;
}*/

/* Map */

.map-con {
    padding: 140px 0 300px;
}
.map-con iframe {
    width: 100%;
    height: 547px;
    border-radius: 20px;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}
.map-con iframe:hover {
    filter: none;
}


/* Modal Background */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.85);
    padding: 20px;
    box-sizing: border-box;
}

/* Modal Box */
.custom-modal-content {
    background: linear-gradient(135deg, #fff, #eee);
    color: #fff;
    max-width: 700px;
    width: 100%;
    margin: 60px auto;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    box-sizing: border-box;
    border: 3px solid var(--brand-line);
}

/* Close Button */
.custom-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 30px;
    cursor: pointer;
}

/* Title */
.custom-title {
    margin-bottom: 20px;
    font-size: 28px;
    color: #111;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-modal-content {
        padding: 20px;
        margin: 30px auto;
    }

    .custom-title {
        font-size: 22px;
    }
}



.single-blog-section {
    padding: 100px 0;
    background: var(--warm);
}
.single-blog {
    background: inherit !important;
    box-shadow: none !important;
}
.single-blog {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.blog-featured-img {
    height: 500px;
}

.blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 50px;
}

.blog-meta {
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 15px;
}

.blog-heading {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--ink3);
}
.blog-content ul,
.blog-content ol{
    padding-left: 15px !important;
}
.blog-content p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 20px;
}

.blog-content h3 {
    margin: 35px 0 15px;
    font-family: "Playfair Display", serif;
    color: var(--ink3);
}

.blog-content blockquote {
    border-left: 4px solid var(--rose);
    background: #f8f5f2;
    padding: 25px;
    margin: 35px 0;
    font-style: italic;
    color: var(--ink);
}

/* Sidebar */

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    padding: 35px;
    margin-bottom: 30px;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.sidebar-title {
    font-family: "Playfair Display", serif;
    margin-bottom: 25px;
    color: var(--ink3);
}

.recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.recent-post:last-child {
    margin-bottom: 0;
}

.recent-post img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 4px;
}

.recent-post a {
    color: var(--ink3);
    text-decoration: none;
    font-weight: 600;
    line-height: 1.5;
    display: block;
    margin-bottom: 5px;
    transition: .3s;
}

.recent-post a:hover {
    color: var(--rose);
}

.recent-post span {
    font-size: .75rem;
    color: var(--muted);
}

.contact-widget .form-control {
    border-radius: 0;
    padding: 12px 15px;
    border: 1px solid #ddd;
    box-shadow: none;
}

.contact-widget .form-control:focus {
    border-color: var(--rose);
    box-shadow: none;
}
.bg-white{
    background-color: var(--white);
}

.product-modal{
    display:none;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.8);
    z-index:99999;
    overflow:auto;
}

.product-modal-content{
    background:#fff;
    width:90%;
    max-width:600px;
    margin:50px auto;
    padding:25px;
    border-radius:10px;
    position:relative;
    animation:popup .3s ease;
}

.product-modal-content img{
    width:100%;
    height:auto;
    border-radius:8px;
    margin-bottom:20px;
}

.close-modal{
    position:absolute;
    right:15px;
    top:10px;
    font-size:32px;
    cursor:pointer;
    line-height:1;
}

#modalTitle{
    margin-bottom:15px;
}

#modalContent{
    line-height:1.7;
}

@keyframes popup{
    from{
        transform:translateY(-30px);
        opacity:0;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}

@media(max-width:768px){
    .product-modal-content{
        width:95%;
        margin:20px auto;
        padding:20px;
    }
}


.pt-0{
    padding: 0px !important;
}
/* Mobile */

@media(max-width:991px) {

    .single-blog-section {
        padding: 70px 0;
    }

    .blog-featured-img {
        height: 320px;
    }

    .blog-content {
        padding: 30px;
    }

    .blog-heading {
        font-size: 2rem;
    }

    .blog-sidebar {
        position: static;
    }
}

@media(max-width:576px) {

    .blog-featured-img {
        height: 240px;
    }

    .blog-content {
        padding: 25px;
    }

    .blog-heading {
        font-size: 1.7rem;
    }

    .sidebar-widget {
        padding: 25px;
    }

    .recent-post img {
        width: 70px;
        height: 70px;
    }
}