/*
=========================================
  HEAL YOUR BOND - PREMIUM STYLE SHEET
=========================================
  Brand: Heal Your Bond
  Counselor: Krati Sharmma
  Aesthetic: Modern, Serene, Premium, Editorial
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary: #9b747c;
    /* Sophisticated Dusty Mauve / Soft Rose (Healing, Empathetic, Trusted) */
    --primary-light: #c7a0a8;
    --primary-dark: #755158;
    --secondary: #5e7068;
    /* Calming Eucalyptus Green (Organic, Growth, Tranquil) */
    --accent: #ecd7d3;
    /* Soft Rose Quartz Mist */
    --bg-main: #fbf9f9;
    /* Clean Alabaster Warm White */
    --bg-card: #ffffff;
    --text-dark: #352a2d;
    /* Luxury Charcoal Plum for soft readability */
    --text-medium: #625558;
    --text-light: #897e81;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Global Resets & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* Luxury Organic Paper Grain Texture Overlay */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: multiply;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 94%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 25px;
}

.section {
    padding: 120px 0;
    position: relative;
    /* Luxury Blueprint Dotted Grid Accent */
    background-image: radial-gradient(rgba(155, 116, 124, 0.05) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
}

/* Buttons & Elements */
.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background-color: var(--primary);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(155, 116, 124, 0.2);
    text-transform: capitalize;
}

.btn-custom:hover {
    background-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(92, 112, 103, 0.25);
    color: #ffffff;
}

.btn-custom.secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
}

.btn-custom.secondary:hover {
    background-color: var(--primary);
    color: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    position: relative;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-medium);
    font-size: 1.1rem;
}

/* =========================================
  Navigation Header
========================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.logo img {
    height: 45px;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-medium);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta .btn-custom {
    padding: 12px 28px;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* =========================================
  Hero Section
========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 60px;
    overflow: hidden;
}

/* Bottom gradient fade to blend into about section */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg-main));
    z-index: 1;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('../img/hero_banner_new.png');
    background-size: cover;
    background-position: left center;
    z-index: -1;
    border-bottom-left-radius: 300px;
    opacity: 0.9;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg-main) 0%, rgba(250, 248, 245, 0.1) 40%, rgba(250, 248, 245, 0) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 200px);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(155, 116, 124, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(155, 116, 124, 0.2);
}

.hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--primary);
    font-style: italic;
}

.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 2;
}

.hero-portrait-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4/5;
    background: var(--accent);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    animation: morphHero 15s ease-in-out infinite alternate;
}

.hero-portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.hero-floating-card {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    z-index: 3;
    animation: floatCard 4s ease-in-out infinite alternate;
}

.hero-floating-card i {
    color: var(--primary);
    font-size: 1.2rem;
}

.hero-floating-card span {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

@keyframes morphHero {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes floatCard {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-bg {
        width: 100%;
        border-radius: 0;
        opacity: 0.15;
    }

    .hero-bg::after {
        background: radial-gradient(circle at center, transparent 0%, var(--bg-main) 100%);
    }

    .hero-image-wrap {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions {
        justify-content: center;
    }
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* =========================================
  About Section
========================================= */
.about {
    background-color: var(--bg-main);
    padding-top: 0 !important;
    position: relative;
}

/* Bottom gradient fade into services */
.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--bg-main));
    pointer-events: none;
    z-index: 1;
}

/* =========================================
  About Section — Merak-Inspired Layout
========================================= */
.about-showcase {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Left in HTML but visually RIGHT on desktop */
.about-showcase-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    order: 2;
}

.about-photo-badge {
    position: absolute;
    bottom: -8px;
    left: 0;
    background: var(--secondary);
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(92, 112, 103, 0.25);
    z-index: 5;
}

.badge-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2px;
}

.badge-value {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
}

/* Right in HTML but visually LEFT on desktop */
.about-showcase-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    order: 1;
}

.about-eyebrow {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 10px;
}

.about-name {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text-dark);
    line-height: 1.05;
    margin-bottom: 8px;
}

