/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@import url('../css/vendor/bootstrap.min.css');
@import url('../css/vendor/fontawesome.css');
@import url('../css/vendor/brands.css');
@import url('../css/vendor/regular.css');
@import url('../css/vendor/solid.css');
@import url('../css/vendor/swiper-bundle.min.css');

@property --progress {
    syntax: '<integer>';
    inherits: true;
    initial-value: 0;
}

@keyframes load {
    to { --progress: var(--value) }
}

@keyframes background_animation {
    from { background-size: 100%; }
    to   { background-size: 110%; }
}

@keyframes ripple {
    from {
        opacity: 1;
        transform: scale3d(1, 1, 1);
        transform-origin: center;
        border-width: 0px;
    }
    to {
        opacity: 0;
        transform: scale3d(1.7, 1.7, 1.8);
        transform-origin: center;
        border-width: 13px;
    }
}

@keyframes gradient-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


:root {
    --text-color: #121212;
    --text-color-2: #484848;
    --gray-color: #F9F9F9;

    --accent-color: #F5C518;
    --accent-color-2: #F5841B;
    --accent-color-3: #1E2535;

    --gradient-brand:          linear-gradient(135deg, #F5C518 0%, #F5841B 100%);
    --gradient-brand-hover:    linear-gradient(135deg, #F5841B 0%, #F5C518 100%);
    --gradient-brand-diagonal: linear-gradient(45deg,  #F5C518 0%, #F5841B 60%, #e06a10 100%);
    --gradient-dark:           linear-gradient(135deg, #1E2535 0%, #2e3a50 100%);
    --gradient-dark-brand:     linear-gradient(135deg, #1E2535 0%, #2b2010 100%);
    --gradient-text:           linear-gradient(90deg,  #F5C518, #F5841B);

    --font-1: "Work Sans", sans-serif;
    --font-2: "Archivo", sans-serif;
}

/* ═══════════════════════════════════════
   BASE
═══════════════════════════════════════ */

body {
    font-family: var(--font-1);
    color: var(--text-color);
    font-weight: normal;
}

h1 { font-size: 72px; }
h2 { font-size: 62px; }
h3 { font-size: 50px; }
h4 { font-size: 24px; }
h5 { font-size: 20px; }
h6 { font-size: 18px; }

span, button, a { font-size: 16px; font-weight: normal; }
p { font-size: 16px; font-family: var(--font-1); font-weight: normal; }
ul { list-style: none; }
.list-circle { list-style: disc; }
li { font-size: 16px; font-family: var(--font-1); }
img { object-fit: cover; }

button {
    padding-inline: 1rem;
    padding-block: 0.5rem;
    text-decoration: none;
    transition: all 0.5s;
}

/* ═══════════════════════════════════════
   GRADIENT UTILITIES
═══════════════════════════════════════ */

.bg-gradient-brand               { background: var(--gradient-brand); }
.bg-gradient-brand-animated      { background: var(--gradient-brand-diagonal); background-size: 200% 200%; animation: gradient-shift 5s ease infinite; }
.bg-gradient-dark                { background: var(--gradient-dark); }
.bg-gradient-dark-brand          { background: var(--gradient-dark-brand); }

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.gradient-border { position: relative; border: none; }
.gradient-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: var(--gradient-brand);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ═══════════════════════════════════════
   TYPOGRAPHY & MISC UTILITIES
═══════════════════════════════════════ */

.sub-heading {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.text-color-1 { color: var(--text-color); }
.text-color-2 { color: var(--text-color-2); }
.hover-transform:hover { transform: translateY(-10px); }
button:hover { color: var(--text-color); }
a { text-decoration: none; }
.w-max-content { width: max-content !important; }

.banner-heading { font-size: 5.5rem; }
.font-1 { font-family: var(--font-1); }
.font-2 { font-family: var(--font-2); }
.ls-2   { letter-spacing: 2px; }
.fs-7   { font-size: 0.8rem !important; }
.fw-black { font-weight: 900 !important; }
.video-e119 { width: 60%; margin-bottom: -3rem; margin-left: -3rem; }

/* ═══════════════════════════════════════
   BANNER SECTION
═══════════════════════════════════════ */

.banner-section {
    height: 90vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.banner-content {
    max-width: 867px;
}

.banner-title {
    font-size: 72px;
    line-height: 1.1;
}

.banner-desc {
    max-width: 680px;
}

/* ═══════════════════════════════════════
   ABOUT ICONS (inline text icons)
═══════════════════════════════════════ */

.about-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ═══════════════════════════════════════
   ABOUT CTA ROW — FIX: prevent full-width button on mobile
═══════════════════════════════════════ */

.about-cta-row {
    flex-wrap: wrap;
}

.about-cta-row .btn-about-cta {
    width: auto !important;     /* Override any global mobile full-width rule */
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   FEATURE CARDS — FIXED: icon is now inline (no floating-top)
═══════════════════════════════════════ */

.feature-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-brand);
    box-shadow: 0 4px 18px rgba(245, 197, 24, 0.45);
    flex-shrink: 0;
}

.feature-icon-svg {
    font-size: 1.5rem;
    color: var(--accent-color-3);
}

.feature-card {
    min-height: 0;         /* Remove forced min-height; content defines height */
}

/* ═══════════════════════════════════════
   STEP CARDS — FIXED: icon is now inline (no floating-top-2)
═══════════════════════════════════════ */

.step-card {
    align-items: center;
}

.step-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-brand);
    box-shadow: 0 4px 22px rgba(245, 197, 24, 0.5);
    flex-shrink: 0;
}

.step-icon-svg {
    font-size: 1.8rem;
    color: var(--accent-color-3);
}

/* Legacy floating classes — kept for other pages, disabled on index */
.floating-top      { top: -3.5em; }
.floating-top-2    { top: -4rem; left: 8rem; }
.step-icon-pos {
    top: -4rem;
    left: 50%;
    transform: translateX(-50%);
}

/* ═══════════════════════════════════════
   COUNTER ICONS
═══════════════════════════════════════ */

.counter-icon-wrap {
    display: flex;
    justify-content: center;
}

.counter-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
    opacity: 0.85;
}

/* ═══════════════════════════════════════
   INLINE BUTTON — never full-width regardless of screen
═══════════════════════════════════════ */

.btn-inline {
    width: auto !important;
    display: inline-flex !important;
}

/* ═══════════════════════════════════════
   FORM
═══════════════════════════════════════ */

.form input,
.form textarea,
.form select {
    background-color: transparent;
    border-radius: 10px;
    border: solid 1px var(--accent-color);
    color: var(--text-color);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.2);
    border: solid 2px var(--accent-color);
    background-color: transparent;
    color: var(--text-color);
}

.form input:autofill,
.form input:autofill:focus {
    color: var(--text-color);
    transition: background-color 5000s ease-in-out;
    -webkit-text-fill-color: var(--text-color);
}

.form input::placeholder,
.form textarea::placeholder {
    color: var(--text-color-2);
    font-family: var(--font-1);
}

.form .form-select { color: var(--accent-color-2); }

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="blue" class="bi bi-check-lg" viewBox="0 0 16 16"><path d="M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z"/></svg>');
}

.form input.form-check-input {
    background-color: transparent;
    border: 1px solid gray;
}

.form input.form-check-input:checked {
    border: 1px solid blue;
    color: blue;
}

.form .submit_form {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    text-decoration: none;
    transition: all 0.5s;
    background: var(--gradient-brand);
    color: var(--accent-color-3);
    border-radius: 5px;
    border: solid 2px transparent;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(245, 197, 24, 0.35);
}

.submit_form:hover {
    background: transparent;
    border-color: var(--accent-color-2);
    color: var(--accent-color-2);
    box-shadow: none;
}

.submit_form-subscribe {
    padding-inline: 2rem;
    padding-block: 0.7rem;
    text-decoration: none;
    transition: all 0.5s;
    color: white;
    background-color: transparent;
    border-radius: 5px;
}

.submit_form-subscribe:hover {
    background-color: transparent;
    color: white;
    filter: none;
}

/* ═══════════════════════════════════════
   MAP & HEADER
═══════════════════════════════════════ */

.maps { width: 100%; height: 480px; transition: filter 0.5s; display: block; }
#header { transition: all 0.5s ease; }

/* ═══════════════════════════════════════
   HEADER DARK
═══════════════════════════════════════ */

.header-dark {
    background-color: var(--accent-color-3) !important;
    border-bottom: 3px solid var(--accent-color);
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */

.navbar-nav .nav-link:focus { color: var(--accent-color); text-align: center; }

.nav-link {
    border-bottom: 2px solid transparent;
    font-size: 1.05rem;
    font-family: var(--font-1);
    font-weight: 500;
    padding-block: 1.2rem;
    color: #e8e8e8;
    text-align: center;
    transition: color 0.3s;
}

.nav-link:hover { color: var(--accent-color) !important; text-align: center; }

.nav-link.active {
    color: var(--accent-color) !important;
    text-align: center;
    position: relative;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 2px;
    background: var(--gradient-brand);
    border-radius: 2px;
}

.navbar-toggler {
    border: 1px solid rgba(245, 197, 24, 0.4);
    color: var(--accent-color);
    border-radius: 6px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(245, 197, 24, 0.3);
    background-color: transparent;
    color: var(--accent-color);
}

.header-cta-btn {
    font-size: 15px !important;
    padding-block: 0.5rem !important;
    padding-inline: 1.2rem !important;
    border-radius: 8px !important;
}

/* ── Dropdown ── */
.dropdown-menu {
    background-color: var(--accent-color-3);
    border-radius: 0 0 8px 8px;
    border: none;
    border-top: 2px solid var(--accent-color);
    padding: 0;
    width: 200px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.4);
}

.dropdown-item {
    padding-block: 0.75rem;
    color: #e0e0e0;
    font-family: var(--font-1);
    font-size: 0.9rem;
    font-weight: 400;
    padding-inline: 1rem;
    text-align: center;
    transition: all 0.25s;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dropdown-item:last-child { border-bottom: none; }
.dropdown-item.active { color: var(--accent-color); background-color: transparent; }

.dropdown-item:hover {
    background: var(--gradient-brand);
    color: var(--accent-color-3);
    font-weight: 600;
}

.dropdown-item:focus { color: var(--accent-color); background-color: rgba(245, 197, 24, 0.1); }

.nav-link.dropdown::after { filter: brightness(2); }

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */

.section {
    padding: 6em 2em 6em 2em;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.r-container {
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
}

/* ═══════════════════════════════════════
   COLOR & BACKGROUND
═══════════════════════════════════════ */

.bg-accent-color  { background-color: var(--accent-color); }
.bg-accent-2      { background-color: var(--accent-color-2); }
.bg-accent-3      { background-color: var(--accent-color-3); }
.bg-accent-4      { background-color: var(--gray-color); }

.bg-accent-color-3-card {
    background-color: var(--accent-color-3);
    border: 1px solid rgba(245, 197, 24, 0.15);
}

.bg-accent-3-dark { background-color: #151b28; }
.bg-light-color   { background-color: var(--gray-color); }

.accent-color   { color: var(--accent-color); }
.accent-color-2 { color: var(--accent-color-2); }
.accent-color-3 { color: var(--accent-color-3); }

.border-accent-color { border-color: var(--accent-color) !important; }
.border-accent-2     { border-color: var(--accent-color-2) !important; }
.text-gray           { color: var(--gray-color) !important; }

.bg-accent-color-hover:hover { background: var(--gradient-brand); color: var(--accent-color-3); }
.bg-dark-transparent { background-color: #232323b7; }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */

.btn {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-accent {
    background: var(--gradient-brand);
    color: var(--accent-color-3);
    font-weight: 700;
    transition: all 0.4s;
    border: 2px solid transparent;
    box-shadow: 0 4px 18px rgba(245, 197, 24, 0.4);
}

.btn-accent:hover {
    background: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 4px 22px rgba(245, 197, 24, 0.5);
}

.btn-accent-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color-2);
    color: var(--accent-color-2);
    transition: all 0.4s;
}

.btn-accent-outline:hover {
    background: var(--gradient-brand);
    border-color: transparent;
    color: var(--accent-color-3);
    font-weight: 700;
    box-shadow: 0 4px 18px rgba(245, 197, 24, 0.4);
}

.btn-accent-outline-2 {
    font-size: 12px;
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-white-accent {
    background-color: white;
    color: var(--accent-color-3);
    border: 3px solid transparent;
    font-weight: 600;
}

.btn-white-accent:hover {
    background-color: transparent;
    border-color: white;
    color: white;
}

.btn-white-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-white-outline:hover {
    background-color: white;
    color: var(--accent-color-3);
}

/* ═══════════════════════════════════════
   OVERLAYS
═══════════════════════════════════════ */

.image-overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #180e0e;
    opacity: 0.55;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.image-overlay-2 {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: rgb(67, 67, 67);
    opacity: 0.5;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.overlay {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: transparent;
    background-image: linear-gradient(180deg, transparent 40%, #ffffff 100%);
    opacity: 1;
}

.bg-overlay {
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(245,197,24,0.18) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.cta-overlay {
    background: linear-gradient(90deg, #0B0C0E 0%, rgba(245,132,27,0.35) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.bg-overlay-2 {
    background: linear-gradient(180deg, rgba(30,37,53,0.25) 0%, rgba(245,197,24,0.18) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* ═══════════════════════════════════════
   LOGO CONTAINER
═══════════════════════════════════════ */

.logo-container { max-width: 180px; }

/* ═══════════════════════════════════════
   DIVIDER
═══════════════════════════════════════ */

.divider { display: flex; align-items: center; }
.divider::after {
    display: block;
    content: "";
    border-bottom: 0;
    flex-grow: 1;
    border-top: 3px solid #8692af;
    max-width: 30px;
    min-width: 30px;
}

.divider-element {
    letter-spacing: 2px;
    flex-shrink: 0;
    flex-grow: 1;
    margin: 0;
    margin-left: 1rem;
    font-weight: 400;
}

/* ═══════════════════════════════════════
   MISC
═══════════════════════════════════════ */

.image-infinite-bg { height: 90vh; }
.animation-bg      { animation: background_animation 10s forwards; }
.bg-attach-fixed   { background-attachment: fixed; }

/* ═══════════════════════════════════════
   SOCIAL & CONTACT
═══════════════════════════════════════ */

.social-container { display: flex; flex-direction: row; gap: 1rem; }

.appointment-box { top: 6rem; bottom: 0; left: 0; right: 0; height: 30rem; }

.contact-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 19px;
    height: 1.5rem;
    width: 1.5rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gradient-brand);
    color: var(--accent-color-3);
    font-weight: 700;
    flex-shrink: 0;
}

.social-item {
    border-radius: 50%;
    aspect-ratio: 1/1;
    font-size: 19px;
    width: 2rem;
    height: 2rem;
    transition: all 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gradient-brand);
    color: var(--accent-color-3);
    font-weight: 700;
}

.social-item:hover {
    background: var(--gradient-brand-hover);
    border: none;
    color: var(--accent-color-3);
    box-shadow: 0 4px 16px rgba(245, 197, 24, 0.45);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   NAV TABS
═══════════════════════════════════════ */

.nav-tabs { border-bottom: none; }
.nav-tabs .nav-link { background-color: transparent; color: var(--accent-color-2); border: none; position: relative; }
.nav-tabs .nav-link:hover { border: none; color: white; }
.nav-tabs .nav-link.active { background-color: transparent; border: none; }
.nav-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-brand);
    border-radius: 2px;
}

/* ═══════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════ */

/* ── Hero Breadcrumb with Background Image ── */
.about-page-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--accent-color);
}

/* Dark overlay so text stays readable over any image */
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(21, 27, 40, 0.82) 0%,
        rgba(30, 37, 53, 0.70) 60%,
        rgba(43, 32, 16, 0.75) 100%
    );
    z-index: 1;
}

/* Diagonal pattern on top of overlay */
.about-page-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(245, 197, 24, 0.04) 0px,
        rgba(245, 197, 24, 0.04) 1px,
        transparent 1px,
        transparent 55px
    );
    z-index: 2;
    pointer-events: none;
}

/* Pill tag */
.about-page-hero-tag {
    display: inline-block;
    background: rgba(245, 197, 24, 0.15);
    border: 1px solid rgba(245, 197, 24, 0.35);
    color: var(--accent-color);
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 1px;
    font-family: var(--font-1);
    font-weight: 600;
}

/* Mobile */
@media (max-width: 767px) {
    .about-page-hero   { padding: 3.5rem 1rem; }
    .about-page-hero h2 { font-size: 1.8rem; }
    .about-page-hero-tag { font-size: 11px; }
}
/* ═══════════════════════════════════════
   SWIPER
═══════════════════════════════════════ */

.swiper-pagination { margin-block: 1rem; position: relative; }
.swiper-slide      { padding: 0.5rem; }
.swiper-pagination .swiper-pagination-bullet-active { background: var(--gradient-brand); }

/* ═══════════════════════════════════════
   VIDEO
═══════════════════════════════════════ */

.video-container {
    aspect-ratio: 3/2;
    background-size: cover;
    background-position: center;
    position: relative;
    border: 5px solid white;
    border-radius: 10px;
}

.video-iframe { position: absolute; left: 0; top: 0; width: 100%; height: 100%; }

.video-btn {
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 4rem;
    background: var(--gradient-brand);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-size: 2rem;
    color: var(--accent-color-3);
    border: none;
    opacity: 0.9;
    box-shadow: 0 4px 22px rgba(245, 197, 24, 0.55);
}

.video-btn:hover {
    opacity: 1;
    color: var(--accent-color-3);
    box-shadow: 0 6px 28px rgba(245, 197, 24, 0.7);
    transform: scale(1.07);
}

/* ═══════════════════════════════════════
   CARDS
═══════════════════════════════════════ */

.border-testimonial { border-right: 5px solid var(--accent-color-2); }

.card {
    border: none;
    border-radius: 20px;
    transition: all 0.5s;
    background-color: transparent;
    box-shadow: 0 7px 15px 0 rgba(0,0,0,.13), 0 1px 4px 0 rgba(0,0,0,.11);
}

.card-testimonial {
    border: none;
    border-radius: 20px;
    transition: all 0.5s;
    background-color: var(--accent-color-3);
}

.icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2rem;
    aspect-ratio: 1/1;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    transition: all 0.5s;
}

.author-box {
    border-radius: 50%;
    width: 6rem;
    height: 6rem;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -6px;
    overflow: hidden;
}

.list .icon-box { width: 4.3rem; height: 4.3rem; }

.card .icon-box.bg-accent-color { background: var(--gradient-brand); color: var(--accent-color-3); }
.bg-accent-3 { background-color: var(--accent-color-3); }
.card .icon-box.accent-color-2 { color: var(--accent-color-2); font-size: 4rem; }
.card:hover .icon-box.accent-color-2 { color: var(--accent-color); }

.card:hover {
    transform: translateY(-20px);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 20px 40px rgba(245, 197, 24, 0.2);
}

.card-testimonial:hover {
    transform: translateY(-20px);
    box-shadow: 0px 0px 0px 2px var(--accent-color), 0 20px 40px rgba(245, 197, 24, 0.22);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.card:hover .icon-box.bg-accent-color { background: var(--gradient-brand-hover); color: var(--accent-color-3); }

.card.card-outline-hover { border: 3px solid transparent; }
.card.card-outline-hover:hover { background: var(--gradient-dark); color: white; transform: none; border-color: transparent; }
.card.card-outline-hover:hover *, .card.card-outline-hover:hover .text-primary { color: white; }
.card:hover p { transition: all 0.5s; color: white !important; }
.card .link { color: var(--accent-color); }
.card:hover .link { color: white; }

/* ═══════════════════════════════════════
   REQUEST LOADER / PLAY BUTTON
═══════════════════════════════════════ */

.request-loader {
    position: relative;
    height: 70px;
    width: 70px;
    border-radius: 50% !important;
    border: solid 2px transparent;
    background: var(--gradient-brand);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color-3);
    font-size: 25px;
    box-shadow: 0 4px 22px rgba(245, 197, 24, 0.55);
}

.request-loader:hover {
    background: transparent;
    border: solid 2px var(--accent-color);
    color: var(--accent-color);
    box-shadow: none;
}

.request-loader::after,
.request-loader::before {
    opacity: 0.2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    color: var(--accent-color);
    border: 4px solid currentColor;
    border-radius: 50%;
    animation-name: ripple;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.65, 0, .34, 1);
    z-index: 0;
}

