:root {
    /* --primary: #764b8d; */
    /* --primary: #6B1363; */
    /* --primary: #9371aa; */
    /* --primary: #b197c7; */
  --primary: #6a2c80;
    --primary-light: #9c5baf;
    --primary-dark: #3a0053;
    --secondary: #b197c7;
    --secondary-light: #fdf7ff;
    --tertiary: #ffcc33;
    /* Brighter Gold */
    --tertiary-light: #f7ca70;
    --tertiary-dark: #8f6b17;
    --bg: #fdf7ff;
    --white: #ffffff;
    --text-primary: #3a0053;
    --text-secondary: #6a2c80;
    --black: #000;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}

/* ── CUSTOM CURSOR ── */
.cursor-dot,
.cursor-ring {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--tertiary);
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--tertiary);
    transform: translate(-50%, -50%);
    transition: transform 0.18s, width 0.3s, height 0.3s, opacity 0.3s;
    opacity: 0.6;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.5s, padding 0.4s, box-shadow 0.4s;
}

nav.scrolled {
    background: var(--primary);
    padding: 8px 7%;
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.service-card p {
    font-size: 16px !important;
}

.nav-logo img {
    height: 100px;
    width: 150px;
    filter: brightness(0) invert(1);
    /* Default to white logo */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled .nav-logo img {
    height: 110px;
    width: 150px;
}

.nav-logo:hover img {
    transform: scale(1.08);
}

.nav-center {
    display: flex;
    gap: 36px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-right {
    display: flex;
    gap: 0;
    align-items: center;
}

.nav-right a:first-child {
    margin-right: 20px;
}

.nav-center a, .nav-right a {
    font-size: 0.78rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.nav-center a:hover, .nav-right a:hover {
    color: var(--tertiary);
}

.nav-center a.active {
    color: var(--tertiary) !important;
}

.nav-center a i, .nav-right a i {
    margin-right: 8px;
    font-size: 0.9rem;
    color: var(--tertiary);
    transition: transform 0.3s;
}

.nav-center a:hover i, .nav-right a:hover i {
    transform: translateY(-2px);
}

.nav-cta {
    background: transparent !important;
    border: none !important;
    color: var(--tertiary) !important;
    padding: 6px 10px;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.nav-cta span {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--primary-dark);
    color: var(--tertiary);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    pointer-events: none;
}

/* Tooltip Arrow */
.nav-cta span::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--primary-dark) transparent transparent transparent;
}

.nav-cta:hover span {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-cta:hover {
    color: var(--tertiary) !important;
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none !important;
}

.offer-nav-btn {
    background: transparent !important;
    border: none !important;
    color: var(--tertiary) !important;
    padding: 6px 10px;
    border-radius: 4px;
    font-weight: 800 !important;
    animation: offerPulse 2s infinite;
    display: inline-flex;
    align-items: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.offer-nav-btn:hover {
    transform: translateY(-2px);
}

.offer-nav-btn span {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--tertiary);
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    pointer-events: none;
}

/* Tooltip Arrow */
.offer-nav-btn span::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--tertiary) transparent transparent transparent;
}

.offer-nav-btn:hover span {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@keyframes offerPulse {
    0% {
        background: var(--tertiary);
        box-shadow: 0 0 0 0 rgba(255, 204, 51, 0.7);
    }
    70% {
        background: #fff000;
        box-shadow: 0 0 0 12px rgba(255, 204, 51, 0);
    }
    100% {
        background: var(--tertiary);
        box-shadow: 0 0 0 0 rgba(255, 204, 51, 0);
    }
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    height: auto;
    background: linear-gradient(rgba(58, 0, 83, 0.6), rgba(106, 44, 128, 0.3)), url('assets/images/hero_minimalist_purple.png');
    background-size: cover;
    background-position: center 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

/* Animated gold particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--tertiary);
    border-radius: 50%;
    animation: particleDrift linear infinite;
    opacity: 0;
}

.floating-heart {
    position: absolute;
    color: rgba(255, 204, 51, 0.6);
    opacity: 0;
    animation: particleDrift linear infinite;
    filter: drop-shadow(0 0 8px rgba(255, 204, 51, 0.4));
    z-index: 1;
}

@keyframes particleDrift {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-20vh) translateX(var(--drift));
        opacity: 0;
    }
}

/* Ornamental rings */
.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(195, 153, 67, 0.12);
    animation: ringExpand 8s ease-out infinite;
}

.hero-ring:nth-child(1) {
    width: 300px;
    height: 300px;
    animation-delay: 0s;
}

.hero-ring:nth-child(2) {
    width: 600px;
    height: 600px;
    animation-delay: 2s;
}

.hero-ring:nth-child(3) {
    width: 900px;
    height: 900px;
    animation-delay: 4s;
}

@keyframes ringExpand {
    0% {
        transform: scale(0.3);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Decorative cross/ornament */
.hero-ornament {
    position: absolute;
    font-size: 12rem;
    color: rgba(195, 153, 67, 0.04);
    font-family: 'Cinzel', serif;
    user-select: none;
    animation: floatOrn 10s ease-in-out infinite;
}

.hero-ornament:nth-child(4) {
    top: 5%;
    left: 5%;
    font-size: 8rem;
}

.hero-ornament:nth-child(5) {
    bottom: 10%;
    right: 5%;
    animation-delay: 5s;
}

@keyframes floatOrn {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.hero-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeSlideUp 1s ease forwards;
    opacity: 0;
    animation-delay: 0.3s;
    font-weight: bolder;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 28px;
    animation: fadeSlideUp 1s ease forwards;
    opacity: 0;
    animation-delay: 0.6s;
}

.hero h1 em {
    font-style: italic;
    color: #fff000;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(255, 204, 51, 0.6);
}

.hero-sub {
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: rgba(253, 253, 253, 0.959);
    margin-bottom: 60px;
    max-width: 480px;
    animation: fadeSlideUp 1s ease forwards;
    opacity: 0;
    animation-delay: 0.9s;
    font-weight: bold;
}

/* ── QUICK REGISTER HERO BAR ── */
.quick-register-container {
    background: rgba(253, 247, 255, 0.88);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(106, 44, 128, 0.15);
    border-radius: 12px;
    padding: 30px 40px;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto 0;
    box-shadow: 0 15px 40px rgba(58, 0, 83, 0.15);
    animation: fadeSlideUp 1s ease forwards;
    opacity: 0;
    animation-delay: 1.1s;
    z-index: 10;
}

.quick-register-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b1e0f; /* Matrimony red/wine brand color */
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-align: center;
}

.quick-register-form {
    display: grid;
    grid-template-columns: 1.3fr 1.1fr 1fr 1.1fr 1.2fr;
    gap: 15px;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    margin-bottom: 20px;
}

.form-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
}

.form-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #8b1e0f;
    text-transform: capitalize;
}

.form-select,
.form-input {
    background: var(--white);
    border: 1px solid #c9c5cb;
    color: #333;
    padding: 11px 14px;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    outline: none;
    width: 100%;
    transition: all 0.3s;
}

.form-select:focus,
.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(106, 44, 128, 0.1);
}

