/* ============================================================
   DR. LAUREN COUNSELING – COMPLETE STYLESHEET
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
    --charcoal: #2C2C2C;
    --charcoal-deep: #232323;
    --charcoal-light: #3A3A3A;
    --gold: #D4AF37;
    --gold-hover: #E8C94A;
    --gold-muted: rgba(212, 175, 55, 0.12);
    --white: #FFFFFF;
    --off-white: #FAF8F5;
    --cream: #F5F0E8;
    --light-gray: #f7f5f2;
    --text-body: #4A4A4A;
    --text-muted: rgba(255, 255, 255, 0.7);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-fast: all 0.25s ease;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 30px 80px rgba(0, 0, 0, 0.15);
    --radius: 20px;
    --radius-lg: 32px;
}

/* ---------- Reset & Base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-body);
    line-height: 1.75;
    overflow-x: hidden;
    background-color: var(--off-white);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.serif {
    font-family: 'Lora', serif;
    color: var(--charcoal);
}

p {
    font-family: 'Nunito', sans-serif;
    line-height: 1.8;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.gold-text {
    color: var(--gold);
}

.w-full {
    width: 100%;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 110px;
    z-index: 1000;
    background-color: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        background-color 0.3s ease;
}

.navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1700px;
    /* Widened to push logo far left and links far right */
    width: 100%;
    padding-left: 0.5rem;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0;
    /* No gap — name is pulled tight against logo */
    text-decoration: none;
}

.logo-img {
    width: 140px;
    max-height: 95px;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
    background: transparent;
    mix-blend-mode: screen;
    filter: brightness(0.8) contrast(1.6);
    /* Fade out the image boundary to remove the "square" effect */
    mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    margin-left: 6px;
    /* Small gap between logo image and text */
}

.logo-text {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    /* Increased from 1.1rem */
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    line-height: 1.1;
}

.logo-tagline {
    font-family: 'Nunito', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
    background: rgba(212, 175, 55, 0.25);
    /* Transparent yellowish border/bubble */
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 0.15rem 0.65rem;
    border-radius: 50px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 0.2rem;
    align-self: flex-start;
}

.logo-verse {
    font-family: 'Nunito', sans-serif;
    font-size: 0.7rem;
    /* Increased from 0.55rem */
    color: var(--white);
    opacity: 0.8;
    font-style: italic;
    line-height: 1.3;
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    align-items: center;
    margin-left: auto;
}

.nav-links a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.35s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--gold) !important;
    color: var(--charcoal) !important;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 700 !important;
    letter-spacing: 0.03em !important;
    transition: var(--transition) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background-color: var(--gold-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
    font-size: 1.5rem;
}

/* ---------- Mobile Drawer ---------- */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    visibility: hidden;
}

.mobile-drawer.active {
    pointer-events: all;
    visibility: visible;
}

.mobile-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.mobile-drawer.active .mobile-drawer-overlay {
    opacity: 1;
}

.mobile-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85%;
    height: 100%;
    background: var(--charcoal-deep);
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
}

.mobile-drawer.active .mobile-drawer-content {
    transform: translateX(0);
}

.mobile-drawer-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-drawer-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.mobile-drawer-link {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 1rem 1rem;
    border-radius: 12px;
    transition: var(--transition);
    letter-spacing: 0.04em;
}

.mobile-drawer-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    transform: translateX(4px);
}

.mobile-drawer-cta {
    margin-top: 1rem;
    background: var(--gold) !important;
    color: var(--charcoal) !important;
    font-weight: 700 !important;
    text-align: center;
    border-radius: 50px;
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--charcoal);
    color: var(--white);
    overflow: hidden;
    padding-top: 110px;
    /* Matched to new navbar height */
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) saturate(0.85);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(44, 44, 44, 0.8) 0%,
            rgba(44, 44, 44, 0.5) 50%,
            rgba(44, 44, 44, 0.3) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 3rem 0 6rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    padding-left: 0;
}

.motto-wrapper {
    margin-bottom: 1.5rem;
}

.motto {
    display: block;
    margin: 2rem 0 1.5rem 0;
    padding: 0;
    border: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    width: 100%;
    text-align: left;
    animation-delay: 0.1s;
}