.request-loader::after  { animation-delay: 0.5s; animation-duration: 3s; }
.request-loader::before { animation-delay: 0.2s; animation-duration: 3s; }

/* ═══════════════════════════════════════
   PROGRESS BAR
═══════════════════════════════════════ */

.r-progress {
    --value: 17;
    --progress-color: var(--accent-color);
    --secondary-progress-color: var(--secondary-color);
    --animation-duration: 2000;
}

.r-progress-bar {
    position: relative;
    height: 12px;
    background-color: var(--secondary-progress-color);
    display: flex;
    border-radius: 10px;
}

.r-progress-bar .progress-value {
    height: 100%;
    width: calc(var(--progress) * 1%);
    background: var(--gradient-brand);
    position: relative;
    border-radius: 10px;
    animation: load;
    animation-fill-mode: forwards;
    animation-duration: calc(var(--animation-duration) * 1ms);
    animation-timing-function: linear;
    animation-delay: 500ms;
    color: black;
    box-shadow: 0 2px 10px rgba(245, 197, 24, 0.45);
}

/* ═══════════════════════════════════════
   MISC COMPONENTS
═══════════════════════════════════════ */

.ifr-video { aspect-ratio: 16/9; width: 100%; }

.post-button { background-color: transparent; color: var(--accent-color) !important; border: none !important; }
.post-button:hover { background-color: transparent !important; color: var(--accent-color-2) !important; transform: scale(1.15); }