.gender-radio-group {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.radio-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #8b1e0f;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.radio-label input {
    accent-color: var(--primary);
    margin: 0;
}

.btn-register-free {
    background: linear-gradient(135deg, #a7509d 0%, #76267c 100%);
    color: var(--white) !important;
    border: none;
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(118, 38, 124, 0.2);
    width: 100%;
    text-transform: capitalize;
}

.btn-register-free:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(118, 38, 124, 0.35);
    filter: brightness(1.1);
}

.terms-subtext {
    font-size: 0.65rem;
    color: #333;
    margin-top: 5px;
    line-height: 1.3;
    display: block;
    text-align: center;
}

.terms-subtext a {
    color: #8b1e0f;
    text-decoration: underline;
    font-weight: 600;
}

.quick-register-verse {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #8b1e0f;
    letter-spacing: 0.5px;
    margin-top: 15px;
    text-align: center;
    text-transform: uppercase;
}

/* Responsive Quick Register */
@media (max-width: 1024px) {
    .quick-register-form {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .profile-for-col {
        grid-column: span 2;
    }
    .submit-col {
        grid-column: span 2;
        align-items: center;
    }
    .submit-col label {
        display: none;
    }
    .btn-register-free {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .quick-register-container {
        padding: 24px 20px;
    }
    .hero-sub {
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .quick-register-form {
        grid-template-columns: 1fr;
    }
    .profile-for-col, .submit-col {
        grid-column: span 1;
    }
    .quick-register-container {
        padding: 20px 15px;
    }
    .quick-register-title {
        font-size: 1.15rem;
    }
    .quick-register-verse {
        font-size: 0.8rem;
    }
    .btn-register-free {
        max-width: 100%;
    }
}

@media (max-height: 700px) and (max-width: 768px) {
    .scroll-hint {
        display: none;
    }
}

/* Scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    animation: fadeIn 2s 2s forwards;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--tertiary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.4;
    }
}

.scroll-hint span {
    font-size: 0.6rem;
    letter-spacing: 3px;
    color: var(--tertiary);
}

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

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

@keyframes fadeIn {
    to {
        opacity: 0.5;
    }
}

/* ── SECTION COMMON ── */
.section-label {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 16px;
    display: block;
    font-weight: bolder;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 1.15;
}

.title-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0 48px;
}

.title-divider .line {
    flex: 1;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--black), transparent);
   
}

