/* Hindu Chaplain Website - Version 2 Color Theme */
/* Saffron, Gold, Cream & White Theme */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #FFFDF8;
  --bg-secondary: #FFF8E7;
  --text-primary: #2D1810;
  --text-secondary: #5C4033;
  --accent-saffron: #FF6B35;
  --accent-gold: #D4A24C;
  --accent-deep: #8B4513;
  --border-subtle: #F0E6D3;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent-deep);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: var(--text-primary);
}

p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  font-weight: 300;
  text-align: justify;
}

/* Navigation */
.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(240, 230, 211, 0.5);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-deep);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-img {
  height: 65px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-deep);
}

.nav-logo svg {
  width: 32px;
  height: 32px;
  fill: var(--accent-saffron);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-deep);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-saffron);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--accent-deep);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 253, 248, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
  }
  
  .nav-links.active {
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent-deep);
  color: white;
}

.btn-primary:hover {
  background: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-deep);
  border: 2px solid var(--accent-deep);
}

.btn-secondary:hover {
  background: var(--bg-secondary);
}

.btn-saffron {
  background: var(--accent-saffron);
  color: white;
}

.btn-saffron:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-white:hover {
  background: white;
  color: var(--accent-deep);
}

/* Sections */
.section {
  padding: 6rem 2rem;
}

.section-alt {
  background: var(--bg-secondary);
}

.section-dark {
  background: var(--accent-deep);
  color: white;
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: white;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-top: 0.75rem;
}

.section-header .overline {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-saffron);
  font-weight: 600;
  margin-bottom: 0;
  display: block;
}

/* Home Page Hero */
.home-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 8rem 2rem;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.75), rgba(45, 24, 16, 0.65));
}

.home-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.home-hero h1 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 7vw, 5rem);
}

.home-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
}

/* About Chaplaincy Section */
.chaplaincy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.chaplaincy-quote {
  position: relative;
  padding: 2rem 0;
}

.chaplaincy-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  font-style: italic;
  color: var(--accent-deep);
  line-height: 1.5;
  position: relative;
  padding-left: 2rem;
  border-left: 4px solid var(--accent-saffron);
}

.chaplaincy-text p {
  margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-primary);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(45, 24, 16, 0.08);
}

.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--accent-saffron);
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.testimonial-info h4 {
  font-size: 1rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-info span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Video Testimonial */
.video-testimonial {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border-subtle);
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(45, 24, 16, 0.12);
}

.video-container iframe {
  width: 100%;
  height: 400px;
  display: block;
}

@media (max-width: 768px) {
  .video-container iframe {
    height: 280px;
  }
}

/* CTA Section */
.cta-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 5rem 2rem;
  background-size: cover;
  background-position: center;
}

.cta-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 248, 231, 0.92));
}

.cta-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
}

.cta-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cta-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.cta-header p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.125rem;
}

.cta-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cta-action-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(139, 69, 19, 0.15);
  background: white;
  border-color: var(--accent-saffron);
}

.cta-card-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--accent-deep), #a0522d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.cta-action-card:hover .cta-card-icon {
  background: linear-gradient(135deg, var(--accent-saffron), #ff8c5a);
  transform: scale(1.1);
}

.cta-card-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

.cta-action-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--accent-deep);
  margin: 0;
}

.cta-action-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin: 0;
}

.cta-card-action {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-saffron);
  margin-top: auto;
  padding-top: 0.5rem;
}

/* About Page */
.about-hero {
  padding: 10rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.profile-section {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: start;
}

.profile-image {
  border-radius: 24px;
  overflow: hidden;
  position: sticky;
  top: 120px;
}

.profile-image img {
  width: 100%;
  height: auto;
  display: block;
}

.profile-content h3 {
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.profile-content h3:first-child {
  margin-top: 0;
}

.credentials-list {
  list-style: none;
  margin: 1.5rem 0;
}

.credentials-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}

.credentials-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent-saffron);
  border-radius: 50%;
}

.universities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.university-card {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.university-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
}

/* Mission Banner */
.mission-banner {
  padding: 5rem 2rem;
  text-align: center;
}