.card.with-border-bottom { border-bottom: 5px solid var(--accent-color) !important; }
.list.list-style-accent i { color: var(--accent-color-2); font-size: 1.6rem; }

/* ═══════════════════════════════════════
   LIST FLUSH HORIZONTAL
═══════════════════════════════════════ */

.list-flush-horizontal {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 1rem;
}

.list-flush-horizontal .list-item:first-child,
.list-flush-horizontal .list-item { border-right: 1px solid white; }

.list-flush-horizontal .list-item:last-child { border-left: 1px solid white; border-right: none; }
.list-flush-horizontal .list-item:nth-last-child(2) { border: none; }

/* ═══════════════════════════════════════
   LIST GROUP
═══════════════════════════════════════ */

.list-group .list-group-item .link { background-color: transparent; color: var(--text-color); border: 1px solid var(--gray-color); }
.list-group .list-group-item .link:hover { border-color: var(--accent-color-2) !important; color: var(--accent-color-2) !important; }
.list-group .list-group-item.active { background: var(--gradient-brand); color: var(--accent-color-3); font-weight: 700; border: none; }
.list-group .list-group-item.list-group-item-action:hover { background: var(--gradient-brand); color: var(--accent-color-3); }

/* ═══════════════════════════════════════
   LIST
═══════════════════════════════════════ */

.list { margin: 0; padding: 0; display: flex; flex-direction: column; padding-inline: 0.5rem; }
.list .link { font-weight: 400; text-wrap: nowrap; }
.list li { padding: 0; font-size: 14px; }
.list li .link, .list li i { color: #cccccc; transition: all 0.5s; }
.list.text-black i { color: #131313; }
.list li .link:hover, .list li .link:hover i { color: var(--accent-color); }

.card .link { color: white; transition: color 0.5s; }
.card .link:hover { color: var(--accent-color); }

.link.accent-color { color: var(--accent-color); transition: color 0.5s; }
.link.accent-color:hover { color: var(--accent-color-2); }

.link       { color: #cccccc; }
.link:hover { color: var(--accent-color); }

.link-white       { color: white; }
.link-white:hover { color: var(--accent-color); }

/* ═══════════════════════════════════════
   GLASS EFFECT
═══════════════════════════════════════ */

.glass-effect {
    background: rgba(30, 37, 53, 0.88);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    border-top: 1px solid rgba(245, 197, 24, 0.18);
}

/* ═══════════════════════════════════════
   MISC UTILITIES
═══════════════════════════════════════ */

.fs-very-large { font-size: 4.125rem; }
.border-bottom-hover:hover { border-bottom: 2px solid var(--accent-color); }

/* ═══════════════════════════════════════
   TESTIMONIAL & SERVICES
═══════════════════════════════════════ */

.testimonial-container {
    background-color: transparent;
    border-radius: 5px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
    box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.1);
    border-left: 3px solid transparent;
    border-image: var(--gradient-brand) 1;
    transition: box-shadow 0.4s;
}

.testimonial-container:hover { box-shadow: 0px 0px 28px 0px rgba(245, 197, 24, 0.2); }

.services-container {
    background-color: transparent;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 100%;
    box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.12);
    border-radius: 12px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.services-container:hover { box-shadow: 0px 0px 28px 0px rgba(245, 197, 24, 0.2); transform: translateY(-6px); }

/* ═══════════════════════════════════════
   RATING
═══════════════════════════════════════ */

.rating { list-style: none; display: flex; flex-direction: row; gap: 0.75rem; padding: 0; margin: 0; }
.rating li          { color: #F5C518; }
.rating li.inactive { color: #d9d9d9; }

/* ═══════════════════════════════════════
   LOGO PARTNER
═══════════════════════════════════════ */

.logo-partner { filter: brightness(200%) contrast(0%) saturate(0%) blur(0px) hue-rotate(0deg); transition-duration: 0.5s; }
.logo-partner:hover { filter: none; }

/* ═══════════════════════════════════════
   ACCORDION
═══════════════════════════════════════ */

.accordion .accordion-item { border: none; background-color: transparent; color: var(--text-color); }
.accordion-button:focus { box-shadow: none; }

.accordion .accordion-button {
    background: var(--gradient-brand);
    border-radius: 15px !important;
    font-family: var(--font-1);
    font-size: 18px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    border: none;
    display: flex;
    flex-direction: row;
    justify-content: start;
    padding-block: 1.2rem;
    color: var(--accent-color-3);
    box-shadow: 0 4px 15px rgba(245, 197, 24, 0.35);
}

.accordion-button::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%231E2535" class="bi bi-plus" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4"/></svg>');
}

.accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-dash" viewBox="0 0 16 16"><path d="M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8"/></svg>');
}

.accordion .accordion-button:not(.collapsed) { background: var(--gradient-dark); color: var(--accent-color); border: none; box-shadow: none; }

/* ═══════════════════════════════════════
   MISC UTILS
═══════════════════════════════════════ */

.custom-border { border-width: 10px; border-style: solid; border-color: white; }
.position-lg-absolute { position: absolute; }
.w-60 { width: 60% !important; }

.shadow-double { box-shadow: 40px -40px 0px -4px var(--accent-color), -54px 44px 0px -3px var(--accent-color-3); }
.shadow-single-left  { box-shadow: -54px 44px 0px -3px var(--accent-color); }
.shadow-single-right { box-shadow: 40px -40px 0px -4px var(--accent-color); }

.text-404 { font-size: 10rem; font-weight: 700; }

/* ═══════════════════════════════════════
   FLOATING ELEMENTS (legacy — other pages)
═══════════════════════════════════════ */

.floating-contact {
    top: -2.5rem;
    left: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 2rem;
    aspect-ratio: 1/1;
    height: 5rem;
    border-radius: 50%;
    transition: all 0.5s;
    background: var(--gradient-brand);
    color: var(--accent-color-3);
    box-shadow: 0 4px 20px rgba(245, 197, 24, 0.45);
}

.floating-price    { top: -2rem; right: -5.6rem; }
.floating-top-1    { margin-top: -8rem; }
.floating-bottom   { bottom: 15em; left: -3.5em; }
.floating-bottom-1 { bottom: 7em; right: 0; width: 22em; }
.floating-bottom-2 { bottom: 15em; left: -0.5em; }
.floating-bottom-3 { top: 6.8em; right: -2.3em; }

.d-inline-block      { display: inline-block; }
.position-responsive { position: absolute; }
.opacity-10          { opacity: 0.1; }

/* ═══════════════════════════════════════
   VIDEO + LOCATION SECTION
═══════════════════════════════════════ */

.video-section-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(245, 197, 24, 0.03) 0px,
        rgba(245, 197, 24, 0.03) 1px,
        transparent 1px,
        transparent 60px
    );
    pointer-events: none;
    z-index: 1;
}

.video-brand-wrapper {
    position: relative;
    min-height: 380px;
    cursor: pointer;
}

.video-thumb-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: block;
}

.video-dark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(21, 27, 40, 0.75) 0%, rgba(30, 37, 53, 0.55) 100%);
    z-index: 2;
}

.video-play-btn {
    width: 90px !important;
    height: 90px !important;
    font-size: 30px !important;
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-play-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(245, 197, 24, 0.7) !important; }

.video-badge {
    background: rgba(30, 37, 53, 0.85);
    border: 1px solid rgba(245, 197, 24, 0.3);
    backdrop-filter: blur(6px);
}

.location-info-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(245, 197, 24, 0.12);
    transition: border-color 0.3s, background 0.3s;
}

.location-info-card:hover { background: rgba(245, 197, 24, 0.07); border-color: rgba(245, 197, 24, 0.35); }