.title-divider .diamond {
    color: var(--black);
    font-size: 1rem;
}

/* ── STATS MARQUEE ── */
.stats-marquee {
    background: var(--primary);
    overflow: hidden;
    padding: 22px 0;
    border-top: 1px solid rgba(195, 153, 67, 0.15);
    border-bottom: 1px solid rgba(195, 153, 67, 0.15);
}

.marquee-track {
    display: flex;
    gap: 80px;
    align-items: center;
    animation: marqueeScroll 25s linear infinite;
    white-space: nowrap;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

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

.marquee-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    letter-spacing: 2px;
}

.marquee-item strong {
    color: var(--tertiary);
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
}

.marquee-sep {
    color: var(--tertiary);
    opacity: 0.3;
    font-size: 1.2rem;
}

/* ── SERVICES ── */
.services {
    background: var(--primary);
    padding: 120px 7%;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 70px;
}

.services-header .section-label {
    margin-bottom: 10px;
}

.services-header p {
    color: rgba(255, 255, 255, 0.5);
    max-width: 340px;
    font-size: 0.88rem;
    line-height: 1.7;
}

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

.service-card {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    padding: 52px 36px;
    border: 1px solid rgba(195, 153, 67, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.5s, transform 0.5s, box-shadow 0.5s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 40%;
    right: 20%;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    pointer-events: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 26%;
    width: 6px;
    height: 6px;
    background: var(--tertiary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s;
    transform: translate(50%, -50%);
    pointer-events: none;
    z-index: 2;
}

.service-card:hover::after,
.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    transform: scale(1.2);
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 0.83rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
    transition: color 0.3s;
}

.service-card:hover p {
    color: var(--white);
}

.service-card:hover .service-num {
    color: var(--tertiary);
    transform: scale(1.1);
    opacity: 0.6;
}

.service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 300;
    color: var(--tertiary-light);
    position: absolute;
    top: 10px;
    right: 20px;
    transition: color 0.5s, transform 0.5s, opacity 0.5s;
    line-height: 1;
    pointer-events: none;
    opacity: 0.3;
}

.service-icon {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(195, 153, 67, 0.3);
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tertiary);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    transition: background 0.4s, transform 0.4s;
    overflow: hidden;
}

.service-card:hover .service-icon {
    background: var(--tertiary);
    color: var(--primary-dark);
    transform: rotate(45deg);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.service-card:hover .service-icon img {
    transform: rotate(-45deg);
}

.service-icon i {
    transition: transform 0.4s;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 0.83rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

/* Hover bar at bottom */
.service-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--tertiary);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-bar {
    width: 100%;
}

/* ── WELCOME / ABOUT ── */
.welcome {
    padding: 70px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.welcome-media {
    position: relative;
    height: 580px;
}

.w-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 340px;
    height: 460px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 24px 24px 80px rgba(106, 44, 128, 0.25);
    transition: transform 0.6s ease;
}

.welcome-media:hover .w-img-main {
    transform: translate(-6px, -6px);
}

.w-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 260px;
    height: 340px;
    object-fit: cover;
    border-radius: 2px;
    border: 6px solid var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: imgFloat 5s ease-in-out infinite;
}

@keyframes imgFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.w-badge {
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: var(--primary-dark);
    border: 2px solid var(--tertiary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--tertiary);
    z-index: 10;
    animation: spin 20s linear infinite;
}

