/* ===== CSS Variables ===== */
:root {
    --saffron: #C75B12;
    --saffron-light: #E8853D;
    --saffron-dark: #9E4400;
    --gold: #C9A84C;
    --gold-light: #E8D48B;
    --maroon: #7B1818;
    --cream: #FFFDF7;
    --cream-dark: #FFF5E6;
    --warm-white: #FEFCF8;
    --text-dark: #2D1810;
    --text-body: #4A3728;
    --text-muted: #8B7355;
    --border-light: #F0E6D6;
    --shadow-sm: 0 2px 8px rgba(45, 24, 16, 0.06);
    --shadow-md: 0 4px 20px rgba(45, 24, 16, 0.08);
    --shadow-lg: 0 8px 40px rgba(45, 24, 16, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --whatsapp-green: #25D366;
    --facebook-blue: #1877F2;
}

/* ===== Reset ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--text-body);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Header / Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 253, 247, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow 0.3s;
}

.header--scrolled {
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 101;
}

.nav__logo-img {
    width: 40px;
    height: 40px;
}

.nav__logo-text {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.footer__logo-img {
    width: 36px;
    height: 36px;
}

.logo-360 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--saffron);
}

.logo-vastu {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--maroon);
}

.nav__menu {
    display: flex;
    gap: 32px;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    position: relative;
    padding: 4px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--saffron);
    border-radius: 1px;
    transition: width 0.3s;
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link:hover {
    color: var(--saffron);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--whatsapp-green);
    color: #fff;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    color: #fff;
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    padding: 4px 0;
}

.lang-toggle__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s;
}

.lang-toggle__label.active {
    color: var(--saffron);
}

.lang-toggle__switch {
    width: 40px;
    height: 22px;
    background: var(--border-light);
    border-radius: 11px;
    position: relative;
    transition: background 0.3s;
}

.lang-toggle__knob {
    width: 18px;
    height: 18px;
    background: var(--saffron);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.lang-toggle.active .lang-toggle__knob {
    transform: translateX(18px);
}

.lang-toggle.active .lang-toggle__switch {
    background: var(--cream-dark);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 50%, #FFF0D4 100%);
    overflow: hidden;
}

.hero__mandala {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(199, 91, 18, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.hero__mandala::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 60px;
    right: 60px;
    bottom: 60px;
    border: 1px solid rgba(199, 91, 18, 0.08);
    border-radius: 50%;
}

.hero__mandala::after {
    content: '';
    position: absolute;
    top: 120px;
    left: 120px;
    right: 120px;
    bottom: 120px;
    border: 1px solid rgba(199, 91, 18, 0.1);
    border-radius: 50%;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 24px;
}

.hero__subtitle {
    font-size: 1rem;
    color: var(--saffron);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero__title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero__title span {
    color: var(--saffron);
}

.hero__description {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn--primary {
    background: var(--saffron);
    color: #fff;
    border-color: var(--saffron);
}

.btn--primary:hover {
    background: var(--saffron-dark);
    border-color: var(--saffron-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 91, 18, 0.3);
    color: #fff;
}

.btn--outline {
    background: transparent;
    color: var(--saffron);
    border-color: var(--saffron);
}

.btn--outline:hover {
    background: var(--saffron);
    color: #fff;
    transform: translateY(-2px);
}

/* Hero Visual - Yantra / Compass */
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.yantra {
    position: relative;
    width: 340px;
    height: 340px;
    animation: rotate-slow 60s linear infinite;
}

.yantra__ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
}

.yantra__ring--outer {
    top: 0; left: 0; right: 0; bottom: 0;
    border-color: rgba(199, 91, 18, 0.2);
}

.yantra__ring--middle {
    top: 30px; left: 30px; right: 30px; bottom: 30px;
    border-color: rgba(201, 168, 76, 0.3);
    border-style: dashed;
}

.yantra__ring--inner {
    top: 60px; left: 60px; right: 60px; bottom: 60px;
    border-color: rgba(199, 91, 18, 0.25);
}

.yantra__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate-reverse 60s linear infinite;
    box-shadow: 0 4px 30px rgba(199, 91, 18, 0.25);
}

.yantra__center span {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.yantra__directions {
    animation: rotate-reverse 60s linear infinite;
}

.yantra__directions .dir {
    position: absolute;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--saffron);
    letter-spacing: 1px;
}

.dir--n  { top: -8px;  left: 50%; transform: translateX(-50%); }
.dir--s  { bottom: -8px; left: 50%; transform: translateX(-50%); }
.dir--e  { right: -8px; top: 50%; transform: translateY(-50%); }
.dir--w  { left: -8px;  top: 50%; transform: translateY(-50%); }
.dir--ne { top: 35px;  right: 35px; }
.dir--nw { top: 35px;  left: 35px; }
.dir--se { bottom: 35px; right: 35px; }
.dir--sw { bottom: 35px; left: 35px; }

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-360deg); }
}

.yantra__center span {
    animation: rotate-reverse 60s linear infinite;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero__scroll a {
    color: var(--saffron);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.hero__scroll a:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ===== Section Common ===== */
.section {
    padding: 100px 0;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--saffron);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section__divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--gold));
    margin: 0 auto;
    border-radius: 2px;
}

/* ===== About Section ===== */
.about {
    background: var(--warm-white);
}

