@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:wght@400;600;700;800&display=swap');

/* ============================================
   SECTION BASE
   ============================================ */
.dhaam-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    padding: 2rem 1rem 0rem;
    overflow: hidden;
    /* Entire Background */
    background: #FFF7EF;
    font-family: 'Montserrat', sans-serif;
}

.section-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   BACKGROUND EFFECTS
   ============================================ */
.section-glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(207, 71, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

.floating-om {
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: rgba(207, 71, 0, 0.05);
    pointer-events: none;
    user-select: none;
    animation: floatOm 15s ease-in-out infinite;
    z-index: 20;
}

.floating-om.om-1 {
    top: 8%;
    left: 3%;
}

.floating-om.om-2 {
    top: 12%;
    right: 5%;
    font-size: 6rem;
    animation-delay: -5s;
    animation-duration: 20s;
}

.floating-om.om-3 {
    bottom: 15%;
    left: 3%;
    font-size: 10rem;
    animation-delay: -10s;
    animation-duration: 25s;
}

.floating-om.om-4 {
    bottom: 20%;
    right: 5%;
    font-size: 7rem;
    animation-delay: -7s;
    animation-duration: 22s;
}

@keyframes floatOm {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(5deg); }
    66% { transform: translateY(15px) rotate(-3deg); }
}

/* Mandala Rings */
.mandala-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    pointer-events: none;
    z-index: 1;
}

.mandala-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(207, 71, 0, 0.12);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 { width: 200px; height: 200px; animation: spin 60s linear infinite; }
.ring-2 { width: 400px; height: 400px; animation: spin 80s linear infinite reverse; }
.ring-3 { width: 600px; height: 600px; animation: spin 100s linear infinite; }
.ring-4 { width: 800px; height: 800px; animation: spin 120s linear infinite reverse; }

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ============================================
   HEADER BADGE
   ============================================ */
.section-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.badge-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cf4700, transparent);
}

.badge-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #cf4700;
    white-space: nowrap;
}

/* ============================================
   MAIN TITLE
   ============================================ */
.main-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.title-top {
    display: block;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 400;
    color: #891a0e;
    letter-spacing: 0.02em;
}

.title-bottom {
    display: block;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #891a0e;
    margin-top: 0.3rem;
}

.title-bottom .highlight {
    color: #cf4700;
    position: relative;
    display: inline-block;
}

.title-bottom .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #cf4700, #891a0e);
    opacity: 0.2;
    z-index: -1;
    border-radius: 2px;
}

/* ============================================
   INTRO CARD
   ============================================ */
.intro-card {
    position: relative;
    background: #FFF7EF;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 4rem;
    box-shadow: 0 20px 60px rgba(137, 26, 14, 0.08);
    border: 1px solid rgba(207, 71, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(207, 71, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.intro-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #000000; /* Paragraph Black */
    margin-bottom: 1rem;
    text-align: center;
}

.intro-text.secondary {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.intro-text strong {
    color: #000000;
    font-weight: 700;
}

.location-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(207, 71, 0, 0.08), rgba(137, 26, 14, 0.05));
    color: #cf4700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9em;
}

.deity-name {
    color: #891a0e;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

/* ============================================
   CONTENT GRID (2 Columns)
   ============================================ */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.content-block {
    background: #FFF7EF;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(137, 26, 14, 0.06);
    border: 1px solid rgba(207, 71, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(137, 26, 14, 0.12);
}

.block-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.block-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(207, 71, 0, 0.08), rgba(137, 26, 14, 0.05));
    border-radius: 12px;
}

.block-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #891a0e;
    font-weight: 700;
    line-height: 1.3;
}

.block-title .highlight {
    color: #cf4700;
}

.block-title .amp {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: rgba(137, 26, 14, 0.6);
}

.block-body p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #000000; /* Paragraph Black */
    margin-bottom: 1rem;
}

.block-body p:last-child {
    margin-bottom: 0;
}

.block-body strong {
    color: #000000;
    font-weight: 700;
}

.sage-name {
    color: #cf4700;
    font-weight: 700;
}

.sanskrit-inline {
    font-family: 'Playfair Display', serif;
    color: #cf4700;
    font-weight: 700;
}

/* Timeline Badge */
.timeline-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(137, 26, 14, 0.1);
}

.time-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: #FFF7EF;
    border-radius: 8px;
    border: 1px solid rgba(207, 71, 0, 0.2);
}

.time-pill.current {
    background: linear-gradient(135deg, rgba(207, 71, 0, 0.1), rgba(137, 26, 14, 0.05));
    border-color: #cf4700;
}

.time-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #cf4700;
}

.time-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: #000000; /* Reverted to black for better reading */
    margin-top: 0.2rem;
}