.w-badge-inner {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    animation: spin-reverse 20s linear infinite;
}

.w-badge-label {
    font-size: .8rem;
    letter-spacing: 2px;
    animation: spin-reverse 20s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes spin-reverse {
    to {
        transform: rotate(-360deg);
    }
}

.welcome-text .section-title {
    color: var(--primary);
}

.welcome-text .section-title em {
    color: var(--tertiary);
}

.welcome-text p {
    color: var(--text-secondary);
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.welcome-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 36px 0;
}

.highlight-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    background: var(--secondary-light);
    border-radius: 3px;
    border-left: 2px solid var(--tertiary);
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(106, 44, 128, 0.08);
}

.highlight-item i {
    color: var(--tertiary);
    font-size: 1.1rem;
    margin-top: 2px;
}

.highlight-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--primary);
}

.highlight-item p {
    font-size: 18px!important;
    color: var(--text-secondary);
    margin: 0;
}

.welcome-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.welcome-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(106, 44, 128, 0.35);
}

.welcome-cta i {
    transition: transform 0.3s;
    font-size: 0.8rem;
}

.welcome-cta:hover i {
    transform: translateX(5px);
}

/* ── COMMUNITIES ── */
.communities {
    background: var(--secondary-light);
    padding: 110px 7%;
    text-align: center;
}

.communities .section-title {
    color: var(--primary);
}

.tags-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 56px;
}

.community-tag {
    padding: 14px 36px;
    border: 1px solid var(--primary);
    border-radius: 40px;
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: bolder;
    color: var(--primary);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.4s;
}

.community-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 40px;
}

.community-tag:hover::before {
    transform: translateX(0);
}

.community-tag:hover {
    color: var(--tertiary);
}

.community-tag span {
    position: relative;
    z-index: 1;
}

/* ── WHY CHOOSE ── */
.why {
    padding: 10px 7%;
    background: var(--bg);
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.why-visual {
    background: linear-gradient(160deg, var(--primary-dark), var(--primary));
    border-radius: 4px;
    padding: 70px 50px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.why-visual::before {
    content: '✦';
    position: absolute;
    font-size: 18rem;
    color: rgba(255, 255, 255, 0.02);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.why-big-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem;
    font-weight: 300;
    color: var(--tertiary);
    line-height: 1;
    display: block;
    animation: countPulse 3s ease-in-out infinite;
}

@keyframes countPulse {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(195, 153, 67, 0.3);
    }

    50% {
        text-shadow: 0 0 60px rgba(195, 153, 67, 0.7);
    }
}

.why-visual p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-top: 10px;
}

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

.why-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(195, 153, 67, 0.3);
    background: rgba(195, 153, 67, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tertiary);
    font-size: 0.65rem;
    transition: background 0.3s, transform 0.3s;
}

.why-dot:hover {
    background: var(--tertiary);
    color: var(--primary-dark);
    transform: scale(1.2);
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 48px;
}

.why-item {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(106, 44, 128, 0.08);
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.why-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.why-item-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    min-width: 36px;
}

.why-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.why-item p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-secondary);
}

/* ── JOURNEY / PROCESS ── */
.journey {
    background: var(--primary);
    padding: 130px 7%;
    overflow: hidden;
}

.journey-header {
    text-align: center;
    margin-bottom: 100px;
}

.journey-header .section-title {
    color: var(--white);
}

.journey-steps {
    position: relative;
}

.journey-line {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--tertiary), transparent);
    z-index: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 36px;
    position: relative;
    z-index: 1;
}

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

.step-node {
    width: 96px;
    height: 96px;
    margin: 0 auto 28px;
    background: var(--primary-dark);
    border: 2px solid rgba(195, 153, 67, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
}

.step-node::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: rgba(195, 153, 67, 0.05);
    transition: background 0.4s;
}

.step-item:hover .step-node {
    border-color: var(--tertiary);
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(195, 153, 67, 0.3);
}

.step-item:hover .step-node::before {
    background: rgba(195, 153, 67, 0.15);
}

.step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--tertiary);
    position: relative;
    z-index: 1;
}

.step-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
}

.step-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

.step-connector {
    width: 60px;
    height: 1px;
    background: var(--tertiary);
    margin: 0 auto;
    opacity: 0.3;
    margin-bottom: 24px;
}

