/* ===================================================
   VARIANT 1 — Modern & Dynamic
   Vibrant gradients, glassmorphism, floating cards
   =================================================== */

/* ---------- Header CTA responsive ---------- */
.cta-short {
    display: none;
}

@media (max-width: 540px) {
    .cta-full {
        display: none;
    }

    .cta-short {
        display: inline;
    }
}

/* ---------- HERO ---------- */
.v1-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4rem, 7vw, 6rem) 0 clamp(3rem, 5vw, 4rem);
    min-height: 70vh;
}

.v1-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.v1-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.55;
    animation: v1Float 12s ease-in-out infinite alternate;
}

.v1-orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(255, 90, 0, 0.2);
    top: -15%;
    left: -10%;
}

.v1-orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(138, 11, 60, 0.18);
    bottom: -20%;
    right: -8%;
    animation-duration: 16s;
}

.v1-orb-3 {
    width: 350px;
    height: 350px;
    background: rgba(255, 179, 0, 0.2);
    top: 30%;
    left: 50%;
    animation-duration: 14s;
    animation-direction: alternate-reverse;
}

@keyframes v1Float {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(40px) scale(1.08);
    }
}

/* Premium Spiritual Additions */
.spiritual-hero {
    background: radial-gradient(circle at 50% 50%, #fffbf2 0%, #ffecd2 100%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.spiritual-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/mandala-bg.svg');
    background-size: 800px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: -1;
    mask-image: radial-gradient(circle, black 30%, transparent 80%);
}

.v1-hero-content h1 .text-gradient {
    background: linear-gradient(135deg, #ff5722 0%, #ff9800 50%, #c5a059 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-aura {
    position: absolute;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.15) 0%, transparent 70%);
    top: -20%;
    left: -20%;
    z-index: -1;
    filter: blur(40px);
}

.premium-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 152, 0, 0.1);
    border-color: rgba(255, 152, 0, 0.3);
}

.v1-hero-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.floating-petal {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ff5722;
    border-radius: 50% 0 50% 50%;
    opacity: 0.4;
    z-index: 5;
    animation: flowDown 10s linear infinite;
}

@keyframes flowDown {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
    }

    80% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 152, 0, 0.3), transparent);
    margin: 4rem 0;
}

.gold-border {
    border: 2px solid;
    border-image: linear-gradient(135deg, #c5a059, #ffdf91, #c5a059) 1;
}

.floating-bless {
    animation: floatBless 6s ease-in-out infinite;
}

@keyframes floatBless {

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

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

.v1-hero-inner {
    position: relative;
    z-index: 1;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: clamp(2rem, 4vw, 4rem);
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
}

.v1-hero-content {
    flex: 1.1;
    min-width: 0;
    display: grid;
    gap: 1.35rem;
}

.hero-eyebrow {
    background: rgba(74, 0, 25, 0.08);
    border-color: rgba(74, 0, 25, 0.14);
    color: var(--secondary-deep);
    box-shadow: 0 10px 24px rgba(74, 0, 25, 0.08);
}

.hero-eyebrow::before {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    box-shadow: 0 0 14px rgba(138, 11, 60, 0.28);
}

.v1-hero-visual {
    flex: 1;
    min-width: 0;
    position: relative;
    display: grid;
    gap: 1rem;
}

.v1-hero-content h1 {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    line-height: 1.1;
    max-width: 16ch;
    margin-bottom: 0.2rem;
}

.v1-hero-secondary {
    font-family: var(--heading-font);
    font-size: clamp(1.2rem, 2.8vw, 1.8rem);
    line-height: 1.15;
    color: var(--secondary-color);
    margin-top: -0.15rem;
}

.v1-hero-desc {
    font-size: 1.08rem;
    max-width: 56ch;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0.45rem;
}

.v1-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 0.75rem;
}

/* Glassmorphism button */
.btn-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 28px;
    border: 1px solid rgba(138, 11, 60, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(138, 11, 60, 0.08);
    transform: translateY(-2px);
}

.btn-lg {
    min-height: 56px;
    padding: 0 32px;
    font-size: 1.02rem;
}

/* Hero floating stat cards */
.v1-hero-card-stack {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    align-self: start;
}

.v1-stat-card {
    padding: 20px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 16px 40px rgba(52, 18, 28, 0.1);
    animation: v1CardFloat 5s ease-in-out infinite;
}

.v1-stat-card strong {
    display: block;
    font-size: 1.8rem;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 6px;
}

.v1-stat-card span {
    color: var(--text-light);
    font-size: 0.88rem;
    display: block;
}

.v1-stat-2 {
    animation-delay: 0.3s;
}

.v1-stat-3 {
    grid-column: 1 / -1;
}

.v1-stats-section {
    padding: 0 0 1.5rem;
}

.v1-stats-grid {
    max-width: 980px;
    margin: 0 auto;
}

@keyframes v1CardFloat {

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

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

.v1-hero-img-wrap {
    grid-column: 1 / -1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.v1-hero-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ---------- TRUST STRIP ---------- */
.v1-trust-strip {
    padding: 12px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 245, 235, 0.92));
    border-top: 1px solid rgba(138, 11, 60, 0.06);
    border-bottom: 1px solid rgba(138, 11, 60, 0.06);
}

.v1-trust-items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
    padding: 18px 0;
}