.time-connector {
    font-size: 1.5rem;
    color: #cf4700;
    animation: connectorPulse 2s ease-in-out infinite;
}

@keyframes connectorPulse {
    0%, 100% { opacity: 0.5; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(5px); }
}

/* ============================================
   MEANING BLOCK
   ============================================ */
.meaning-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.meaning-word {
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.sanskrit-big {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #cf4700;
    display: block;
    margin-bottom: 0.5rem;
}

.word-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #891a0e;
    display: block;
    margin-bottom: 0.3rem;
}

.word-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #000000; /* Paragraph Black */
    display: block;
    line-height: 1.4;
}

/* Chain Animation */
.chain-animation {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1rem;
}

.chain-link {
    width: 24px;
    height: 24px;
    border: 3px solid #891a0e;
    border-radius: 50%;
    animation: chainShake 3s ease-in-out infinite;
}

.chain-link:nth-child(2) { animation-delay: 0.2s; }
.chain-link:nth-child(3) { animation-delay: 0.4s; }

@keyframes chainShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(8deg); }
    75% { transform: rotate(-8deg); }
}

/* Break Animation */
.break-animation {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-top: 1rem;
    height: 30px;
    align-items: center;
}

.break-piece {
    width: 16px;
    height: 16px;
    background: #cf4700;
    border-radius: 3px;
    animation: breakApart 2.5s ease-in-out infinite;
    opacity: 0.7;
}

.break-piece:nth-child(1) { animation-delay: 0s; }
.break-piece:nth-child(2) { animation-delay: 0.3s; }
.break-piece:nth-child(3) { animation-delay: 0.6s; }

@keyframes breakApart {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.7; }
    50% { transform: translate(var(--tx, 15px), var(--ty, -15px)) rotate(45deg); opacity: 0.3; }
}

/* Meaning Arrow */
.meaning-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.arrow-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #cf4700, #891a0e);
}

.arrow-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #cf4700;
}

/* Meaning Result */
.meaning-result {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.result-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(207, 71, 0, 0.08), rgba(137, 26, 14, 0.03));
    border: 2px solid rgba(207, 71, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    animation: resultPulse 3s ease-in-out infinite;
}

.result-circle::before,
.result-circle::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(207, 71, 0, 0.2);
    animation: ringExpand 3s ease-out infinite;
}

.result-circle::before {
    width: 180px;
    height: 180px;
    animation-delay: 0.5s;
}

.result-circle::after {
    width: 220px;
    height: 220px;
    animation-delay: 1s;
}

@keyframes resultPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes ringExpand {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.result-om {
    font-size: 2rem;
    color: #891a0e;
}

.result-text {
    font-family: 'Playfair Display', serif;
    font-size: 0.7rem;
    color: #891a0e;
    font-weight: 700;
    text-align: center;
    max-width: 100px;
    line-height: 1.3;
}

.block-footer {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #000000; /* Paragraph Black */
    text-align: center;
    font-style: italic;
    border-top: 1px solid rgba(137, 26, 14, 0.1);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.block-footer strong {
    color: #cf4700;
    font-style: normal;
    font-weight: 700;
}

/* ============================================
   MISSION AREA
   ============================================ */
.mission-area {
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.mission-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    color: #891a0e;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.mission-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #cf4700;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(207, 71, 0, 0.3);
    background: rgba(207, 71, 0, 0.05);
    border-radius: 20px;
}

.mission-intro {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #000000; /* Paragraph Black */
}

.pillars-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pillar-card {
    position: relative;
    background: #FFF7EF;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 40px rgba(137, 26, 14, 0.05);
    border: 1px solid rgba(207, 71, 0, 0.1);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    text-align: center;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(137, 26, 14, 0.12);
}

.pillar-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(207, 71, 0, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    transition: transform 0.4s;
}

.pillar-card:hover .pillar-glow {
    transform: scale(1.5);
}

.pillar-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(137, 26, 14, 0.06);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pillar-icon-wrap {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: #cf4700;
}

.pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #891a0e;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.pillar-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    line-height: 1.7;
    color: #000000; /* Paragraph Black */
    margin-bottom: 1.2rem;
}

.pillar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
}

.pillar-tags span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    padding: 0.3rem 0.7rem;
    background: rgba(207, 71, 0, 0.08);
    color: #cf4700;
    border-radius: 12px;
    font-weight: 600;
}

/* ============================================
   SANCTUARY & INVITE
   ============================================ */
.sanctuary-invite {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background: #FFF7EF;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(137, 26, 14, 0.06);
    border: 1px solid rgba(207, 71, 0, 0.12);
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards;
}