/* ── TESTIMONIALS ── */
.testimonials {
    padding: 70px 7%;
    background: var(--bg);
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}

.testimonials-header .section-title {
    color: var(--primary);
}

.testimonials-nav {
    display: flex;
    gap: 12px;
}

.t-nav-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--primary);
    background: transparent;
    cursor: pointer;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
}

.t-nav-btn:hover {
    background: var(--primary);
    color: var(--tertiary);
}

.testimonials-track {
    overflow: hidden;
}

.testimonials-inner {
    display: flex;
    gap: 28px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.t-card {
    min-width: calc(33.333% - 19px);
    background: var(--white);
    padding: 44px 40px;
    border-radius: 3px;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.t-card:hover {
    border-color: var(--tertiary);
    box-shadow: 0 20px 60px rgba(106, 44, 128, 0.08);
    transform: translateY(-4px);
}

.t-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--tertiary);
    line-height: 0.5;
    margin-bottom: 20px;
    display: block;
}

.t-card p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-style: italic;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.t-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
}

.t-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
}

.t-meta {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.t-stars {
    color: var(--tertiary);
    font-size: 0.65rem;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

/* ── SUCCESS GALLERY ── */
.gallery {
    padding: 80px 7%;
    background: var(--secondary-light);
}

.gallery-header {
    text-align: center;
    margin-bottom: 64px;
}

.gallery-header .section-title {
    color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 8px;
}

.gallery-item {
    background: var(--secondary);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:first-child {
    grid-row: 1/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.5s;
    filter: brightness(0.9) saturate(0.8);
}

.gallery-item:hover img {
    transform: scale(1.07);
    filter: brightness(0.8) saturate(1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(58, 0, 83, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--tertiary);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
}

/* Placeholder colors for missing images */
.gallery-item:nth-child(1) {
    background: linear-gradient(135deg, #6a2c80, #b197c7);
}

.gallery-item:nth-child(2) {
    background: linear-gradient(135deg, #3a0053, #6a2c80);
}

.gallery-item:nth-child(3) {
    background: linear-gradient(135deg, #5c2c6d, #9c5baf);
}

.gallery-item:nth-child(4) {
    background: linear-gradient(135deg, #4a1c5d, #806996);
}

.gallery-item:nth-child(5) {
    background: linear-gradient(135deg, #2a0033, #5c2c6d);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    color: rgba(255, 255, 255, 0.3);
}

.gallery-placeholder i {
    font-size: 2.5rem;
    color: rgba(195, 153, 67, 0.3);
}

.gallery-placeholder span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 2px;
}

/* ── APP DOWNLOAD BUTTONS ── */
.app-download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    border: 2px solid transparent;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.app-btn i {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-sub {
    font-size: 0.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
}

.btn-main {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-family: 'Cinzel', serif;
}

.app-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(106, 44, 128, 0.35);
}

/* ── OTHER SERVICES SECTION ── */
.other-services {
    padding: 100px 7%;
    background-image: linear-gradient(rgba(253, 247, 255, 0.94), rgba(253, 247, 255, 0.94)), url('assets/images/premium_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.other-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.other-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.partner-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(106, 44, 128, 0.08);
    border: 1px solid rgba(106, 44, 128, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 65px rgba(106, 44, 128, 0.15);
    border-color: var(--primary-light);
}

.partner-logo-container {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    width: 100%;
}

.partner-logo {
    max-height: 100%;
    max-width: 240px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
}

.partner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
}

.partner-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 30px;
    min-height: 80px;
}

.partner-desc.aachi-desc {
    color: #d63384; /* Beautiful brand pink-red */
    font-weight: 500;
}

.partner-desc.diadem-desc {
    color: #6a2c80; /* Elegant brand purple */
}

.partner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(106, 44, 128, 0.2);
}

.partner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 44, 128, 0.4);
    filter: brightness(1.15);
    color: var(--white) !important;
}

/* Responsive other services */
@media (max-width: 768px) {
    .other-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .partner-card {
        padding: 30px 20px;
    }
}

/* ── FOOTER ── */

.footer {
    background: var(--primary);
    color: var(--white);
}

.footer-top {
    padding: 40px 7% 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-logo img {
    height: 150px;
    width: auto;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.83rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 36px;
}

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

.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(195, 153, 67, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.social-link:hover {
    border-color: var(--tertiary);
    color: var(--tertiary);
    background: rgba(195, 153, 67, 0.1);
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--tertiary);
    margin-bottom: 28px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s, padding-left 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a::before {
    content: '—';
    font-size: 0.6rem;
    color: var(--tertiary);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateX(-8px);
}

.footer-col ul li a:hover {
    color: var(--tertiary);
    padding-left: 16px;
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-row {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-row i {
    color: var(--tertiary);
    font-size: 0.85rem;
    margin-top: 3px;
    min-width: 16px;
}

.contact-row span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.footer-bottom {
    padding: 12px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
    display: flex;
    gap: 36px;
}

.footer-legal a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--tertiary);
}

/* ── GET APP SECTION ── */
.get-app {
    padding: 100px 7%;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.get-app-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.get-app-content {
    display: flex;
    flex-direction: column;
}

.get-app-content .section-title {
    color: var(--primary);
    margin-bottom: 0px;
}

.get-app-content .section-title em {
    color: var(--primary-light);
}

.get-app-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 540px;
}

.app-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 44px;
}

.app-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-highlight-item i {
    color: var(--primary-light);
    font-size: 1.1rem;
}

.app-highlight-item span {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.app-download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    border: 1px solid transparent;
}

.app-btn i {
    font-size: 1.8rem;
    color: var(--tertiary);
    transition: transform 0.3s;
}

.app-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(58, 0, 83, 0.2);
}

.app-btn:hover i {
    transform: scale(1.1);
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgb(255, 255, 255);
    margin-bottom: 2px;
}

.btn-main {
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    color: var(--white);
}

/* Right Visual */
.get-app-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.app-mockup-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 580px;
}

.glow-bg {
    position: absolute;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(156, 91, 175, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
}

/* ── PHONE MOCKUPS LAYOUT ── */
.mockup-container {
    position: relative;
    width: 100%;
    height: 540px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: absolute;
    width: 240px;
    height: 480px;
    background: #0d0d0d;
    border: 8px solid #1a1a1a;
    border-radius: 38px;
    box-shadow: 0 15px 35px rgba(58, 0, 83, 0.25), inset 0 0 8px rgba(0,0,0,0.8);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease, box-shadow 0.6s ease;
}

/* Common Screen Styling */
.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}

/* Glass reflections */
.phone-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(115deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.03) 40%, transparent 60%);
    transform: rotate(-10deg);
    pointer-events: none;
    z-index: 5;
}

/* Dynamic Island Notch */
.dynamic-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 16px;
    background: #000;
    border-radius: 10px;
    z-index: 10;
}

/* UI Overlay elements inside the phone screen */
.app-screen-ui {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(58, 0, 83, 0.85) 0%, rgba(58, 0, 83, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    z-index: 4;
}

.app-profile-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.app-profile-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--tertiary);
}