.location-icon-box {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 8px;
    background: rgba(245, 197, 24, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════ */

.faq-stats-strip {
    background: var(--gray-color);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--accent-color);
}

.faq-divider { width: 1px; background: #ddd; align-self: stretch; }

.faq-item {
    border: 1px solid #e8e8e8 !important;
    border-radius: 14px !important;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover { border-color: rgba(245, 197, 24, 0.5) !important; box-shadow: 0 4px 18px rgba(245, 197, 24, 0.1); }

.faq-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(245, 197, 24, 0.18);
    color: var(--accent-color-2);
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    transition: background 0.3s;
}

.faq-item .accordion-button {
    background: white !important;
    color: var(--text-color) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 14px !important;
    box-shadow: none !important;
    padding: 1.1rem 1.25rem;
    border: none;
}

.faq-item .accordion-button:not(.collapsed) {
    background: var(--gradient-brand) !important;
    color: var(--accent-color-3) !important;
    border-radius: 14px 14px 0 0 !important;
}

.faq-item .accordion-button:not(.collapsed) .faq-num {
    background: rgba(30, 37, 53, 0.2);
    color: var(--accent-color-3);
}

.faq-item .accordion-button.collapsed::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%23F5841B" viewBox="0 0 16 16"><path d="M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4"/></svg>');
}

.faq-item .accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%231E2535" viewBox="0 0 16 16"><path d="M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8"/></svg>');
}

.faq-body {
    padding: 1.2rem 1.5rem;
    border-top: 1px solid rgba(245, 197, 24, 0.15);
    background: #fffdf5;
}

.faq-body p { margin: 0; color: var(--text-color-2); line-height: 1.75; }
.faq-body strong { color: var(--accent-color-2); }

/* ═══════════════════════════════════════
   RESPONSIVE — max-width: 1199px (xl breakpoint)
═══════════════════════════════════════ */

@media only screen and (max-width: 1199px) {
    h3 { font-size: 38px; }
    .banner-title { font-size: 52px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — max-width: 993px
═══════════════════════════════════════ */

@media only screen and (max-width: 993px) {
    h1 { font-size: 50px; }
    h2 { font-size: 38px; }
    h3 { font-size: 28px; }
    h4 { font-size: 22px; }
    h5 { font-size: 18px; }
    h6 { font-size: 14px; }

    span, p, button, a { font-size: 13px; }
    .btn { font-size: 13px; }
    .section { padding: 4em 1.5em 4em 1.5em; }
    .divider { width: 330px; }
    .fs-very-large { font-size: 3.125rem; }
    .image-infinite-bg { background-size: cover !important; }

    /* Keep header navy on mobile */
    .header-dark {
        background-color: var(--accent-color-3) !important;
        border-bottom: 3px solid var(--accent-color);
    }

    /* Mobile nav collapse */
    .navbar-collapse {
        background-color: var(--accent-color-3);
        padding: 1rem;
        border-top: 1px solid rgba(245, 197, 24, 0.2);
        border-radius: 0 0 10px 10px;
    }

    .border-custom { border-width: 0px 0px 1px 0px; }
    .outer-margin  { margin-right: 0; }
    .nav-link      { padding-block: 0.4rem; text-align: center; }
    .banner-image  { margin: 0; transform: none; }
    .testimonial-img { margin: 0; margin-bottom: 1rem; }
    .dropdown-menu { width: 100%; box-shadow: none; background-color: rgba(30,37,53,0.9); }
    .video-e119    { width: 85%; margin-left: -1.5rem; }
    .dropdown-item { padding-block: 0.4rem; }

    .floating-contact { top: -2.5rem; left: 7.5rem; }
    .floating-price   { top: -2rem; right: -4.8rem; }
    .floating-top-1   { position: relative; margin-top: -3rem; }
    .floating-bottom  { bottom: 0; left: 0; right: 0; width: 100%; }
    .border-testimonial { border-right: none; }

    .appointment-box { top: 3.5rem; bottom: 0; left: 0; right: 0; height: 16rem; }
    .floating-bottom-1 { bottom: 0; right: 0; left: 0; width: 100%; }
    .position-responsive { position: relative; }
    .form-appointment-container { position: relative; transform: translateY(0); }

    .list-flush-horizontal { flex-direction: column; }
    .list-flush-horizontal .list-item:first-child,
    .list-flush-horizontal .list-item { border-right: none; border-bottom: 1px solid white; }
    .list-flush-horizontal .list-item:last-child { border-left: none; border-bottom: none; border-top: 1px solid white; }

    .position-lg-absolute { position: static; }
    .banner-heading        { font-size: 2.5rem; }
    .header-cta-btn        { width: auto !important; }

    /* Feature cards */
    .feature-icon-wrap { width: 56px; height: 56px; }
    .feature-icon-svg  { font-size: 1.3rem; }

    /* Step icon */
    .step-icon-wrap { width: 68px; height: 68px; }
    .step-icon-svg  { font-size: 1.5rem; }

    /* How it works row */
    .how-it-works-row > .col-lg-4 { margin-bottom: 1rem; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — max-width: 767px (mobile)
═══════════════════════════════════════ */

@media only screen and (max-width: 767px) {
    /* Banner */
    .banner-section { height: auto; min-height: 100vh; padding: 5rem 1.5rem 4rem; }
    .banner-title   { font-size: 32px !important; }
    .banner-desc    { font-size: 14px !important; }

    h1 { font-size: 36px; }
    h2 { font-size: 30px; }
    h3 { font-size: 24px; }
    h4 { font-size: 20px; }
    h5 { font-size: 16px; }
    h6 { font-size: 13px; }

    span, p { font-size: 13px; }
    .section { padding: 3em 1em 3em 1em; }

    /* FIXED: Default buttons full-width on mobile, but override for inline-only */
    .btn { font-size: 14px; width: 100%; }
    .btn-inline,
    .btn-about-cta { width: auto !important; }

    /* About section: icon bullets stay row */
    .about-icon { font-size: 1rem; }

    /* About CTA row: stack on mobile, centered */
    .about-cta-row {
        flex-direction: column;
        align-items: center;
    }

    /* Feature cards: 2 columns always, no floating needed */
    .feature-icon-wrap { width: 48px; height: 48px; }
    .feature-icon-svg  { font-size: 1.1rem; }
    .feature-card h5   { font-size: 14px; }
    .feature-card p    { font-size: 12px; }
    .feature-card      { padding: 1rem !important; }

    /* Step cards: full width, icon centered */
    .step-icon-wrap { width: 64px; height: 64px; }
    .step-icon-svg  { font-size: 1.4rem; }

    /* Counter */
    .counter-icon { font-size: 1.4rem; }

    /* Video thumb */
    .video-brand-wrapper { min-height: 260px; }
    .video-thumb-img     { min-height: 260px; }
    .video-play-btn      { width: 68px !important; height: 68px !important; font-size: 22px !important; }

    /* FAQ stats */
    .faq-stats-strip { flex-direction: column; gap: 1rem; }

    /* Swiper service icon */
    .icon-box { width: 2.5rem; height: 2.5rem; }

    /* CTA section */
    .cta-content p { font-size: 13px !important; }

    /* Location map buttons — restore full width flex */
    .location-cta-btns { flex-direction: column; }
    .location-cta-btns .btn { width: 100%; }

    /* Footer list nowrap */
    .list .link { text-wrap: wrap; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — max-width: 480px (small phones)
═══════════════════════════════════════ */

@media only screen and (max-width: 480px) {
    .banner-title { font-size: 26px !important; }
    h3 { font-size: 20px; }
    h4 { font-size: 18px; }

    /* Feature cards: smaller padding */
    .feature-card { padding: 0.75rem !important; }
    .feature-icon-wrap { width: 42px; height: 42px; }
    .feature-icon-svg  { font-size: 1rem; }
    .feature-card h5   { font-size: 13px; }
    .feature-card p    { font-size: 11px; }

    .faq-num { width: 22px; height: 22px; font-size: 10px; }
    .faq-item .accordion-button { font-size: 13px !important; padding: 0.9rem 1rem; }

    /* Counter: 2 cols */
    .counter-icon { font-size: 1.2rem; }

    /* Step card smaller icon */
    .step-icon-wrap { width: 56px; height: 56px; }
    .step-icon-svg  { font-size: 1.2rem; }
}

/* ═══════════════════════════════════════
   ABOUT PAGE — ENHANCED STYLES
   Link this file in about.html after style.css
═══════════════════════════════════════ */

/* ── Hero Banner ── */
.about-hero {
    min-height: 72vh;
    background: linear-gradient(135deg, #0d1220 0%, #1E2535 50%, #1a1408 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.about-hero-noise {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(245,197,24,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 10% 80%, rgba(245,132,27,0.06) 0%, transparent 55%);
    pointer-events: none;
}

.about-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245,197,24,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,197,24,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 6rem 0;
}

.about-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(245,197,24,0.1);
    border: 1px solid rgba(245,197,24,0.25);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.8rem;
}

.about-hero-eyebrow span {
    color: var(--accent-color);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.about-hero-eyebrow i {
    color: var(--accent-color);
    font-size: 10px;
}

.about-hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    color: white;
    margin-bottom: 1.5rem;
}

.about-hero-title .gradient-word {
    background: linear-gradient(90deg, #F5C518, #F5841B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.about-hero-desc {
    color: rgba(255,255,255,0.65);
    font-size: 1.1rem;
    line-height: 1.85;
    max-width: 540px;
    margin-bottom: 2.5rem;
}

.about-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-hero-breadcrumb a {
    color: var(--accent-color-2);
    font-size: 14px;
    transition: color 0.3s;
}

.about-hero-breadcrumb a:hover { color: var(--accent-color); }

.about-hero-breadcrumb span {
    color: rgba(255,255,255,0.35);
    font-size: 13px;
}

.about-hero-breadcrumb .sep { color: rgba(255,255,255,0.25); }

/* ── Right side image stack ── */
.hero-img-stack {
    position: relative;
    height: 520px;
}

.hero-img-main {
    position: absolute;
    right: 0;
    top: 0;
    width: 75%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-img-accent {
    position: absolute;
    left: 0;
    bottom: 40px;
    width: 48%;
    height: 55%;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid #1E2535;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    z-index: 2;
}

.hero-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-stat-pill {
    position: absolute;
    top: 30px;
    left: 20px;
    background: rgba(30,37,53,0.92);
    border: 1px solid rgba(245,197,24,0.3);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.2rem;
    border-radius: 12px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-stat-pill .stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--accent-color-3);
    flex-shrink: 0;
}

.hero-stat-pill .stat-val {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.hero-stat-pill .stat-lbl {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

/* ── Origin / Brand Story ── */
.origin-section {
    padding: 7rem 2rem;
    background: #fff;
}

.origin-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.origin-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gradient-brand);
    border-radius: 2px;
}

.origin-label span {
    color: var(--accent-color-2);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.origin-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.origin-desc {
    color: var(--text-color-2);
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 2rem;
}

.bullet-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.bullet-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(245,197,24,0.12);
    border: 1px solid rgba(245,197,24,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--accent-color-2);
    flex-shrink: 0;
    margin-top: 2px;
}

.bullet-item p {
    margin: 0;
    font-size: 14.5px;
    color: var(--text-color-2);
    line-height: 1.7;
}

.bullet-item strong {
    color: var(--text-color);
}

/* ── Counter Strip ── */
.counter-strip {
    background: linear-gradient(135deg, #1E2535 0%, #151b28 100%);
    padding: 4.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.counter-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgba(245,197,24,0.025) 0px, rgba(245,197,24,0.025) 1px,
        transparent 1px, transparent 50px
    );
    pointer-events: none;
}

.counter-card {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
}

.counter-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background: rgba(255,255,255,0.08);
}

.counter-card:last-child::after { display: none; }

.counter-num {
    font-size: 3.2rem;
    font-weight: 900;
    background: linear-gradient(90deg, #F5C518, #F5841B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
}

.counter-sup {
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(90deg, #F5C518, #F5841B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    vertical-align: super;
}

.counter-lbl {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

.counter-icon-ring {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(245,197,24,0.1);
    border: 1px solid rgba(245,197,24,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-color);
    margin: 0 auto 1rem;
}

/* ── Why UNIK — Feature Cards ── */
.why-section {
    padding: 7rem 2rem;
    background: var(--gray-color);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gradient-brand);
    border-radius: 2px;
}

.section-eyebrow span {
    color: var(--accent-color-2);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 1.75rem;
    height: 100%;
    border: 1px solid rgba(245,197,24,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-brand);
    transition: width 0.4s ease;
}

.why-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(245,197,24,0.12); border-color: rgba(245,197,24,0.2); }
.why-card:hover::after { width: 100%; }

.why-card-num {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(245,197,24,0.07);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    pointer-events: none;
    font-family: var(--font-2);
}

.why-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-color-3);
    margin-bottom: 1.4rem;
    box-shadow: 0 6px 18px rgba(245,197,24,0.35);
    transition: transform 0.3s ease;
}

.why-card:hover .why-icon-wrap { transform: scale(1.08) rotate(-5deg); }

.why-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.6rem;
}

.why-card p {
    font-size: 13.5px;
    color: var(--text-color-2);
    line-height: 1.75;
    margin: 0;
}

/* ── Founder Quote ── */
.founder-section {
    padding: 0;
    background: var(--accent-color-3);
    position: relative;
    overflow: hidden;
}

.founder-bg-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,197,24,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.founder-img-wrap {
    position: relative;
    height: 100%;
    min-height: 460px;
}

.founder-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, var(--accent-color-3) 100%);
}

.founder-quote-area {
    padding: 5rem 3.5rem 5rem 2rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.quote-mark {
    font-size: 5rem;
    line-height: 1;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: Georgia, serif;
    margin-bottom: -1rem;
}

.founder-quote-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    line-height: 1.85;
    font-family: var(--font-2);
    font-style: italic;
    margin-bottom: 2rem;
    border-left: 3px solid var(--accent-color);
    padding-left: 1.5rem;
}

.founder-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.2rem;
}