.v1-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 88px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(138, 11, 60, 0.08);
    box-shadow: 0 16px 35px rgba(52, 18, 28, 0.06);
    font-weight: 600;
    font-size: 0.94rem;
    color: var(--text-dark);
}

.v1-trust-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 154, 31, 0.15), rgba(138, 11, 60, 0.1));
    font-size: 1.2rem;
}

/* ---------- SERVICES GRID ---------- */
.v1-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.v1-service-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
}

.v1-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.v1-service-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.v1-service-card:hover .v1-service-img img {
    transform: scale(1.06);
}

.v1-service-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(138, 11, 60, 0.85);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.v1-service-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 200px;
}

.v1-service-body h3 {
    font-size: 1.3rem;
}

.v1-service-body p {
    font-size: 0.94rem;
    line-height: 1.6;
}

.v1-service-link {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(138, 11, 60, 0.1);
    color: var(--primary-strong);
    font-weight: 700;
    font-size: 0.94rem;
}

.v1-service-link:hover {
    color: var(--secondary-color);
}

/* ---------- WHY US ---------- */
.v1-why-section {
    background: linear-gradient(180deg, rgba(255, 245, 235, 0.7), rgba(255, 255, 255, 0.95));
}

.v1-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.v1-why-card {
    padding: 28px 22px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.v1-why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.v1-why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 154, 31, 0.18), rgba(138, 11, 60, 0.12));
    font-size: 1.6rem;
}

.v1-why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.v1-why-card p {
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ---------- CTA BANNER ---------- */
.v1-cta-banner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: center;
    padding: 36px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-deep));
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.v1-cta-banner-light {
    grid-template-columns: 1fr;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(111, 16, 45, 0.1);
    box-shadow: var(--shadow-sm);
    color: var(--text-dark);
}

.v1-cta-content-scroll {
    max-width: 100%;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 12px;
}

.v1-heading-dark {
    color: var(--secondary-color) !important;
}

.v1-copy-dark {
    color: #5b4b52 !important;
}

.v1-copy-spaced {
    margin-bottom: 20px;
}

.v1-content-heading {
    margin-top: 20px;
    margin-bottom: 10px;
}

.v1-cta-banner h2 {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 12px;
}

.v1-cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.v1-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.v1-cta-stats {
    display: grid;
    gap: 14px;
}

.v1-cta-stat {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.v1-cta-stat strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 1rem;
}

.v1-cta-stat span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
}

/* ---------- LOCATIONS ---------- */
.v1-locations-panel {
    padding: 36px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #721332, #4f0c1f);
    box-shadow: var(--shadow-lg);
}

.v1-section-header-tight {
    margin-bottom: 0;
}