.app-profile-details {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.8);
}

.app-badge-verified {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 204, 51, 0.2);
    border: 1px solid var(--tertiary);
    color: var(--tertiary);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
}

/* Center UI */
.center-ui {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(58, 0, 83, 0.4) 60%, rgba(58, 0, 83, 0.85) 100%);
    justify-content: space-between;
    padding: 30px 14px 14px;
}

.app-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.app-header-bar i {
    font-size: 0.85rem;
    color: var(--tertiary);
}

.app-logo-text {
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
}

.app-match-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.match-score {
    align-self: flex-start;
    background: var(--tertiary);
    color: var(--primary-dark);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.match-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.match-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
}

.match-sub {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}

/* Right UI (Chat / Message interface) */
.right-ui {
    background: linear-gradient(to top, rgba(58, 0, 83, 0.95) 0%, rgba(58, 0, 83, 0.6) 80%, rgba(58, 0, 83, 0.8) 100%);
    justify-content: flex-end;
    padding: 16px;
    gap: 10px;
}

.app-chat-bubble {
    font-size: 0.76rem;
    padding: 10px 14px;
    border-radius: 14px;
    max-width: 85%;
    line-height: 1.45;
    text-align: left;
}

.app-chat-bubble.sent {
    background: var(--primary-light);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.app-chat-bubble.received {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.app-chat-input-placeholder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    margin-top: 6px;
}

.app-chat-input-placeholder i {
    color: var(--tertiary);
}

/* Absolute Positioning of the Three Phones */
.phone-left {
    transform: translateX(-85px) translateY(24px) rotate(-10deg) scale(0.9);
    z-index: 1;
    opacity: 0.85;
}

.phone-center {
    transform: scale(1);
    z-index: 2;
    box-shadow: 0 25px 55px rgba(58, 0, 83, 0.45), inset 0 0 8px rgba(0,0,0,0.8);
}

.phone-right {
    transform: translateX(85px) translateY(24px) rotate(10deg) scale(0.9);
    z-index: 1;
    opacity: 0.85;
}

/* Hover Interactive Mechanics */
.get-app-visual:hover .phone-center {
    transform: translateY(-16px) scale(1.03);
    box-shadow: 0 30px 65px rgba(58, 0, 83, 0.5), inset 0 0 8px rgba(0,0,0,0.8);
    z-index: 3;
}

.get-app-visual:hover .phone-left {
    transform: translateX(-145px) translateY(12px) rotate(-15deg) scale(0.92);
    opacity: 0.95;
    z-index: 2;
}

.get-app-visual:hover .phone-right {
    transform: translateX(145px) translateY(12px) rotate(15deg) scale(0.92);
    opacity: 0.95;
    z-index: 2;
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s, transform 0.8s;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s, transform 0.8s;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ── RESPONSIVE ── */
.nav-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--tertiary);
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 4px 8px;
}