.founder-role {
    font-size: 13px;
    color: var(--accent-color-2);
    letter-spacing: 0.5px;
}

.founder-signature-line {
    width: 50px;
    height: 2px;
    background: var(--gradient-brand);
    margin: 1.2rem 0;
}

/* ── How It Works ── */
.howit-section {
    padding: 7rem 2rem;
    background: #fff;
}

.step-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-connector {
    position: absolute;
    top: 46px;
    left: calc(50% + 46px);
    width: calc(100% - 92px);
    height: 2px;
    background: linear-gradient(90deg, rgba(245,197,24,0.5), rgba(245,132,27,0.2));
    z-index: 0;
}

.step-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-color-3);
    box-shadow: 0 8px 28px rgba(245,197,24,0.4);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-pill:hover .step-circle {
    transform: scale(1.08);
    box-shadow: 0 12px 36px rgba(245,197,24,0.55);
}

.step-num-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--accent-color-3);
    border: 2px solid var(--accent-color);
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-pill h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.step-pill p {
    font-size: 13.5px;
    color: var(--text-color-2);
    line-height: 1.75;
    max-width: 240px;
    margin: 0 auto;
}

/* ── Journey Timeline ── */
.timeline-section {
    padding: 7rem 2rem;
    background: var(--accent-color-3);
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgba(245,197,24,0.025) 0px, rgba(245,197,24,0.025) 1px,
        transparent 1px, transparent 50px
    );
    pointer-events: none;
}

.timeline-track {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 820px;
    margin: 0 auto;
}

/* Desktop: central vertical line */
.timeline-track::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(245,197,24,0.5), rgba(245,132,27,0.2));
    transform: translateX(-50%);
}

/* Desktop: 3-column alternating grid */
.timeline-item {
    display: grid;
    grid-template-columns: 1fr 56px 1fr;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 0;
}

.tl-content {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(245,197,24,0.12);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    transition: border-color 0.3s, background 0.3s;
}

.tl-content:hover { border-color: rgba(245,197,24,0.3); background: rgba(245,197,24,0.06); }

.tl-year {
    font-size: 11px;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.tl-content h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
}

.tl-content p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.5);
    margin: 0;
    line-height: 1.65;
}

.tl-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gradient-brand);
    margin: 0 auto;
    box-shadow: 0 0 0 4px rgba(245,197,24,0.15);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.tl-empty { display: block; }

/* ── CTA Section ── */
.about-cta-section {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #0d1220 0%, #1E2535 60%, #1a1408 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(245,197,24,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.about-cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.about-cta-section p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.85;
}

.cta-btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   RESPONSIVE — 991px (tablets)
═══════════════════════════════════════ */

@media (max-width: 991px) {
    .hero-img-stack { display: none; }
    .about-hero-content { text-align: center; padding: 4rem 0; }
    .about-hero-desc { margin: 0 auto 2rem; }
    .about-hero-breadcrumb { justify-content: center; }
    .about-cta-glow { width: 100%; }
    .step-connector { display: none; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 767px (mobile)
   FIX: Timeline switches to left-rail layout.
   The key bug was that odd .timeline-items have
   .tl-content as their FIRST child in the DOM,
   which landed it in the narrow 44px column on
   mobile. Explicit grid-column/grid-row placement
   forces dot → col 1, content → col 2 always.
═══════════════════════════════════════ */

@media (max-width: 767px) {
    .origin-section,
    .why-section,
    .howit-section,
    .timeline-section {
        padding: 4rem 1rem;
    }

    .founder-quote-area { padding: 3rem 1.5rem; }
    .founder-img-wrap   { min-height: 280px; }

    /* ── Timeline mobile: left-side rail ── */

    /* Move the vertical line from centre to left rail */
    .timeline-track::before {
        left: 20px;
        transform: none;
    }

    /* Switch to 2-column: small dot rail | wide content */
    .timeline-item {
        display: grid;
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto;
        gap: 0 1rem;
        align-items: start;
        padding: 1rem 0;
    }

    /* ── CORE FIX: force explicit placement for ALL items ── */

    /* Dot always in column 1, row 1 */
    .tl-dot {
        grid-column: 1;
        grid-row: 1;
        margin: 0 auto;
        margin-top: 1.1rem; /* vertically align with card title */
    }

    /* Content always in column 2, row 1 — overrides both odd & even */
    .tl-content {
        grid-column: 2;
        grid-row: 1;
    }

    /* Hide empty spacers entirely */
    .tl-empty {
        display: none !important;
    }

    /* Reset desktop even-item placement so it doesn't conflict */
    .timeline-item:nth-child(even) .tl-content { grid-column: 2; grid-row: 1; }
    .timeline-item:nth-child(even) .tl-empty   { display: none !important; }
    .timeline-item:nth-child(even) .tl-dot     { grid-column: 1; grid-row: 1; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 480px (small phones)
═══════════════════════════════════════ */

@media (max-width: 480px) {
    .timeline-item {
        grid-template-columns: 32px 1fr;
        gap: 0 0.75rem;
    }

    .tl-content {
        padding: 1rem 1rem;
    }

    .tl-content h5 {
        font-size: 0.88rem;
    }

    .tl-content p {
        font-size: 12px;
    }

    .tl-year {
        font-size: 10px;
    }

    .tl-dot {
        width: 13px;
        height: 13px;
        margin-top: 1rem;
    }

    .counter-num  { font-size: 2.2rem; }
    .counter-sup  { font-size: 1.1rem; }
    .counter-card { padding: 1.5rem 0.75rem; }
}
/* ═══════════════════════════════════════════════════════
   ABOUT PAGE — about.css
   Only styles specific to about.html that are NOT in style.css
═══════════════════════════════════════════════════════ */

/* ── Hero Breadcrumb ── */
.about-page-hero {
    background: linear-gradient(135deg, #151b28 0%, #1E2535 60%, #2b2010 100%);
    padding: 3.5rem 1rem;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--accent-color);
}

.about-page-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(245, 197, 24, 0.04) 0px,
        rgba(245, 197, 24, 0.04) 1px,
        transparent 1px,
        transparent 55px
    );
    pointer-events: none;
}

.about-page-hero h2 {
    font-size: 2.8rem;
    font-weight: 700;
}

.about-page-hero-tag {
    display: inline-block;
    background: rgba(245, 197, 24, 0.12);
    border: 1px solid rgba(245, 197, 24, 0.3);
    color: var(--accent-color);
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 1px;
    font-family: var(--font-1);
}

/* ═══════════════════════════════════════════════════════
   IMAGE + CONTENT SECTION
   New section: image left, content right.
   On mobile: image stacks on top, content below.
═══════════════════════════════════════════════════════ */

.img-content-section {
    background: #fff;
}

/* ── Image side ── */
.img-content-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Decorative yellow blob behind the image */
.img-content-blob {
    position: absolute;
    top: -24px;
    left: -24px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    border-radius: 20px;
    background: var(--gradient-brand);
    opacity: 0.10;
    z-index: 0;
    pointer-events: none;
}

/* Main image itself */
.img-content-main-img {
    position: relative;
    z-index: 1;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.13);
    display: block;
}

/* Floating badge pinned to bottom-right of image */
.img-content-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 2;
    background: var(--gradient-brand);
    border-radius: 16px;
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 12px 32px rgba(245, 197, 24, 0.45);
    min-width: 180px;
}