.mission-banner h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.mission-banner p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.25rem;
}

/* Empathy Page */
.empathy-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, var(--accent-deep), #5a3a1a);
  padding: 8rem 2rem;
}

.empathy-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.empathy-hero h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.empathy-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}

.empathy-content {
  max-width: 900px;
  margin: 0 auto;
}

.empathy-content h3 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.empathy-content p {
  margin-bottom: 1.5rem;
}

.empathy-cta {
  background: var(--bg-secondary);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin-top: 3rem;
}

.empathy-cta h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.empathy-cta a {
  color: var(--accent-saffron);
  font-weight: 600;
}

/* Why It Matters Page */
.matters-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.matters-card {
  padding: 2.5rem;
  border-radius: 20px;
}

.matters-card.large {
  grid-column: span 8;
}

.matters-card.small {
  grid-column: span 4;
}

.matters-card.full {
  grid-column: span 12;
}

.matters-card.bg-light {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
}

.matters-card.bg-alt {
  background: var(--bg-secondary);
}

.matters-card h3 {
  margin-bottom: 1rem;
}

.matters-card ul {
  list-style: none;
  margin-top: 1.5rem;
}

.matters-card ul li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-secondary);
}

.matters-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-saffron);
}

/* Contact Page */
.contact-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 2rem;
  background-size: cover;
  background-position: center;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 248, 231, 0.9));
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info {
  padding: 2rem;
}

.contact-info h1 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: white;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  border: 1px solid var(--border-subtle);
}

.contact-card:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
  border-color: var(--accent-deep);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-deep);
}

.contact-card-content h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-card-content span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Contact Form */
.contact-form-container {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 32px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.lotus-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: block;
}

.lotus-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--accent-saffron);
}

.contact-form {
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 0;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border-subtle);
  transition: border-color 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-deep);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(92, 64, 51, 0.5);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.footer-links h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 1.5rem;
}

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

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .chaplaincy-content {
    grid-template-columns: 1fr;
  }
  
  .profile-section {
    grid-template-columns: 1fr;
  }
  
  .profile-image {
    position: relative;
    top: 0;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .matters-card.large,
  .matters-card.small {
    grid-column: span 12;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .cta-cards-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .cta-action-card {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 1.5rem;
  }
  
  .home-hero {
    min-height: 70vh;
    padding: 7rem 1.5rem 4rem;
  }
  
  .home-hero p {
    font-size: 1.0625rem;
  }
  
  .cta-hero {
    padding: 4rem 1.5rem;
  }
  
  .cta-action-card {
    padding: 2rem 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .universities-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 2rem 1.5rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-2 {
  margin-top: 2rem;
}

/* Get in Touch Section */
.get-in-touch-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 5rem 2rem;
  background-size: cover;
  background-position: center;
}

.get-in-touch-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 248, 231, 0.92));
}

.get-in-touch-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
}

.get-in-touch-header {
  text-align: center;
  margin-bottom: 3rem;
}

.get-in-touch-header h1,
.get-in-touch-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.get-in-touch-header p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.125rem;
}

.get-in-touch-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .get-in-touch-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.get-in-touch-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 1.75rem 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.get-in-touch-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(139, 69, 19, 0.15);
  background: white;
  border-color: var(--accent-saffron);
}

.get-in-touch-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-deep), #a0522d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  transition: all 0.3s ease;
}

.get-in-touch-card:hover .get-in-touch-card-icon {
  background: linear-gradient(135deg, var(--accent-saffron), #ff8c5a);
  transform: scale(1.1);
}

.get-in-touch-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: white;
}

.get-in-touch-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--accent-deep);
  margin: 0;
}

.get-in-touch-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.get-in-touch-action {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-saffron);
  margin-top: auto;
  padding-top: 0.5rem;
}

.get-in-touch-card .btn {
  margin-top: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
  animation: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}

@media (max-width: 600px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 18px;
    right: 18px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 768px) {
  .get-in-touch-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .get-in-touch-card {
    padding: 2.5rem 2rem;
  }
  
  .get-in-touch-section {
    padding: 4rem 1.5rem;
  }
}