.nav-toggle:hover {
    color: var(--white);
    transform: scale(1.08);
}

/* ── NAV DRAWER ── */
.nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: var(--primary-dark);
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.5);
    z-index: 1010;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 25px 20px;
    border-right: 1px solid rgba(255, 204, 51, 0.15);
    overflow-y: auto;
}

.nav-drawer.open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.drawer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.drawer-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--tertiary);
    cursor: pointer;
    transition: transform 0.3s;
}

.drawer-close:hover {
    transform: scale(1.1);
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.drawer-links a {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e5d5b5;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drawer-links a i {
    font-size: 1.1rem;
    color: var(--tertiary);
    width: 24px;
    text-align: center;
}

.drawer-links a:hover {
    color: var(--tertiary);
    background: rgba(255, 255, 255, 0.05);
    padding-left: 10px;
}

.drawer-links a.active {
    color: var(--tertiary) !important;
    font-weight: 700;
}

.drawer-divider {
    height: 1px;
    background: rgba(255, 204, 51, 0.15);
    margin: 20px 0;
}

.drawer-cta {
    background: var(--tertiary) !important;
    color: var(--primary-dark) !important;
    justify-content: center !important;
    border-radius: 4px !important;
    font-weight: 800 !important;
    border: none !important;
    letter-spacing: 3px !important;
    margin-top: 20px !important;
    padding: 15px 0 !important;
}

.drawer-cta:hover {
    filter: brightness(1.1);
    padding-left: 0 !important;
    background: var(--tertiary) !important;
}

.drawer-offer {
    border: 1px solid var(--tertiary) !important;
    color: var(--tertiary) !important;
    justify-content: center !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    margin-top: 10px !important;
    padding: 12px 0 !important;
}

.drawer-offer:hover {
    background: rgba(255, 204, 51, 0.1) !important;
    padding-left: 0 !important;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1009;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1024px) {
    nav {
        padding: 10px 5% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .nav-center,
    .nav-right {
        display: none !important;
    }
    
    .nav-toggle {
        display: block !important;
    }
    
    .nav-logo img {
        height: 70px;
        width: auto;
    }
    
    nav.scrolled .nav-logo img {
        height: 75px;
        width: auto;
    }
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .welcome {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
        text-align: center;
    }

    .welcome-media {
        height: 420px;
        max-width: 500px;
        margin: 0 auto 30px;
        width: 100%;
    }

    .w-img-main {
        width: 70% !important;
        height: 320px !important;
    }

    .w-img-accent {
        width: 55% !important;
        height: 240px !important;
        border-width: 6px;
    }

    .welcome-highlights {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px;
        text-align: left;
    }

    .welcome .title-divider {
        justify-content: center;
    }

    .why-inner {
        grid-template-columns: 1fr !important;
        gap: 50px;
    }

    .why-visual {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .get-app-inner {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
        text-align: center;
    }

    .get-app-content {
        align-items: center;
    }

    .get-app-content .title-divider {
        justify-content: center;
    }

    .app-download-buttons {
        justify-content: center;
    }

    .mockup-container {
        transform: scale(0.95);
        height: 440px;
    }
}

@media (max-width: 768px) {
    .welcome-highlights {
        grid-template-columns: 1fr !important;
    }

    .why-big-num {
        font-size: 4rem !important;
    }

    .why-visual {
        padding: 40px 20px !important;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

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

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item:first-child {
        grid-row: auto;
    }

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

    .t-card {
        min-width: calc(100% - 0px);
    }

    .get-app {
        padding: 60px 5%;
    }

    .mockup-container {
        transform: scale(0.85);
        height: 390px;
        margin-top: 30px;
    }
}

@media (max-width: 520px) {
    .welcome-media {
        height: 320px !important;
    }
    
    .w-img-main {
        width: 70% !important;
        height: 240px !important;
    }

    .w-img-accent {
        width: 55% !important;
        height: 180px !important;
    }

    .w-badge {
        width: 90px !important;
        height: 90px !important;
        left: 20% !important;
    }
    
    .w-badge-inner {
        font-size: 1.5rem !important;
    }
    
    .w-badge-label {
        font-size: 0.6rem !important;
    }

    nav {
        padding: 18px 5%;
    }

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

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .mockup-container {
        transform: scale(0.72);
        height: 330px;
    }
}

.section-label1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--tertiary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.diamond1 {
    font-size: 2rem;
    color: var(--tertiary);
    margin: 0 10px;
}

.line1 {
    width: 80px;
    height: 1px;
    background: rgba(212, 175, 55, 0.6);
}

/* ── Quick Search Section ── */
.quick-search-section {
    background-color: #f8dfe2; /* Elegant pinkish background from screenshot */
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid rgba(106, 44, 128, 0.1);
    width: 100%;
    position: relative;
    z-index: 10;
}

.quick-search-title {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    color: #8b1e0f; /* Deep crimson/purple tone from screenshot */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.quick-search-form {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.search-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.search-field label {
    font-size: 11px;
    font-weight: 700;
    color: #8b1e0f;
    text-transform: capitalize;
    font-family: 'DM Sans', sans-serif;
}

.search-select {
    background-color: var(--white);
    border: 1px solid rgba(106, 44, 128, 0.2);
    color: var(--text-primary);
    padding: 10px 16px;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    outline: none;
    min-width: 180px;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.search-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(106, 44, 128, 0.1);
}

.btn-search-submit {
    background: linear-gradient(135deg, #d36aa3 0%, #aa509e 100%);
    color: var(--white);
    font-weight: 700;
    border: none;
    padding: 11px 36px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(170, 80, 158, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 43px;
    font-family: 'DM Sans', sans-serif;
}

.btn-search-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(170, 80, 158, 0.35);
    filter: brightness(1.05);
}

.btn-search-submit:active {
    transform: scale(0.98);
}

@media (max-width: 992px) {
    .quick-search-form {
        gap: 15px;
    }
    .search-select {
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .quick-search-form {
        flex-direction: column;
        align-items: stretch;
    }
    .search-field {
        width: 100%;
    }
    .search-select {
        width: 100%;
        min-width: unset;
    }
    .btn-search-submit {
        width: 100%;
        margin-top: 10px;
    }
}

/* -- VIDEO TESTIMONIAL -- */
.video-testimonial {
    padding: 100px 5%;
    background-color: var(--primary);
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.video-card {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 223, 146, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 223, 146, 0.3);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    cursor: pointer;
}

.video-info {
    padding: 24px;
    text-align: left;
}

.video-info h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.video-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.video-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.video-wrapper:hover .video-cover {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--primary-dark);
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-btn::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.3); opacity: 0; }
}

.video-wrapper:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ffffff;
    color: var(--gold-dark);
}

.video-quote {
    font-family: var(--font-display);
    font-size: 24px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .video-quote {
        font-size: 18px;
    }
    .video-testimonial {
        padding: 60px 5%;
    }
    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
}

/* ── VIDEO MODAL ── */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 5, 15, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 204, 51, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-modal-close:hover {
    background: var(--tertiary);
    color: var(--primary-dark);
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}