.motto-text {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

.motto-verse {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.4;
    margin: 0;
    max-width: none;
}

.hero-bubble-group {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    max-width: 320px;
    width: auto;
}

.hero-bubble-tagline {
    font-family: 'Nunito', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.2rem;
}

.hero-bubble-verse {
    font-family: 'Nunito', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    max-width: 200px;
    /* Tight constraint to force wrap within 'Broken' alignment */
    margin: 0.25rem 0;
    line-height: 1.4;
}

.hero-bubble-ref {
    font-family: 'Lora', serif;
    font-size: 0.62rem;
    font-style: italic;
    color: var(--white);
    letter-spacing: 0.03em;
    margin-top: 0.25rem;
    display: block;
    opacity: 0.85;
}

.headline {
    font-family: 'Lora', serif;
    font-size: clamp(1.8rem, 4.2vw, 2.8rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: var(--gold);
    max-width: 800px;
    text-align: left;
}

.hero-ethics-note {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    color: var(--white);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 3rem;
    max-width: 700px;
    line-height: 1.5;
    text-align: left;
}

.subtext {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 520px;
    font-weight: 400;
    line-height: 1.8;
}

.cta-wrapper {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-portrait {
    display: none;
}

/* redundant container removed */

.subtext {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 800px;
    font-weight: 400;
    line-height: 1.8;
}

.cta-wrapper {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 2rem;
}

.hero-image-glow {
    display: none;
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* ---------- Buttons ---------- */
.btn {
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.78rem;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    justify-content: center;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--charcoal);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-4px);
}

.btn-verse {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.btn-verse:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

/* ---------- Common Section Styles ---------- */
.section {
    padding: 7rem 0;
}

.section-heading {
    font-family: 'Lora', serif;
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.section-text {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    line-height: 1.85;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* ---------- Dr. Lauren's Story Section ---------- */
.story-section {
    background: var(--off-white);
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

.story-image-wrapper {
    position: relative;
}

.story-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-heavy);
    transition: transform 0.6s ease;
}

.story-img:hover {
    transform: scale(1.015) rotate(-0.5deg);
}

.story-image-accent {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    transition: var(--transition);
}

.story-image-wrapper:hover .story-image-accent {
    top: -10px;
    right: -10px;
}

.story-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.story-content p {
    margin-bottom: 1.2rem;
    font-size: 0.98rem;
    color: var(--text-body);
    line-height: 1.85;
}

/* ---------- Vision & Mission ---------- */
.vision-section {
    background: var(--charcoal);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.vision-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.vision-content h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.vision-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 2rem;
    border-radius: 3px;
}

.vision-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.unique-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.unique-heading {
    color: var(--white) !important;
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
}

.unique-text p {
    color: #FFD700 !important;
    /* Bright Yellow */
    font-size: 1.05rem;
    /* Shrunk as requested */
    line-height: 1.7;
    font-weight: 600;
}

/* ---------- Services / Specializations Section ---------- */
.services-section {
    background-color: var(--cream);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-img {
    transform: scale(1.08);
}

.service-card-img-wrapper {
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card-body {
    padding: 2rem 1.8rem 2.5rem;
}

.service-card-body h3 {
    font-family: 'Lora', serif;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.service-card-body p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.7;
}

/* ---------- Faith / Bible Verse Section ---------- */
.faith-section {
    position: relative;
    padding: 8rem 0;
    background-color: var(--charcoal);
    color: var(--white);
    overflow: hidden;
}

.faith-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1510936111840-65e151ad71bb?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
    opacity: 0.07;
}

.faith-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.faith-label {
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 1.5rem;
}

.mission-heading {
    font-family: 'Lora', serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--white);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mission-heading.verse-change {
    opacity: 0;
    transform: translateY(10px);
}

.mission-subtext {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.8;
    letter-spacing: 0.08em;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mission-subtext.verse-change {
    opacity: 0;
    transform: translateY(10px);
}

/* ---------- Testimonials Section ---------- */
.testimonials-section {
    background: var(--off-white);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::after {
    content: '\201C';
    font-family: 'Lora', serif;
    position: absolute;
    top: 220px;
    right: 25px;
    font-size: 6rem;
    color: rgba(212, 175, 55, 0.08);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.testimonial-img-wrapper {
    overflow: hidden;
    height: 280px;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.testimonial-card:hover .testimonial-img {
    transform: scale(1.06);
}

.testimonial-body {
    padding: 2rem 2rem 2.5rem;
}

.testimonial-body p {
    font-size: 0.96rem;
    color: var(--text-body);
    font-style: italic;
    line-height: 1.8;
    position: relative;
}

.testimonial-name {
    display: block;
    margin-top: 1rem;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    /* Shrunk slightly */
    font-style: normal;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}

/* ---------- Contact Section ---------- */
.contact-section {
    background: var(--off-white);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-info span {
    display: block;
    line-height: 1.4;
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: var(--gold-muted);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: var(--transition);
}

.contact-method:hover i {
    background: var(--gold);
    color: var(--charcoal);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.6rem;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: #faf9f7;
    border: 2px solid #eee;
    border-radius: 14px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    color: var(--charcoal);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

/* ---------- Map Section ---------- */
.map-section {
    padding: 5rem 0;
    background: var(--cream);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.map-label {
    text-align: center;
    margin-bottom: 2rem;
}

.map-label h3 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.map-label p {
    color: #888;
    font-size: 1rem;
}

/* ---------- Footer ---------- */
.footer {
    background-color: var(--charcoal-deep);
    color: var(--white);
    padding: 5rem 0 0;
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.footer-motto {
    font-family: 'Nunito', sans-serif;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1.25rem;
}

.social-links i {
    opacity: 0.5;
    cursor: pointer;
    transition: var(--transition);
}

.social-links i:hover {
    opacity: 1;
    color: var(--gold);
    transform: translateY(-2px);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-col h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-weight: 700;
}

.footer-col a {
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--white);
    transform: translateX(4px);
}

/* Footer Bottom Image */
.footer-bottom-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.footer-bottom-image img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    opacity: 0.12;
    display: block;
    filter: grayscale(0.3);
    mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    font-size: 0.82rem;
    color: #666;
    position: relative;
}

.watermark {
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    /* Restored to smaller size */
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-align: right;
    text-transform: uppercase;
    opacity: 0.8;
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    opacity: 0;
    transform: scale(0.5) translateY(20px);
    pointer-events: none;
    text-decoration: none;
}

.whatsapp-float.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* ---------- Animations ---------- */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.fade-in-up:nth-child(2) {
    animation-delay: 0.15s;
}

.fade-in-up:nth-child(3) {
    animation-delay: 0.3s;
}

.fade-in-up:nth-child(4) {
    animation-delay: 0.45s;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: all 0.85s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.85s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.85s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Floating subtle animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

/* Shimmer effect for gold elements */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.gold-shimmer {
    background: linear-gradient(90deg, var(--gold) 0%, #f0d060 25%, var(--gold) 50%, #f0d060 75%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

/* Particle decoration */
.section-dots {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.15;
}

/* ---------- About Image Wrapper ---------- */
.about-image-wrapper {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: var(--radius);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-medium);
    transition: transform 0.5s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

.image-accent {
    position: absolute;
    top: 12%;
    left: -5%;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: var(--radius);
    z-index: 1;
    transition: var(--transition);
}

.about-image-wrapper:hover .image-accent {
    top: 8%;
    left: -3%;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 16px;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.04);
    transform: translateX(5px);
}

.feature-item i {
    width: 45px;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-muted);
    border-radius: 50%;
    transition: var(--transition);
}

.feature-item:hover i {
    background: var(--gold);
    color: var(--charcoal);
}

.feature-item h4 {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: #888;
}

/* ---------- Gallery Section ---------- */
.gallery-section {
    background: var(--cream);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 1 / 1;
    cursor: pointer;
    background: #e0d9d0;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

/* Gold overlay shimmer on hover */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 60%,
            rgba(212, 175, 55, 0.25) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: var(--radius);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Hidden items – collapsed before "See More" is clicked */
.hidden-item {
    display: none;
}

.mt-4 {
    margin-top: 3rem;
}

/* ---------- Gallery "See More" Button ---------- */
.btn-gallery-more {
    padding: 1rem 2.25rem;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    justify-content: center;
    letter-spacing: 0.02em;
    border: 2px solid var(--gold);
    color: var(--charcoal);
    background: transparent;
    transition: var(--transition);
}

.btn-gallery-more:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.25);
}

/* ---------- Lightbox ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    transition: transform 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(212, 175, 55, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        padding-left: 0;
    }

    .hero-image-wrapper {
        order: -1;
    }

    .hero-portrait {
        max-width: 300px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }

    .logo-img {
        width: 60px;
        height: 60px;
    }

    .nav-container {
        padding-left: 0.25rem;
        padding-right: 0.5rem;
    }

    .logo-area {
        flex-shrink: 1;
        min-width: 0;
        overflow: hidden;
    }

    .logo-text-wrapper {
        min-width: 0;
        overflow: hidden;
    }

    .logo-text {
        font-size: clamp(0.7rem, 3vw, 1rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 55vw;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .nav-links {
        display: none;
    }

    .logo-tagline,
    .logo-verse {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .section {
        padding: 5rem 0;
    }

    .headline {
        font-size: 2.2rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .mission-heading {
        font-size: 1.8rem;
    }

    .story-content h2 {
        font-size: 1.8rem;
    }

    .hero-portrait {
        max-width: 250px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-wrapper iframe {
        height: 280px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        left: 20px;
    }
}