.img-content-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(30, 37, 53, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent-color-3);
    flex-shrink: 0;
}

.img-content-badge-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-color-3);
    line-height: 1;
}

.img-content-badge-lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-color-3);
    opacity: 0.75;
    margin-top: 2px;
}

/* ── Content side ── */

/* Eyebrow label — matches style.css .section-eyebrow pattern */
.img-content-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.img-content-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gradient-brand);
    border-radius: 2px;
}

.img-content-eyebrow span {
    color: var(--accent-color-2);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--font-1);
}

/* Feature checklist */
.img-content-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 0.5rem;
}

.img-content-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    font-size: 14.5px;
    color: var(--text-color-2);
    line-height: 1.65;
}

.img-content-list-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(245, 197, 24, 0.12);
    border: 1px solid rgba(245, 197, 24, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--accent-color-2);
    flex-shrink: 0;
    margin-top: 2px;
}

.img-content-list-item strong {
    color: var(--text-color);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — tablet (max 991px)
═══════════════════════════════════════════════════════ */

@media (max-width: 991px) {
    /* Image side: reduce blob offset so it doesn't clip */
    .img-content-blob {
        top: -14px;
        left: -14px;
    }

    /* Badge: move slightly inward so it doesn't overflow viewport */
    .img-content-badge {
        right: 8px;
        bottom: -16px;
        min-width: 160px;
        padding: 0.85rem 1.1rem;
    }

    .img-content-badge-num  { font-size: 1.25rem; }
    .img-content-badge-lbl  { font-size: 10px; }
    .img-content-badge-icon { width: 34px; height: 34px; font-size: 0.95rem; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — mobile (max 767px)
   Image stacks above content, full width, badge tucked in
═══════════════════════════════════════════════════════ */

@media (max-width: 767px) {
    .about-page-hero        { padding: 2.5rem 1rem; }
    .about-page-hero h2     { font-size: 1.8rem; }

    /* Give the image wrap breathing room below for the badge */
    .img-content-img-wrap   { margin-bottom: 2rem; }

    /* Smaller blob on mobile */
    .img-content-blob {
        top: -10px;
        left: -10px;
        width: 100%;
        height: 100%;
        border-radius: 16px;
    }

    /* Badge: bottom-right but well inside viewport */
    .img-content-badge {
        right: 12px;
        bottom: -18px;
        min-width: 150px;
        padding: 0.75rem 1rem;
        gap: 0.65rem;
        border-radius: 12px;
    }

    .img-content-badge-icon { width: 30px; height: 30px; font-size: 0.85rem; }
    .img-content-badge-num  { font-size: 1.1rem; }
    .img-content-badge-lbl  { font-size: 10px; }

    /* List items: slightly smaller text */
    .img-content-list-item  { font-size: 13.5px; }

    /* Buttons: full width on very small screens */
    .img-content-section .btn { width: 100%; }
    .img-content-section .btn-inline { width: auto !important; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — small phones (max 480px)
═══════════════════════════════════════════════════════ */

@media (max-width: 480px) {
    .img-content-badge      { min-width: 130px; right: 8px; bottom: -16px; }
    .img-content-badge-num  { font-size: 1rem; }
    .img-content-list-item  { font-size: 13px; }
    .img-content-list-icon  { width: 24px; height: 24px; font-size: 10px; }
}/* ── Hero Breadcrumb with Background Image ── */
.about-page-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--accent-color);
}

/* Dark overlay so text stays readable over any image */
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(21, 27, 40, 0.82) 0%,
        rgba(30, 37, 53, 0.70) 60%,
        rgba(43, 32, 16, 0.75) 100%
    );
    z-index: 1;
}

/* Diagonal pattern on top of overlay */
.about-page-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(245, 197, 24, 0.04) 0px,
        rgba(245, 197, 24, 0.04) 1px,
        transparent 1px,
        transparent 55px
    );
    z-index: 2;
    pointer-events: none;
}

/* Pill tag */
.about-page-hero-tag {
    display: inline-block;
    background: rgba(245, 197, 24, 0.15);
    border: 1px solid rgba(245, 197, 24, 0.35);
    color: var(--accent-color);
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 1px;
    font-family: var(--font-1);
    font-weight: 600;
}

/* Mobile */
@media (max-width: 767px) {
    .about-page-hero   { padding: 3.5rem 1rem; }
    .about-page-hero h2 { font-size: 1.8rem; }
    .about-page-hero-tag { font-size: 11px; }
}
/* ═══════════════════════════════════════════════════════
   CONTACT PAGE — contact.css
   Only styles specific to contact.html (not in style.css)
═══════════════════════════════════════════════════════ */


/* ── Quick Info Strip ── */
.contact-info-strip {
    background: var(--accent-color-3);
    border-bottom: 1px solid rgba(245, 197, 24, 0.12);
}

.contact-strip-row {
    /* border between cols */
}

.contact-strip-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 0.3s;
}

.contact-strip-card:hover {
    background: rgba(245, 197, 24, 0.04);
}

.contact-strip-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--accent-color-3);
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(245, 197, 24, 0.35);
}

.contact-strip-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2px;
    font-family: var(--font-1);
}

.contact-strip-value {
    display: block;
    font-size: 14px;
    color: white;
    font-weight: 500;
    font-family: var(--font-1);
    text-decoration: none;
    transition: color 0.3s;
}

a.contact-strip-value:hover {
    color: var(--accent-color);
}

/* ── Contact Form Card ── */
.contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2.5rem;
    border: 1px solid rgba(245, 197, 24, 0.1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
}

.contact-form-header {
    margin-bottom: 2rem;
}

/* Eyebrow label (reused pattern matching about.css) */
.contact-form-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--gradient-brand);
    border-radius: 2px;
}

.contact-form-eyebrow span {
    color: var(--accent-color-2);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--font-1);
}

/* Form field labels */
.contact-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.4rem;
    font-family: var(--font-1);
}

/* Submit button — full width on its own row */
.contact-submit-btn {
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-top: 0.5rem;
}

/* ── Right Panel: Contact Info Card ── */
.contact-info-card {
    background: var(--accent-color-3);
    border: 1px solid rgba(245, 197, 24, 0.12);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.contact-info-card-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-info-card-header h5 {
    color: white;
}

/* Detail list */
.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: background 0.25s;
    border-radius: 8px;
    padding-inline: 0.5rem;
}

.contact-detail-item:last-child {
    border-bottom: none;
}

.contact-detail-item:hover {
    background: rgba(245, 197, 24, 0.05);
}

.contact-detail-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(245, 197, 24, 0.12);
    border: 1px solid rgba(245, 197, 24, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
    transition: background 0.3s;
}

.contact-detail-item:hover .contact-detail-icon {
    background: var(--gradient-brand);
    color: var(--accent-color-3);
    border-color: transparent;
}

.contact-detail-label {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2px;
    font-family: var(--font-1);
}

.contact-detail-val {
    display: block;
    font-size: 14px;
    color: white;
    font-weight: 500;
    font-family: var(--font-1);
    line-height: 1.5;
}