.about-role {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* Full-width thin divider like Merak */
.about-divider {
    width: 100%;
    height: 1px;
    background: rgba(155, 116, 124, 0.15);
    margin-bottom: 24px;
}

/* 2x2 stats grid — Merak-style bordered cells */
.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin-bottom: 32px;
    border: 1px solid rgba(155, 116, 124, 0.14);
    border-radius: 16px;
    overflow: hidden;
}

.about-stat-item {
    padding: 20px 22px;
    border-right: 1px solid rgba(155, 116, 124, 0.14);
    border-bottom: 1px solid rgba(155, 116, 124, 0.14);
    transition: background 0.3s ease;
}

.about-stat-item:hover {
    background: rgba(155, 116, 124, 0.04);
}

.about-stat-item:nth-child(2),
.about-stat-item:nth-child(4) {
    border-right: none;
}

.about-stat-item:nth-child(3),
.about-stat-item:nth-child(4) {
    border-bottom: none;
}

.about-stat-item strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.about-stat-item span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
}

/* Know More Button */
.know-more-btn {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.know-more-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.know-more-btn.active .know-more-icon {
    transform: rotate(180deg);
}

/* Expandable Details Panel */
.about-expand {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.4s ease,
        margin-top 0.4s ease;
    margin-top: 0;
}

.about-expand.open {
    max-height: 600px;
    opacity: 1;
    margin-top: 48px;
}

.about-expand-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(155, 116, 124, 0.1);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(155, 116, 124, 0.06);
}

.about-expand-col {
    display: flex;
    flex-direction: column;
}

.about-expand-col .expand-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(155, 116, 124, 0.2);
}

.about-expand-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.about-expand-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-expand-col ul li {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    color: var(--text-medium);
    line-height: 1.7;
    padding-left: 18px;
    position: relative;
    margin-bottom: 4px;
}

.about-expand-col ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .about-expand-inner {
        grid-template-columns: 1fr;
        padding: 28px 24px;
        gap: 24px;
    }

    /* Reset order on mobile — photo first, info second */
    .about-showcase-left {
        order: 1;
    }

    .about-showcase-right {
        order: 2;
    }
}

/* Keep image-frame morphing animation */
.image-frame {
    position: relative;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    overflow: hidden;
    background: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    animation: morphImage 10s ease-in-out infinite alternate;
}

.image-frame img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1), transform 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.image-frame img.portrait-base {
    position: relative;
    height: auto;
    z-index: 1;
}

.image-frame img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

@keyframes morphImage {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    100% {
        border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    }
}

/* =========================================
  Services Section
========================================= */
.services {
    background-color: var(--bg-main);
    padding-top: 40px !important;
    position: relative;
}

/* Bottom gradient fade into reels section */
.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--bg-main));
    pointer-events: none;
    z-index: 1;
}

.instagram-feed {
    padding-top: 40px !important;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}


.service-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    padding: 38px 32px 34px;
    border-radius: 28px;
    box-shadow: 0 8px 30px rgba(155, 116, 124, 0.06), 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
    z-index: 1;
}



/* Stylized Roman Numeral background */
.service-card::after {
    content: attr(data-index);
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(155, 116, 124, 0.03);
    line-height: 1;
    z-index: -1;
    transition: var(--transition);
}

.service-card:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(155, 116, 124, 0.12);
    border-color: rgba(155, 116, 124, 0.15);
    background: #ffffff;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    color: rgba(155, 116, 124, 0.07);
    transform: scale(1.1) rotate(-5deg);
}

/* Premium organic icon shape with soft pulse animation */
.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: rgba(155, 116, 124, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.6s ease;
    border: 2px solid rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(155, 116, 124, 0.08);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    /* Flows with morph radius */
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover .service-icon img {
    transform: scale(1.15);
    /* Elegant image zoom on hover */
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    border: 1px dashed var(--primary);
    opacity: 0.3;
    transform: scale(1.15) rotate(0deg);
    transition: all 0.8s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 15px 30px rgba(155, 116, 124, 0.3);
}

.service-card:hover .service-icon::before {
    transform: scale(1.25) rotate(180deg);
    opacity: 0;
}

.service-card h3 {
    font-size: 1.65rem;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-dark);
}

.service-card p {
    color: var(--text-medium);
    flex-grow: 1;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Sleek explore path reveal */
.service-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
    transition: var(--transition);
    margin-top: auto;
}