.v1-eyebrow-light {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.v1-eyebrow-light::before {
    background: linear-gradient(135deg, #fff1cf, var(--accent-color));
    box-shadow: 0 0 16px rgba(255, 225, 161, 0.35);
}

.v1-title-light,
.v1-subtitle-light {
    color: #fff !important;
}

.v1-subtitle-light {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-copy {
    margin-top: 14px;
}

.v1-locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.v1-location-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.v1-location-chip:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.v1-locations-grid-light .v1-location-chip {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(138, 11, 60, 0.12);
    color: var(--secondary-color);
    box-shadow: 0 14px 32px rgba(52, 18, 28, 0.07);
}

.v1-locations-grid-light .v1-location-chip:hover {
    background: rgba(255, 245, 235, 0.98);
    box-shadow: 0 20px 36px rgba(52, 18, 28, 0.11);
}

.v1-location-all {
    background: rgba(255, 179, 0, 0.2);
    border-color: rgba(255, 179, 0, 0.3);
}

/* ========== RESPONSIVE — V1 ========== */
@media (max-width: 768px) {
    .v1-hero-inner {
        flex-direction: column !important;
        text-align: center;
        gap: 24px;
    }

    .v1-hero-content h1 {
        max-width: 16ch;
        margin-inline: auto;
    }

    .v1-hero-visual {
        width: 100%;
        gap: 14px;
    }

    .v1-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .v1-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v1-cta-banner {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .v1-hero {
        padding: 2.4rem 0 0.5rem;
        min-height: auto;
    }

    .v1-hero-content h1 {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
    }

    .v1-hero-desc {
        font-size: 0.98rem;
        margin: 0 auto;
        line-height: 1.6;
    }

    .v1-hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .v1-hero-actions .btn,
    .v1-hero-actions .btn-glass {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .v1-services-grid,
    .v1-why-grid,
    .v1-locations-grid {
        grid-template-columns: 1fr;
    }

    .v1-trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .v1-trust-item {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        min-height: 120px;
        padding: 14px 12px;
        gap: 8px;
    }

    .v1-trust-item span {
        font-size: 0.84rem;
        line-height: 1.35;
    }

    .v1-trust-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .v1-cta-banner {
        padding: 20px 16px;
    }

    .v1-cta-banner h2 {
        font-size: 1.4rem;
    }

    .v1-locations-panel {
        padding: 20px 16px;
    }

    .v1-stat-card strong {
        font-size: 1.4rem;
    }

    .v1-stat-3 {
        grid-column: auto;
    }

    .v1-hero-card-stack {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .v1-stats-section {
        padding: 0.5rem 0 1rem;
    }

    .v1-cta-content-scroll {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .v1-orb {
        display: none;
    }

    .btn-lg {
        min-height: 50px;
        padding: 0 24px;
        font-size: 0.96rem;
    }
}

@media (max-width: 540px) {
    .v1-hero {
        padding-top: 2.2rem;
        padding-bottom: 0.9rem;
    }

    .v1-hero-inner {
        gap: 20px;
    }

    .v1-hero-content {
        gap: 0.95rem;
    }

    .v1-hero-content .eyebrow {
        margin-inline: auto;
        max-width: fit-content;
    }

    .v1-hero-desc {
        margin-top: 0.25rem;
    }

    .v1-hero-actions {
        gap: 12px;
        margin-top: 0.35rem;
    }

    .v1-cta-actions {
        flex-direction: column;
    }

    .v1-cta-actions .btn {
        width: 100%;
    }

    .v1-service-body {
        padding: 16px;
        min-height: 0;
        gap: 12px;
    }

    .v1-why-card {
        padding: 18px 16px;
    }

    .v1-trust-items {
        grid-template-columns: 1fr;
    }

    .v1-trust-item {
        min-height: 0;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 12px 14px;
    }

    .v1-hero-img-wrap {
        border-radius: 20px;
    }

    .v1-stat-card {
        padding: 14px;
        text-align: left;
    }

    .v1-stats-section {
        padding-top: 0.75rem;
    }

    .v1-locations-grid {
        gap: 10px;
        margin-top: 16px;
    }

    .v1-cta-banner,
    .v1-locations-panel {
        margin-top: 0.35rem;
    }
}