/* Map Visual */
.sanctuary-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-circle {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(207, 71, 0, 0.03), rgba(137, 26, 14, 0.03));
    border: 2px dashed rgba(207, 71, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-point {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #000000;
}

.map-point::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(137, 26, 14, 0.3);
}

.map-point.tampa {
    top: 60%;
    left: 15%;
}

.map-point.orlando {
    top: 60%;
    right: 15%;
}

.map-point.dham {
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    color: #cf4700;
    font-weight: 700;
}

.map-point.dham::before {
    background: #cf4700;
    width: 14px;
    height: 14px;
    box-shadow: 0 0 20px rgba(207, 71, 0, 0.6);
}

.dham-pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #cf4700;
    animation: dhamPulse 2s ease-out infinite;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
}

@keyframes dhamPulse {
    0% { transform: translateX(-50%) scale(1); opacity: 1; }
    100% { transform: translateX(-50%) scale(2); opacity: 0; }
}

.map-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    animation: dashMove 20s linear infinite;
}

@keyframes dashMove {
    to { stroke-dashoffset: -100; }
}

/* Sanctuary Text */
.sanctuary-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #891a0e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.sanctuary-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #000000; /* Paragraph Black */
    margin-bottom: 1.5rem;
}

.sanctuary-desc strong {
    color: #891a0e;
    font-weight: 700;
}

.offerings {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(207, 71, 0, 0.05);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000000; /* Make offerings items easily readable in black */
    transition: transform 0.3s, background 0.3s;
}

.offer-item:hover {
    transform: translateX(5px);
    background: rgba(207, 71, 0, 0.1);
}

.offer-icon {
    font-size: 1.3rem;
    color: #cf4700;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
  background: #FFF7EF;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: #FFF7EF;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(137, 26, 14, 0.05);
}

.contact-left {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.contact-image {
  position: absolute;
  inset: 0;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-right {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(137, 26, 14, 0.02);
  border-radius: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  width: 100%;
}

.form-group input,
.form-group textarea {
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(137, 26, 14, 0.15);
  border-radius: 0;
  background: #FFF7EF;
  color: #000000; 
  font-size: 15px;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.5); 
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #cf4700;
  box-shadow: 0 0 0 3px rgba(207, 71, 0, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* New CSS for Send Message button */
.submit-button {
  width: 100%; /* Spans the entire width of the form field */
  font-family: 'Montserrat', sans-serif;
  padding: 16px 24px;
  background: #891a0e; /* Different complementary color to stand out from Donate button */
  color: #FFF7EF;
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.submit-button:hover {
  background: #cf4700;
}

.submit-button:active {
  transform: scale(0.98);
}

/* Original donate button */
.contact-donate {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.donate-button {
  font-family: 'Montserrat', sans-serif;
  padding: 16px 56px;
  background: #cf4700;
  color: #FFF7EF;
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.donate-button:hover {
  background: #891a0e;
}

.donate-button:active {
  transform: scale(0.98);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .sanctuary-invite {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sanctuary-visual {
        order: -1;
    }

    .offerings {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .dhaam-section {
        padding: 2rem 1rem 4rem;
    }

    .intro-card,
    .content-block,
    .sanctuary-invite {
        padding: 1.5rem;
    }

    .pillars-row {
        grid-template-columns: 1fr;
    }

    .meaning-visual {
        flex-direction: column;
        gap: 1rem;
    }

    .meaning-arrow {
        flex-direction: row;
    }

    .arrow-line {
        width: 30px;
        height: 2px;
    }

    .timeline-badge {
        flex-direction: column;
        gap: 0.5rem;
    }

    .time-connector {
        transform: rotate(90deg);
    }

    .mandala-container {
        display: none;
    }

    .floating-om {
        font-size: 4rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-left {
        min-height: 250px;
    }

    .contact-right {
        padding: 30px 20px;
    }

    .donate-button {
        width: 100%;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .title-top {
        font-size: 1.25rem;
    }
    .title-bottom {
        font-size: 1.6rem;
    }
    .section-badge {
        gap: 0.5rem;
    }
    .badge-line {
        width: 30px;
    }
    .badge-text {
        font-size: 0.65rem;
        letter-spacing: 0.15em;
    }
    .intro-card,
    .content-block,
    .sanctuary-invite {
        padding: 1.25rem;
    }
    .pillar-card {
        padding: 1.5rem 1rem;
    }
    .map-circle {
        width: 220px;
        height: 220px;
    }
    .offerings {
        grid-template-columns: 1fr;
    }
    .meaning-visual {
        gap: 1rem;
    }
    .sanskrit-big {
        font-size: 2rem;
    }
    .result-circle {
        width: 120px;
        height: 120px;
    }
    .timeline-badge {
        gap: 0.5rem;
    }
    .time-pill {
        padding: 0.5rem 1rem;
    }
}