.service-explore i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-explore {
    color: var(--secondary);
    opacity: 1;
}

.service-card:hover .service-explore i {
    transform: translateX(8px);
}

/* =========================================
  Testimonials Section
========================================= */
.testimonials {
    background: var(--bg-main);
    overflow: hidden;
    padding: 60px 0 80px;
}

.testimonials-marquee-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    width: max-content;
    padding: 20px;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 450px;
    background: var(--bg-main);
    padding: 50px 45px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(155, 116, 124, 0.04);
    border: 1px solid rgba(155, 116, 124, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(155, 116, 124, 0.1);
    border-color: rgba(155, 116, 124, 0.15);
}

.testimonial-stars {
    color: #e8b86d;
    font-size: 1rem;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.testimonial-content {
    font-family: 'Outfit', sans-serif;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 35px;
    position: relative;
    flex-grow: 1;
}

.testimonial-content::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    position: absolute;
    top: -35px;
    left: -15px;
    color: rgba(155, 116, 124, 0.1);
    line-height: 1;
}

.testimonial-author-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px dashed rgba(155, 116, 124, 0.15);
    padding-top: 25px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(155, 116, 124, 0.2);
}

.testimonial-author h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-author p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* =========================================
  Contact Section
========================================= */
.contact {
    background-color: var(--bg-main);
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.contact-info-card {
    background: var(--secondary);
    color: #ffffff;
    padding: 50px;
    border-radius: 30px;
    height: 100%;
}

.contact-info-card h3 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.contact-info-list {
    list-style: none;
    margin-top: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-info-icon {
    font-size: 1.5rem;
    opacity: 0.8;
}

.contact-info-text h4 {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-info-text p,
.contact-info-text a {
    color: rgba(255, 255, 255, 0.75);
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-control {
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--bg-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(155, 116, 124, 0.05);
}

textarea.form-control {
    resize: none;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    /* Premium custom SVG chevron matching primary theme */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239b747c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 24px center;
    background-size: 18px;
    padding-right: 55px;
}

select.form-control:invalid {
    color: #897e81;
    /* Match var(--text-light) for placeholder mood */
}

select.form-control option {
    color: var(--text-dark);
    background: #ffffff;
    padding: 15px;
}

/* =========================================
  Dark Map Footer
========================================= */
.dark-map-footer {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.dark-map-iframe-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.dark-map-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    /* Dark mode map */
    filter: invert(92%) hue-rotate(180deg) saturate(0.85) brightness(0.95);
    pointer-events: none;
}

/* Transparent overlay that blocks scroll/pointer events reaching the iframe */
.dark-map-scroll-block {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: transparent;
    cursor: default;
}

/* Dark gradient overlay */
.dark-map-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

/* Allow clicks on interactive children */
.dark-map-overlay>* {
    pointer-events: all;
}

/* Floating pin brand card — top center */
.dark-map-pin-card {
    align-self: center;
    margin-top: 24px;
    background: rgba(30, 33, 31, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 20px 10px 14px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
}

.dark-map-pin-card .map-label-info strong {
    color: #ffffff;
}

.dark-map-pin-card .map-label-info span {
    color: rgba(255, 255, 255, 0.55);
}

/* Pulsing pin dot */
.map-pin-pulse {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    position: relative;
}

.map-pin-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0.5;
    animation: pinPulse 1.8s ease-out infinite;
}

@keyframes pinPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.map-label-info strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.1;
}

.map-label-info span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3px;
}

/* Hide cloned reel cards on desktop */
.reel-clone {
    display: none !important;
}

@media (max-width: 576px) {
    .reel-clone {
        display: block !important;
    }
}

/* Bottom bar */
.dark-map-bar {
    background: rgba(20, 22, 20, 0.82);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.dark-map-brand {
    display: flex;
    flex-direction: column;
}

.dark-map-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.dark-map-brand-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.5px;
}

.dark-map-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.dark-map-links a {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.dark-map-links a:hover {
    color: var(--primary);
}

.dark-map-social {
    display: flex;
    gap: 12px;
}

.dark-map-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.dark-map-social a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Copyright strip */
.dark-map-copyright {
    text-align: center;
    padding: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
    background: rgba(10, 12, 10, 0.7);
    letter-spacing: 0.3px;
}

/* Mobile */
@media (max-width: 768px) {
    .dark-map-footer {
        height: 480px;
    }

    .dark-map-bar {
        padding: 16px 20px;
        gap: 16px;
    }

    .dark-map-links {
        gap: 16px;
    }
}

/* =========================================
  Footer (legacy — unused but kept for safety)
========================================= */
footer {
    background: #1e211f;
    color: #ffffff;
    padding: 80px 0 30px;
}


.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    max-width: 350px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* =========================================
  Responsive Layouts
========================================= */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-bg {
        width: 100%;
        opacity: 0.15;
        border-radius: 0;
    }

    .hero-bg::after {
        background: radial-gradient(circle, transparent 0%, var(--bg-main) 100%);
    }

    .hero-content p {
        margin: 0 auto 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    /* About showcase — tablet: stack to single column */
    .about-showcase {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-showcase-left {
        max-width: 340px;
        margin: 0 auto;
    }

    .about-showcase-right {
        align-items: center;
        text-align: center;
    }

    .about-name {
        font-size: 2.4rem;
    }

    .about-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .about-stats-grid {
        text-align: left;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .section {
        padding: 80px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-card {
        flex: 0 0 300px;
        padding: 30px;
    }
}

/* =========================================
  TINDER SWIPE DECK — hidden globally, shown only on mobile via media query
========================================= */
.services-tinder-deck {
    display: none;
}

/* =========================================
  Ultra-Modern Interactive & Animated Additions
========================================= */

/* Custom Animated Liquid Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease, background-color 0.3s ease, border-color 0.3s ease;
    transform: translate(-50%, -50%);
    display: none;
}

.custom-cursor-dot {
    width: 4px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    display: none;
}

/* Display custom cursor only on fine pointer devices (desktop) */
@media (pointer: fine) {

    .custom-cursor,
    .custom-cursor-dot {
        display: block;
    }

    body {
        cursor: none;
        /* Hide default cursor */
    }

    a,
    button,
    input,
    textarea,
    .service-card,
    .testimonial-card {
        cursor: none;
    }
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(2.5);
    background-color: rgba(155, 116, 124, 0.1);
    border-color: var(--primary-light);
}

.custom-cursor.link-hover {
    transform: translate(-50%, -50%) scale(3);
    background-color: #ffffff;
    mix-blend-mode: difference;
    border: none;
}

/* Premium Minimal Preloader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-main);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(155, 116, 124, 0.1);
    border-top: 2px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    margin-bottom: 20px;
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUpLoader 0.8s ease forwards;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUpLoader {
    to {
        opacity: 1;
        transform: translateY(-10px);
    }
}

/* Dynamic Decorative Floating Background Blobs */
.blob-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.floating-blob {
    position: absolute;
    background: radial-gradient(circle, rgba(155, 116, 124, 0.12) 0%, rgba(250, 248, 245, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: floatAround 25s infinite alternate ease-in-out;
}

.floating-blob-1 {
    width: 600px;
    height: 600px;
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(92, 112, 103, 0.08) 0%, rgba(250, 248, 245, 0) 70%);
    animation-duration: 30s;
}

.floating-blob-2 {
    width: 500px;
    height: 500px;
    bottom: 10%;
    left: -10%;
    animation-duration: 22s;
    animation-delay: -5s;
}

.floating-blob-3 {
    width: 400px;
    height: 400px;
    top: 40%;
    right: 10%;
    background: radial-gradient(circle, rgba(234, 216, 195, 0.25) 0%, rgba(250, 248, 245, 0) 70%);
    animation-duration: 28s;
    animation-delay: -10s;
}

.floating-blob-4 {
    width: 550px;
    height: 550px;
    bottom: -10%;
    right: -15%;
    background: radial-gradient(circle, rgba(92, 112, 103, 0.07) 0%, rgba(250, 248, 245, 0) 70%);
    animation-duration: 32s;
    animation-delay: -2s;
}

.floating-blob-5 {
    width: 500px;
    height: 500px;
    top: 10%;
    left: -15%;
    background: radial-gradient(circle, rgba(155, 116, 124, 0.06) 0%, rgba(250, 248, 245, 0) 70%);
    animation-duration: 24s;
    animation-delay: -8s;
}

.floating-blob-6 {
    width: 700px;
    height: 700px;
    bottom: 5%;
    right: 15%;
    background: radial-gradient(circle, rgba(234, 216, 195, 0.15) 0%, rgba(250, 248, 245, 0) 70%);
    animation-duration: 35s;
    animation-delay: -12s;
}

@keyframes floatAround {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    33% {
        transform: translate(30px, -50px) rotate(120deg) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg) scale(0.9);
    }

    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
    }
}

/* Ensure content is above blobs */
.hero-grid,
.services-grid,
.testimonial-slider,
.contact-grid {
    position: relative;
    z-index: 1;
}

/* Reveal Masks for Letter/Text GSAP Animation */
.reveal-wrapper {
    overflow: hidden;
    display: inline-block;
}

.reveal-item {
    display: inline-block;
    transform: translateY(100%);
}

/* Enhanced Hover Scale Effects */
.service-card,
.testimonial-card,
.image-frame {
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}

.service-card:hover {
    transform: scale(1.02);
}

/* 3D Tilt effect utilities for JS interaction */
.tilt-target {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.tilt-child {
    transform: translateZ(20px);
}

/* Active/Scrolled Mobile Nav Toggle Effect */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Enhanced button magnetic smooth transition */
.btn-custom {
    transition: background-color 0.4s, color 0.4s, border-color 0.4s, box-shadow 0.4s;
}

/* =========================================
  Interactive Instagram Reels Grid Section
========================================= */
.reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.reel-card {
    position: relative;
    aspect-ratio: 10 / 16;
    /* Luxurious cinematic portrait aspect */
    border-radius: 20px;
    overflow: hidden;
    background: #000000;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 45px rgba(155, 116, 124, 0.15);
}

/* Instagram Follow button — top-right corner of each card */
.reel-follow-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 100px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, opacity 0.2s ease;
    pointer-events: all;
}

.reel-follow-btn:hover {
    transform: scale(1.06);
    opacity: 0.92;
}

.reel-follow-btn i {
    font-size: 0.78rem;
}

.reel-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.reel-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.reel-card:hover .reel-poster {
    transform: scale(1.05);
}

.reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(53, 42, 45, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
    transition: background 0.5s ease, opacity 0.5s ease;
    color: #ffffff;
}

.reel-play-btn {
    font-size: 3rem;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    transform: scale(1);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
}

.reel-card:hover .reel-play-btn {
    transform: scale(1.15);
}

.reel-instruction {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.reel-stats {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0.9;
    transition: opacity 0.4s, transform 0.4s;
}

.reel-stats span {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Playing States */
.reel-card.is-playing .reel-video {
    opacity: 1;
}

.reel-card.is-playing .reel-poster {
    opacity: 0;
    pointer-events: none;
}

.reel-card.is-playing .reel-overlay {
    background: rgba(0, 0, 0, 0);
    /* Completely clear background when playing */
}

.reel-card.is-playing .reel-play-btn,
.reel-card.is-playing .reel-instruction,
.reel-card.is-playing .reel-stats {
    opacity: 0;
    /* Hide UI while playing so they can watch! */
    pointer-events: none;
}

/* Custom pause hint on hover while playing */
.reel-card.is-playing:hover .reel-overlay {
    background: rgba(0, 0, 0, 0.3);
    /* Gentle shade to show pause hint */
}

.reel-card.is-playing:hover::after {
    content: "\f04c";
    /* FontAwesome pause icon unicode */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 3rem;
    z-index: 4;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    animation: fadeIn 0.3s ease forwards;
    pointer-events: none;
}

/* Custom Instagram Outline Button */
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none !important;
}

.btn-outline:hover {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(155, 116, 124, 0.2) !important;
}

/* Responsive Reels Adapters */
@media (max-width: 992px) {
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* =========================================
  HORIZONTAL REELS SCROLL — PHONE VIEW (Centered Peek Carousel)
========================================= */
@media (max-width: 576px) {
    .reels-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px !important;
        /* Symmetric padding so adjacent cards peek ~14vw on each side */
        padding: 16px calc(14vw - 6px) 28px !important;
        margin: 20px 0 0 !important;
        max-width: none !important;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .reels-grid::-webkit-scrollbar {
        display: none;
    }

    .reel-card {
        flex: 0 0 72vw !important;
        max-width: none !important;
        scroll-snap-align: center;
        border-radius: 20px !important;
        transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease !important;
        /* Default: side cards are dimmed and slightly scaled */
        transform: scale(0.87) !important;
        opacity: 0.65 !important;
        filter: brightness(0.7) !important;
        pointer-events: none !important;
    }

    /* Active center card — full size, full brightness, clickable */
    .reel-card.reel-center {
        transform: scale(1) !important;
        opacity: 1 !important;
        filter: brightness(1) !important;
        pointer-events: auto !important;
    }

    /* Scroll hint indicator */
    .reels-scroll-hint {
        display: flex !important;
    }
}


/* =========================================
  ULTRA-COMPACT MOBILE OVERRIDES (< 576px)
========================================= */
@media (max-width: 576px) {

    /* 1. Mandatory Side Margin Locking to 10px */
    .container {
        width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* 2. Comprehensive Section & Content Compaction */
    .section {
        padding: 50px 0 !important;
        /* Compact vertical scaling */
    }

    .section-title {
        margin-bottom: 25px !important;
    }

    .section-title span {
        font-size: 0.75rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 6px !important;
    }

    .section-title h2 {
        font-size: 1.75rem !important;
        /* Compact sizing */
        margin-bottom: 12px !important;
    }

    .section-title p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
    }

    /* Hero Section Compaction */
    .hero {
        padding: 100px 0 50px 0 !important;
    }

    .hero-content h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }

    .hero-content p {
        font-size: 1rem !important;
        margin-bottom: 20px !important;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px !important;
    }

    .hero-cta .btn-custom {
        width: 100%;
        text-align: center;
    }

    /* 3. Compact ALL Cards Across the Site */

    /* Service Cards */
    .service-card {
        padding: 20px !important;
        border-radius: 16px !important;
    }

    .service-card h3 {
        font-size: 1.25rem !important;
        margin-bottom: 8px !important;
    }

    .service-card p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }

    .service-image-mask {
        height: 140px !important;
        /* Reduced visual container */
        margin-bottom: 18px !important;
    }

    /* Testimonial Cards (Optimized marquee stack) */
    .testimonial-card {
        flex: 0 0 260px !important;
        /* Ultra-slender stack */
        padding: 15px 12px !important;
        /* Shaved internal space to absolute minimum */
        border-radius: 14px !important;
        min-height: auto !important;
        margin: 0 8px !important;
        /* Compact gutter spacing between scrolling cards */
    }

    .testimonial-content {
        font-size: 0.82rem !important;
        /* Highly compact quote font */
        line-height: 1.45 !important;
        margin-bottom: 10px !important;
    }

    .testimonial-stars {
        font-size: 0.8rem !important;
        margin-bottom: 8px !important;
    }

    .testimonial-author-wrapper {
        gap: 8px !important;
        margin-top: 10px !important;
    }

    .testimonial-avatar {
        width: 35px !important;
        height: 35px !important;
        font-size: 0.85rem !important;
        line-height: 35px !important;
    }

    .testimonial-author h4 {
        font-size: 0.9rem !important;
        margin-bottom: 2px !important;
    }

    .testimonial-author p {
        font-size: 0.65rem !important;
    }

    /* Testimonial cards — 10px gap in mobile marquee */
    .testimonial-slider {
        gap: 10px !important;
    }

    .testimonial-card {
        margin: 0 !important;
    }

    /* Reels Cards — horizontal scroll (styles handled in dedicated block above) */
    .reel-play-btn {
        font-size: 2.5rem !important;
    }

    .reel-instruction {
        font-size: 0.8rem !important;
    }

    /* Contact Forms Compaction */
    .contact-form-wrapper {
        padding: 25px 15px !important;
        border-radius: 16px !important;
        margin: 10px 0 !important;
    }

    /* Keep name + phone in one row on mobile */
    .form-row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .form-group {
        margin-bottom: 14px !important;
    }

    .form-control {
        padding: 12px 16px !important;
        /* Compact slim inputs */
        font-size: 0.9rem !important;
        border-radius: 8px !important;
    }

    select.form-control {
        background-position: right 16px center !important;
        padding-right: 40px !important;
    }

    .btn-custom {
        padding: 12px 25px !important;
        font-size: 0.95rem !important;
    }

    /* Footer Refinement */
    footer {
        padding: 50px 0 20px !important;
    }
}

/* =========================================
  MOBILE ≤576px: Tinder Deck — All Styles
========================================= */
@media (max-width: 576px) {

    /* Hide regular grid, show tinder deck */
    .services-grid {
        display: none !important;
    }

    .services-tinder-deck {
        display: block !important;
        margin-top: 30px;
        position: relative;
        z-index: 2;
        /* Above blob-container (z-index:0) */
    }

    /* === Stack Area === */
    .tinder-stack-area {
        position: relative;
        height: 500px;
        max-width: 360px;
        margin: 0 auto;
    }

    /* === Individual Tinder Card === */
    .tinder-s-card {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: #ffffff;
        border-radius: 24px;
        border: 1px solid rgba(155, 116, 124, 0.12);
        padding: 34px 26px 30px;
        box-shadow:
            0 8px 25px rgba(155, 116, 124, 0.14),
            0 2px 6px rgba(0, 0, 0, 0.04);
        cursor: grab;
        user-select: none;
        -webkit-user-select: none;
        touch-action: pan-y;
        transform-origin: bottom center;
        will-change: transform;
        min-height: 420px;
    }

    .tinder-s-card:active {
        cursor: grabbing;
    }

    /* Gradient accent bar — hidden for clean card look */
    .tinder-s-card::before {
        display: none;
    }

    /* Service icon inside tinder card */
    .tinder-s-card .service-icon {
        width: 62px !important;
        height: 62px !important;
        margin-bottom: 14px !important;
        border-radius: 50% !important;
    }

    .tinder-s-card h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
        margin-top: 4px;
        color: var(--text-dark);
        line-height: 1.3;
    }

    .tinder-s-card p {
        font-size: 0.88rem;
        color: var(--text-medium);
        line-height: 1.55;
        margin-bottom: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .tinder-s-card .service-explore {
        font-size: 0.78rem;
        opacity: 0.85;
        letter-spacing: 1px;
    }

    /* Card x/total badge */
    .ts-card-badge {
        position: absolute;
        top: 14px;
        right: 16px;
        font-family: 'Outfit', sans-serif;
        font-size: 0.68rem;
        font-weight: 600;
        color: var(--text-light);
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    /* === EXPLORE / SKIP Swipe Labels === */
    .ts-swipe-label {
        position: absolute;
        top: 18px;
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        font-size: 0.85rem;
        letter-spacing: 2px;
        text-transform: uppercase;
        opacity: 0;
        padding: 3px 10px;
        border-radius: 6px;
        border: 2.5px solid;
        pointer-events: none;
        z-index: 20;
        transition: opacity 0.1s;
    }

    .ts-like {
        right: 14px;
        color: var(--secondary);
        border-color: var(--secondary);
        transform: rotate(10deg);
        background: rgba(94, 112, 104, 0.08);
    }

    .ts-nope {
        left: 14px;
        color: var(--primary);
        border-color: var(--primary);
        transform: rotate(-10deg);
        background: rgba(155, 116, 124, 0.08);
    }

    /* === Swipe hint — minimal text only === */
    .tinder-hint {
        text-align: center;
        font-family: 'Outfit', sans-serif;
        font-size: 0.8rem;
        color: var(--text-light);
        margin-top: 20px;
        letter-spacing: 0.5px;
        opacity: 0.75;
        animation: hintPulse 2.5s ease-in-out infinite;
    }

    @keyframes hintPulse {

        0%,
        100% {
            opacity: 0.5;
            transform: translateY(0);
        }

        50% {
            opacity: 0.9;
            transform: translateY(-2px);
        }
    }

    /* === Front card ambient glow on active === */
    .tinder-s-card:first-of-type {
        box-shadow:
            0 12px 40px rgba(155, 116, 124, 0.18),
            0 4px 12px rgba(0, 0, 0, 0.05);
    }
}

/* =========================================
  HIDE SCROLLBARS ON TOUCH / MOBILE DEVICES
========================================= */
@media (pointer: coarse) {
    * {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    *::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
}