.about__grid {
    display: grid;
    grid-template-columns: auto 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.about__image {
    position: relative;
}

.about__photo {
    width: 220px;
    height: 220px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    object-position: center top;
    box-shadow: var(--shadow-lg);
    border: 4px solid #fff;
}

.about__image::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: -12px;
    bottom: -12px;
    border: 2px solid var(--saffron);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.about__text {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.about__award {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: linear-gradient(135deg, #FFF8F0, #FFF0D4);
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold);
    margin-top: 28px;
}

.award__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award__icon svg {
    stroke: #fff;
}

.about__award strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--maroon);
}

.about__award p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

a.about__award {
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

a.about__award:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.award__link {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--saffron);
    font-family: 'Poppins', sans-serif;
}

a.about__award:hover .award__link {
    text-decoration: underline;
}

.about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat {
    background: #fff;
    padding: 28px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat__number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--saffron);
    margin-bottom: 4px;
}

.stat__label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== Gallery Section ===== */
.gallery {
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
    padding: 80px 0;
}

.gallery__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: auto;
}

.gallery__item--wide {
    aspect-ratio: 16/9;
}

.gallery__item:not(.gallery__item--wide) {
    aspect-ratio: 3/4;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery__item--wide {
        aspect-ratio: 16/9;
    }

    .gallery__item:not(.gallery__item--wide) {
        aspect-ratio: 4/3;
    }
}

/* ===== Services Section ===== */
.services {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #FFF5E6, #FFF0D4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--saffron);
}

.service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== Articles Section ===== */
.articles {
    background: var(--warm-white);
}

.articles__content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.articles__info p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.articles__info h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.articles__topics {
    margin-bottom: 32px;
}

.articles__topics li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-body);
    border-bottom: 1px solid var(--border-light);
}

.articles__topics li:last-child {
    border-bottom: none;
}

.articles__topics svg {
    flex-shrink: 0;
    color: var(--gold);
}

.fb-embed-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.fb-embed-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.fb-embed-card__header strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.fb-embed-card__header span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.fb-embed-card__stats {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

.fb-embed-card__stats span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--saffron);
    background: linear-gradient(135deg, #FFF5E6, #FFF0D4);
    padding: 6px 14px;
    border-radius: 50px;
}

.fb-embed-card__desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.fb-embed-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--facebook-blue);
    color: #fff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
}

.fb-embed-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(24, 119, 242, 0.35);
    color: #fff;
}

/* ===== Contact Section ===== */
.contact {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact__text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: transform 0.2s;
}

.contact-card:hover {
    transform: translateX(4px);
}

.contact-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FFF5E6, #FFF0D4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card__icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--saffron);
}

.contact-card strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.contact-card a,
.contact-card span {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.contact-card a:hover {
    color: var(--saffron);
}

.whatsapp-card {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    color: #fff;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.25);
}

.whatsapp-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 12px;
}

.whatsapp-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 28px;
    line-height: 1.7;
}

.whatsapp-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #fff;
    color: #128C7E;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: #128C7E;
}

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.2fr 0.8fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand .nav__logo {
    margin-bottom: 16px;
}

.footer__brand .logo-360 {
    color: var(--saffron-light);
}

.footer__brand .logo-vastu {
    color: var(--gold-light);
}

.footer__brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer__links h4,
.footer__social h4 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__links a {
    display: block;
    font-size: 0.9rem;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s, padding-left 0.3s;
}

.footer__links a:hover {
    color: var(--saffron-light);
    padding-left: 4px;
}

.footer__contact h4 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.footer__contact-item svg {
    flex-shrink: 0;
    stroke: var(--saffron-light);
}

.footer__contact-item a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

.footer__contact-item a:hover {
    color: var(--saffron-light);
}

.footer__contact-item small {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

.footer__contact-item div {
    display: flex;
    flex-direction: column;
}

.footer__gmb-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--saffron-light);
    margin-top: 4px;
    padding: 8px 0;
    transition: color 0.3s;
}

.footer__gmb-link svg {
    flex-shrink: 0;
    stroke: var(--saffron-light);
}

.footer__gmb-link:hover {
    color: var(--gold-light);
}

.contact-card--gmb {
    border: 1px dashed var(--saffron);
    background: linear-gradient(135deg, #FFF8F0, #FFF5E6);
}

.contact-card__icon--gmb {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-light)) !important;
}

.contact-card__icon--gmb svg {
    stroke: #fff !important;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.social-links a:hover {
    background: var(--saffron);
    color: #fff;
    transform: translateY(-2px);
}

.footer__bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {
    0%   { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50%  { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 0;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        z-index: 100;
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__menu .nav__link {
        font-size: 1.05rem;
        padding: 14px 0;
        border-bottom: 1px solid var(--border-light);
    }

    .nav__cta {
        display: none;
    }

    .lang-toggle {
        margin-right: 8px;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 24px;
    }

    .hero__description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

    .yantra {
        width: 240px;
        height: 240px;
    }

    .yantra__center {
        width: 70px;
        height: 70px;
    }

    .yantra__center span {
        font-size: 1.1rem;
    }

    .about__grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .about__photo {
        width: 180px;
        height: 180px;
    }

    .about__content {
        text-align: left;
    }

    .about__stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .articles__content {
        grid-template-columns: 1fr;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.8rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .about__stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat {
        padding: 20px 16px;
    }

    .stat__number {
        font-size: 1.6rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
}