/* Social row */
.contact-social-row {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

/* ── Promise Card ── */
.contact-promise-card {
    background: linear-gradient(135deg, #1E2535 0%, #151b28 100%);
    border: 1px solid rgba(245, 197, 24, 0.15);
    border-left: 4px solid var(--accent-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-promise-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--accent-color-3);
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(245, 197, 24, 0.35);
}

.contact-promise-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-promise-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    font-family: var(--font-1);
}

.contact-promise-item strong {
    color: var(--accent-color);
}

/* ── Map wrapper ── */
.contact-map-wrapper {
    border: 1px solid rgba(245, 197, 24, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* ── FAQ Items ── */
.contact-faq-item {
    background: #fff;
    border: 1px solid rgba(245, 197, 24, 0.1);
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    height: 100%;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.contact-faq-item:hover {
    border-color: rgba(245, 197, 24, 0.4);
    box-shadow: 0 8px 28px rgba(245, 197, 24, 0.1);
    transform: translateY(-4px);
}

.contact-faq-q {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-color);
    font-family: var(--font-1);
    margin-bottom: 0.75rem;
    line-height: 1.55;
}

.contact-faq-a {
    font-size: 14px;
    color: var(--text-color-2);
    line-height: 1.8;
    margin: 0;
    padding-left: 1.6rem;
}

/* ═══════════════════════════════════════
   RESPONSIVE — max 993px (tablet)
═══════════════════════════════════════ */

@media (max-width: 993px) {
    .contact-page-hero  { padding: 3.5rem 1rem; }

    .contact-strip-card {
        padding: 1.25rem 1.25rem;
    }

    .contact-form-card {
        padding: 2rem 1.75rem;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE — max 767px (mobile)
═══════════════════════════════════════ */

@media (max-width: 767px) {
    .contact-page-hero          { padding: 3rem 1rem; }
    .contact-page-hero h2       { font-size: 1.8rem; }
    .contact-page-hero-tag      { font-size: 11px; }

    /* Strip: 2 across then 2 across */
    .contact-strip-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 1rem 1.25rem;
    }

    /* Make col-sm-2 strip feel like a 2-col grid on small */
    .contact-strip-row .col:nth-child(odd) .contact-strip-card {
        border-right: 1px solid rgba(255, 255, 255, 0.07);
    }

    .contact-form-card          { padding: 1.5rem 1.25rem; }
    .contact-form-card h3       { font-size: 1.4rem; }

    .contact-faq-q              { font-size: 14px; }
    .contact-faq-a              { font-size: 13px; padding-left: 1.4rem; }
    .contact-faq-item           { padding: 1.25rem 1.25rem; }

    .contact-promise-card       { padding: 1.5rem; }
    .contact-info-card          { padding: 1.5rem; }

    .contact-strip-icon         { width: 38px; height: 38px; font-size: 13px; }
    .contact-strip-value        { font-size: 13px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — max 480px (small phones)
═══════════════════════════════════════ */

@media (max-width: 480px) {
    .contact-form-card          { padding: 1.25rem 1rem; }
    .contact-strip-card         { padding: 0.85rem 1rem; gap: 0.75rem; }
    .contact-strip-icon         { width: 34px; height: 34px; font-size: 12px; border-radius: 8px; }
    .contact-strip-label        { font-size: 10px; }
    .contact-strip-value        { font-size: 12px; }
    .contact-detail-icon        { width: 32px; height: 32px; font-size: 12px; }
    .contact-promise-icon       { width: 38px; height: 38px; font-size: 14px; }
    .contact-faq-q              { font-size: 13px; }
}
/* ═══════════════════════════════════════════════════════
   BLOG PAGE — blog.css
   Only styles specific to blog.html (not in style.css)
═══════════════════════════════════════════════════════ */

/* ── Blog Card Base ── */
.blog-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(245, 197, 24, 0.1);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(245, 197, 24, 0.13);
    border-color: rgba(245, 197, 24, 0.35);
}

/* ── Featured Card (horizontal layout) ── */
.blog-card-featured {
    border-left: 4px solid var(--accent-color);
}

.blog-card-featured:hover {
    transform: translateY(-6px);
}

/* ── Image Wrap ── */
.blog-card-img-wrap {
    position: relative;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

/* Featured card image taller */
.blog-card-featured .blog-card-img {
    height: 100%;
    min-height: 300px;
}

/* ── Category Badge ── */
.blog-card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gradient-brand);
    color: var(--accent-color-3);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-family: var(--font-1);
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(245, 197, 24, 0.4);
}

/* ── Card Body ── */
.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.blog-card-body-featured {
    padding: 2.5rem 2.5rem;
    justify-content: center;
}

/* ── Meta Row ── */
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 12px;
    color: var(--text-color-2);
    font-family: var(--font-1);
}

.blog-card-meta i {
    color: var(--accent-color-2);
    font-size: 11px;
}

/* ── Titles ── */
.blog-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s;
}

.blog-card:hover .blog-card-title {
    color: var(--accent-color-2);
}

.blog-card-title-featured {
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.35;
    margin: 0;
    transition: color 0.3s;
}

.blog-card-featured:hover .blog-card-title-featured {
    color: var(--accent-color-2);
}

/* ── Excerpt ── */
.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-color-2);
    line-height: 1.8;
    margin: 0;
}

/* ── Read More Link ── */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color-2);
    text-decoration: none;
    margin-top: auto;
    padding-top: 0.5rem;
    transition: color 0.3s, gap 0.3s;
    font-family: var(--font-1);
}

.blog-read-more:hover {
    color: var(--accent-color);
    gap: 0.7rem;
}

/* ═══════════════════════════════════════
   RESPONSIVE — max 993px
═══════════════════════════════════════ */
@media (max-width: 993px) {
    .blog-card-body-featured {
        padding: 2rem 1.75rem;
    }

    .blog-card-featured .blog-card-img {
        min-height: 240px;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE — max 767px
═══════════════════════════════════════ */
@media (max-width: 767px) {
    /* Featured card stacks vertically */
    .blog-card-featured .blog-card-img {
        min-height: 200px;
        height: 200px;
    }

    .blog-card-body-featured {
        padding: 1.5rem 1.25rem;
    }

    .blog-card-img {
        height: 190px;
    }

    .blog-card-body {
        padding: 1.25rem;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE — max 480px
═══════════════════════════════════════ */
@media (max-width: 480px) {
    .blog-card-img {
        height: 170px;
    }

    .blog-card-title {
        font-size: 14.5px;
    }

    .blog-card-excerpt {
        font-size: 13px;
    }

    .blog-card-category {
        font-size: 10px;
        padding: 0.25rem 0.7rem;
    }
}



/* ═══════════════════════════════════════════════════════
   PRICING PLAN PAGE — price_plan.css
   Only styles specific to price_plan.html
═══════════════════════════════════════════════════════ */

/* ── Pricing Card Base ── */
.pp-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(245, 197, 24, 0.12);
    padding: 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.pp-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-brand);
    transition: width 0.4s ease;
}

.pp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 56px rgba(245, 197, 24, 0.13);
    border-color: rgba(245, 197, 24, 0.35);
}

.pp-card:hover::before {
    width: 100%;
}

/* ── Featured Card ── */
.pp-card-featured {
    background: var(--accent-color-3);
    border-color: rgba(245, 197, 24, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.pp-card-featured:hover {
    box-shadow: 0 28px 64px rgba(245, 197, 24, 0.25);
    border-color: var(--accent-color);
}

.pp-card-featured::before {
    background: var(--gradient-brand);
}

/* ── Popular Tag ── */
.pp-popular-tag {
    position: absolute;
    top: 18px;
    right: -32px;
    background: var(--gradient-brand);
    color: var(--accent-color-3);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.3rem 2.8rem;
    transform: rotate(45deg);
    font-family: var(--font-1);
}

/* ── Card Header ── */
.pp-card-header {
    margin-bottom: 1.5rem;
}

/* ── Plan Icon ── */
.pp-plan-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(245, 197, 24, 0.1);
    border: 1px solid rgba(245, 197, 24, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-color-2);
    margin-bottom: 1rem;
    transition: background 0.3s, transform 0.3s;
}

.pp-card:hover .pp-plan-icon {
    background: var(--gradient-brand);
    color: var(--accent-color-3);
    border-color: transparent;
    transform: scale(1.06) rotate(-4deg);
}

.pp-plan-icon-dark {
    background: rgba(245, 197, 24, 0.15);
    border-color: rgba(245, 197, 24, 0.3);
    color: var(--accent-color);
}

.pp-card-featured:hover .pp-plan-icon-dark {
    background: var(--gradient-brand);
    color: var(--accent-color-3);
}

/* ── Plan Badge ── */
.pp-plan-badge {
    display: inline-block;
    background: rgba(245, 197, 24, 0.1);
    border: 1px solid rgba(245, 197, 24, 0.25);
    color: var(--accent-color-2);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.6rem;
    font-family: var(--font-1);
}

.pp-plan-badge-dark {
    background: rgba(245, 197, 24, 0.15);
    border-color: rgba(245, 197, 24, 0.35);
    color: var(--accent-color);
}

/* ── Plan Name ── */
.pp-plan-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.4rem;
}

.pp-card-featured .pp-plan-name {
    color: white;
}

/* ── Plan Desc ── */
.pp-plan-desc {
    font-size: 13.5px;
    color: var(--text-color-2);
    line-height: 1.75;
    margin: 0;
}

.pp-card-featured .pp-plan-desc {
    color: rgba(255, 255, 255, 0.55);
}

/* ── Price Block ── */
.pp-card-price {
    display: flex;
    align-items: flex-end;
    gap: 0.2rem;
    margin-bottom: 1.25rem;
}

.pp-currency {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-color-2);
    line-height: 1;
    margin-bottom: 4px;
    font-family: var(--font-1);
}

.pp-amount {
    font-size: 2.8rem;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: var(--font-1);
}

.pp-unit {
    font-size: 14px;
    color: var(--text-color-2);
    font-weight: 500;
    margin-bottom: 6px;
    font-family: var(--font-1);
}

.pp-card-featured .pp-unit {
    color: rgba(255, 255, 255, 0.5);
}

/* ── Divider ── */
.pp-divider {
    height: 1px;
    background: rgba(245, 197, 24, 0.12);
    margin-bottom: 1.5rem;
}

.pp-divider-dark {
    background: rgba(255, 255, 255, 0.08);
}

/* ── Feature List ── */
.pp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    flex: 1;
}

.pp-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 14px;
    color: var(--text-color-2);
    font-family: var(--font-1);
    line-height: 1.5;
}

.pp-feature-list li i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(245, 197, 24, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--accent-color-2);
    flex-shrink: 0;
}

.pp-feature-inactive {
    opacity: 0.38;
}

.pp-feature-inactive i {
    background: rgba(0, 0, 0, 0.06) !important;
    color: #aaa !important;
}

/* Dark list (featured card) */
.pp-feature-list-dark li {
    color: rgba(255, 255, 255, 0.7);
}

.pp-feature-list-dark li i {
    background: rgba(245, 197, 24, 0.15);
    color: var(--accent-color);
}

/* ── Card Footer ── */
.pp-card-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ── ROI Note ── */
.pp-roi-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-color-2);
    margin: 0;
    font-family: var(--font-1);
}

.pp-roi-note-dark {
    color: rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════
   RESPONSIVE — max 993px
═══════════════════════════════════════ */
@media (max-width: 993px) {
    .pp-card {
        padding: 1.75rem 1.5rem;
    }

    .pp-amount {
        font-size: 2.2rem;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE — max 767px
═══════════════════════════════════════ */
@media (max-width: 767px) {
    .pp-card {
        padding: 1.5rem 1.25rem;
    }

    .pp-popular-tag {
        font-size: 10px;
        right: -30px;
        padding: 0.25rem 2.5rem;
    }

    .pp-amount {
        font-size: 2rem;
    }

    .pp-plan-name {
        font-size: 1.1rem;
    }

    .pp-feature-list li {
        font-size: 13.5px;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE — max 480px
═══════════════════════════════════════ */
@media (max-width: 480px) {
    .pp-plan-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .pp-amount {
        font-size: 1.8rem;
    }

    .pp-feature-list li {
        font-size: 13px;
    }
}


/* ═══════════════════════════════════════
   FLOATING WHATSAPP & CALL BUTTONS
   Circle shape with ripple wave on hover
═══════════════════════════════════════ */

/* ═══════════════════════════════════════
   FLOATING WHATSAPP & CALL BUTTONS
   Row layout: WhatsApp left | Call right
   Always-on ripple wave animation
═══════════════════════════════════════ */

@keyframes float-ripple {
    0%   { transform: scale(1);   opacity: 0.55; }
    100% { transform: scale(2.4); opacity: 0;    }
}

/* Container — spans full bottom, one btn each side */
.floating-contact-btns {
    position: fixed;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 1.5rem;
    pointer-events: none;   /* let clicks pass through the gap */
    z-index: 9999;
}

/* Each wrapper re-enables pointer events */
.float-btn-wrap {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

/* Ripple rings — always animating */
.float-btn-wrap::before,
.float-btn-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

.float-btn-wrap::before {
    animation: float-ripple 1.8s ease-out infinite;
}

.float-btn-wrap::after {
    animation: float-ripple 1.8s ease-out 0.9s infinite;
}

/* WhatsApp ripple — green */
.float-btn-wrap.wrap-whatsapp::before,
.float-btn-wrap.wrap-whatsapp::after {
    border: 3px solid #25D366;
}

/* Call ripple — gold */
.float-btn-wrap.wrap-call::before,
.float-btn-wrap.wrap-call::after {
    border: 3px solid var(--accent-color);
}

/* The circle button */
.float-btn {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.float-btn i {
    font-size: 1.5rem;
    line-height: 1;
}

.float-btn:hover {
    transform: scale(1.12);
    color: inherit;
}

/* Tooltip on hover — desktop only */
.float-btn-label {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: #1E2535;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-1);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, bottom 0.25s ease;
}

.float-btn-label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px 5px 0 5px;
    border-style: solid;
    border-color: #1E2535 transparent transparent transparent;
}

.float-btn-wrap:hover .float-btn-label {
    opacity: 1;
    bottom: 74px;
}

/* WhatsApp — green */
.float-whatsapp {
    background-color: #25D366;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.float-whatsapp:hover {
    background-color: #1ebe5d;
    color: #fff;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.65);
}

/* Call — gold brand */
.float-call {
    background: var(--gradient-brand);
    color: var(--accent-color-3);
    box-shadow: 0 6px 20px rgba(245, 197, 24, 0.45);
}

.float-call:hover {
    background: var(--gradient-brand-hover);
    color: var(--accent-color-3);
    box-shadow: 0 8px 28px rgba(245, 197, 24, 0.65);
}

/* Mobile */
@media (max-width: 767px) {
    .floating-contact-btns {
        bottom: 1rem;
        padding: 0 1rem;
    }

    .float-btn-wrap {
        width: 54px;
        height: 54px;
    }

    .float-btn {
        width: 54px;
        height: 54px;
    }

    .float-btn i {
        font-size: 1.3rem;
    }

    .float-btn-label {
        display: none;
    }
}

/* Active nav — mobile highlight */
@media only screen and (max-width: 993px) {
    .nav-link.active::after {
        display: none;
    }
    .nav-link.active {
        border-left: 3px solid var(--accent-color) !important;
        padding-left: 0.75rem !important;
        background: rgba(245, 197, 24, 0.08) !important;
        border-radius: 6px !important;
        text-align: left !important;
    }
}

/* ═══════════════════════════════════════
   SINGLE BLOG PAGE
═══════════════════════════════════════ */

/* ── Article Card ── */
.single-blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(245, 197, 24, 0.1);
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

/* ── Featured Image ── */
.single-blog-img-wrap {
    position: relative;
    overflow: hidden;
}

.single-blog-img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.single-blog-card:hover .single-blog-img {
    transform: scale(1.03);
}

/* ── Meta Row ── */
.single-blog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.5rem 2rem 0;
}

.single-blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 13px;
    color: var(--text-color-2);
    font-family: var(--font-1);
}

.single-blog-meta i {
    color: var(--accent-color-2);
    font-size: 12px;
}

/* ── Title ── */
.single-blog-title {
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.35;
    padding: 1rem 2rem 0;
    margin: 0;
}

/* ── Body ── */
.single-blog-body {
    padding: 1.25rem 2rem 1.5rem;
    color: var(--text-color-2);
    line-height: 1.9;
    font-size: 15px;
}

.single-blog-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.single-blog-body p {
    margin-bottom: 1rem;
}

/* ── Highlight Box ── */
.single-blog-highlight {
    background: rgba(245, 197, 24, 0.08);
    border-left: 4px solid var(--accent-color);
    border-radius: 0 10px 10px 0;
    padding: 1rem 1.25rem;
    font-size: 14.5px;
    color: var(--text-color);
    line-height: 1.75;
    margin: 1.25rem 0;
}

/* ── Tags ── */
.single-blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0 2rem 1.5rem;
}

.single-blog-tag {
    background: rgba(245, 197, 24, 0.1);
    border: 1px solid rgba(245, 197, 24, 0.3);
    color: var(--accent-color-2);
    font-size: 12px;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-family: var(--font-1);
    letter-spacing: 0.3px;
}

/* Share row */
.single-blog-card .social-container,
.single-blog-card hr {
    margin-left: 2rem;
    margin-right: 2rem;
}

.single-blog-card > .d-flex {
    padding: 0 2rem 1.75rem;
}

/* ── Sidebar Card ── */
.single-blog-sidebar-card {
    background: var(--accent-color-3);
    border: 1px solid rgba(245, 197, 24, 0.12);
    border-radius: 20px;
    overflow: hidden;
}

.single-blog-sidebar-header {
    background: var(--gradient-brand);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.single-blog-sidebar-header h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color-3) !important;
}

/* ── Sidebar Post Items ── */
.sidebar-post-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.1rem 1.5rem;
}

.sidebar-post-date {
    font-size: 12px;
    color: var(--accent-color);
    font-family: var(--font-1);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.sidebar-post-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    line-height: 1.55;
    transition: color 0.3s;
    font-family: var(--font-1);
}

.sidebar-post-title:hover {
    color: var(--accent-color);
}

.sidebar-divider {
    margin: 0 1.5rem;
    border-color: rgba(255,255,255,0.07);
}

/* ── CTA Card ── */
.single-blog-cta-card {
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Categories ── */
.sidebar-category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    font-family: var(--font-1);
    transition: background 0.3s, color 0.3s;
}

.sidebar-category-item:hover {
    background: rgba(245, 197, 24, 0.1);
    color: var(--accent-color);
}

.sidebar-category-count {
    background: rgba(245, 197, 24, 0.15);
    color: var(--accent-color);
    font-size: 11px;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    border-radius: 50px;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .single-blog-meta     { padding: 1.25rem 1.25rem 0; gap: 1rem; }
    .single-blog-title    { padding: 0.75rem 1.25rem 0; font-size: 1.2rem; }
    .single-blog-body     { padding: 1rem 1.25rem 1.25rem; font-size: 14px; }
    .single-blog-tags     { padding: 0 1.25rem 1.25rem; }
    .single-blog-card hr,
    .single-blog-card .social-container { margin-left: 1.25rem; margin-right: 1.25rem; }
    .single-blog-card > .d-flex { padding: 0 1.25rem 1.5rem; }
    .single-blog-cta-card { min-height: 280px; }
}

/* ═══════════════════════════════════════
   INVESTMENT HIGHLIGHT — banner only
   Clean pill/badge style, no broken border on line-wrap
═══════════════════════════════════════ */

.banner-desc .invest-highlight {
    display: inline-block;
    background: linear-gradient(135deg, rgba(245,197,24,0.20) 0%, rgba(245,132,27,0.12) 100%);
    border: 1px solid rgba(245, 197, 24, 0.55);
    border-left: 4px solid #F5C518;
    border-radius: 8px;
    padding: 6px 14px 6px 12px;
    margin-top: 8px;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #FFE066 !important;
    letter-spacing: 0.02em;
    line-height: 1.6;
    font-family: var(--font-1) !important;
}

@media (max-width: 993px) {
    .banner-desc .invest-highlight {
        font-size: 0.97rem !important;
        padding: 5px 12px 5px 10px;
    }
}

@media (max-width: 767px) {
    .banner-desc .invest-highlight {
        font-size: 14px !important;
        padding: 5px 10px 5px 9px;
        margin-top: 6px;
        border-left-width: 3px;
    }
}

@media (max-width: 480px) {
    .banner-desc .invest-highlight {
        font-size: 13px !important;
        padding: 4px 8px 4px 8px;
    }
}


/* ─── Mobile banner bottom space fix ─────────────────────── */
@media (max-width: 767px) {
    .banner-section {
        height: auto !important;
        min-height: unset !important;
        padding: 5rem 1.5rem 3rem !important;
    }
    .banner-content {
        padding-bottom: 0 !important;
    }
}

@media (max-width: 480px) {
    .banner-section {
        padding: 4.5rem 1rem 2.5rem !important;
    }
}

/* ============================================================
   UNIK CONTACT FORM POPUP — add to contact.css
   ============================================================ */

.unik-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.unik-popup-overlay.active {
    display: flex;
}

.unik-popup-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.unik-popup-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.unik-popup-title {
    margin-bottom: 8px;
}

.unik-popup-msg {
    color: #666;
    font-size: 15px;
    margin-bottom: 24px;
}

.unik-popup-close {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
}

.unik-popup-close:hover {
    opacity: 0.88;
}