/* =============================================
   SHARED CSS — Ravindra Himmattrao Deshmukh
   All pages use this file
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --saffron: #FF671F;
  --saffron-mid: #e65c1c;
  --saffron-light: #ff7a38;
  --green: #046A38;
  --green-light: #068f4b;
  --green-pale: #e6f3eb;
  --white: #ffffff;
  --offwhite: #fffdfa;
  --gray: #8a8a8a;
  --gray-light: #e8e8e4;
  --accent: #b8341b;
  --text-dark: #1a1a1a;
  --text-muted: #5a5a5a;
  --shadow: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-theme: 0 8px 30px rgba(4, 106, 56, 0.25);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── SCROLL PROGRESS BAR ─── */
#scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 3px; width: 0%;
  background: linear-gradient(to right, var(--saffron), var(--green));
  transition: width 0.1s linear;
}

/* ─── SCROLL TO TOP ─── */
#scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--saffron); color: var(--white);
  border: none; cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(255,103,31,0.4);
  opacity: 0; pointer-events: none; transition: all 0.4s;
}
#scroll-top.show { opacity: 1; pointer-events: auto; }
#scroll-top:hover { background: var(--green); transform: translateY(-3px); }

/* ─── PAGE TRANSITION ─── */
body { animation: pageIn 0.4s ease both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(255, 103, 31, 0.97);
  backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
nav.solid {
  background: var(--saffron);
  padding: 1rem 3rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}
.nav-brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.nav-brand-icon {
  width: 65px; 
  height: 65px; border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white); font-weight: 700;
  font-family: 'Playfair Display', serif; overflow: hidden;
}
.nav-brand-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.nav-brand-text { color: var(--white); }
.nav-brand-text span:first-child { display:block; font-weight:700; font-size:0.95rem; letter-spacing:0.5px; }
.nav-brand-text span:last-child { display:block; font-size:0.7rem; color: var(--white); opacity: 0.9; letter-spacing:1px; text-transform: uppercase; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.9); text-decoration: none;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px;
  transition: color 0.3s; position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--green-pale);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--green); color: var(--white) !important;
  padding: 0.5rem 1.2rem !important; border-radius: 4px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: all 0.3s;
}
.lang-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.4rem 0.8rem !important;
  border-radius: 4px;
  margin-left: 0.5rem;
}
.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}
.lang-toggle::after { display: none !important; }

/* ─── MOBILE MENU ─── */
/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed; 
  top: 0; 
  right: -100%; /* Hides the menu off-screen to the right */
  width: 100%;
  height: 100vh;
  background: var(--saffron); 
  z-index: 1005; /* This MUST be higher than the nav's z-index (1000) */
  display: flex; /* Keep it as flex so the transition works */
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
  gap: 2rem;
  transition: right 0.4s ease-in-out; /* Smooth sliding animation */
}

.mobile-menu.open { 
  right: 0; /* Slides the menu in to cover the screen */
}

.mobile-menu a {
  color: var(--white); text-decoration: none; font-size: 1.4rem;
  font-weight: 500; font-family: 'Playfair Display', serif;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--green-pale); }
.mobile-close {
  position: absolute; top: 2rem; right: 2rem;
  color: var(--white); font-size: 1.5rem; cursor: pointer;
}
.lang-toggle-mobile {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
}

/* ─── PAGE HERO (for inner pages) ─── */
.page-hero {
  min-height: 50vh;
  background: var(--saffron);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 8rem 3rem 4rem;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(4, 106, 56, 0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(0,0,0,0.1) 0%, transparent 50%);
}
.page-hero-pattern {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: repeating-linear-gradient(45deg, var(--green) 0, var(--green) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.page-hero-content .breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.75);
  margin-bottom: 1rem; font-weight: 500;
}
.page-hero-content .breadcrumb a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  transition: color 0.3s;
}
.page-hero-content .breadcrumb a:hover { color: var(--white); }
.page-hero-content .breadcrumb i { font-size: 0.7rem; }
.page-hero-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.15); color: var(--white);
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.4);
}
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white); line-height: 1.1;
  font-weight: 900; margin-bottom: 1rem;
}
.page-hero-content h1 .highlight { color: var(--green-pale); }
.page-hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.25rem;
  color: rgba(255,255,255,0.9); line-height: 1.6;
  max-width: 600px;
  border-left: 3px solid var(--green-pale); padding-left: 1rem;
}

/* ─── SECTION COMMON ─── */
section { padding: 6rem 3rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--green); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem;
}
.section-label::before, .section-label::after {
  content: ''; display: block; width: 30px; height: 2px; background: var(--green);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 700;
  color: var(--text-dark); line-height: 1.2; margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1rem; color: var(--text-muted); max-width: 600px;
  margin: 0 auto; line-height: 1.7;
}
.section-title.white { color: var(--white); }
.section-subtitle.white { color: rgba(255,255,255,0.9); }
.section-label.white::before, .section-label.white::after { background: rgba(255,255,255,0.5); }
.section-label.white { color: rgba(255,255,255,0.9); }

.container { max-width: 1200px; margin: 0 auto; }
.container-wide { max-width: 1400px; margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--green); color: var(--white);
  padding: 0.8rem 2rem; border-radius: 4px;
  font-weight: 700; font-size: 0.9rem;
  text-decoration: none; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: var(--shadow-theme); }
.btn-secondary {
  border: 1.5px solid var(--saffron); color: var(--saffron);
  padding: 0.8rem 2rem; border-radius: 4px;
  font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-secondary:hover { background: var(--saffron); color: var(--white); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.6); color: var(--white);
  padding: 0.8rem 2rem; border-radius: 4px;
  font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* ─── CARD COMPONENTS ─── */
.card {
  background: var(--white); border-radius: 14px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-light);
  transition: all 0.3s; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--saffron-light); }

/* ─── STAT CARDS ─── */
.stat-card {
  background: var(--white); border-radius: 12px;
  padding: 2rem 1.5rem; text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.06);
  border: 1px solid var(--gray-light); transition: all 0.3s;
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--saffron-light); }
.stat-icon {
  width: 56px; height: 56px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 1rem;
}
.stat-icon.green { background: rgba(4,106,56,0.1); color: var(--green); }
.stat-icon.saffron { background: rgba(255,103,31,0.1); color: var(--saffron); }
.stat-icon.accent { background: rgba(184,52,27,0.1); color: var(--accent); }
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 2.2rem;
  color: var(--text-dark); font-weight: 900; line-height: 1;
}
.stat-suffix { font-size: 1.2rem; color: var(--saffron); font-weight: 700; }
.stat-label { color: var(--text-muted); font-size: 0.78rem; margin-top: 0.4rem; line-height: 1.4; }

/* ─── TIMELINE ─── */
.timeline { position: relative; padding: 2rem 0; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--saffron), var(--green-pale));
  transform: translateX(-50%);
}
.tl-item {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem; position: relative;
}
.tl-item:nth-child(even) .tl-content { grid-column: 2; }
.tl-item:nth-child(odd) .tl-content { grid-column: 1; text-align: right; }
.tl-dot {
  position: absolute; top: 1rem; left: 50%; transform: translateX(-50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--saffron); border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--saffron);
}
.tl-content {
  background: var(--offwhite); border-radius: 10px; padding: 1.5rem 1.8rem;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-light); transition: all 0.3s;
}
.tl-content:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--saffron); }
.tl-year { color: var(--green); font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 0.5rem; }
.tl-content h3 { color: var(--text-dark); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.tl-content p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }

/* ─── INITIATIVE CARDS ─── */
.initiative-card {
  background: var(--white); border-radius: 14px;
  overflow: hidden; box-shadow: 0 5px 25px rgba(0,0,0,0.06);
  transition: all 0.3s; border: 1px solid var(--gray-light);
}
.initiative-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--saffron); }
.initiative-header {
  background: var(--saffron); padding: 2rem 2rem 1.5rem;
  position: relative; overflow: hidden;
}
.initiative-header::before {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.initiative-header i { font-size: 2.5rem; color: var(--white); margin-bottom: 0.8rem; display: block; }
.initiative-header h3 { color: var(--white); font-size: 1.1rem; font-weight: 700; }
.initiative-body { padding: 1.5rem 2rem; }
.initiative-body p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; margin-bottom: 1rem; }
.initiative-impact { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.imp-tag {
  background: rgba(4,106,56,0.1); color: var(--green);
  padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
}

/* ─── PILLAR CARDS ─── */
.pillar-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px; padding: 2rem 1.5rem;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.pillar-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--green-pale); transform: scaleX(0); transition: transform 0.3s;
}
.pillar-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-5px); border-color: rgba(255,255,255,0.4); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-num {
  font-family: 'Playfair Display', serif; font-size: 3rem;
  color: rgba(255,255,255,0.3); font-weight: 900; line-height: 1;
  margin-bottom: 0.5rem;
}
.pillar-icon {
  width: 50px; height: 50px; border-radius: 10px;
  background: var(--white); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
}
.pillar-card h3 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 0.7rem; }
.pillar-card p { color: rgba(255,255,255,0.85); font-size: 0.85rem; line-height: 1.6; }

/* ─── AWARD CARDS ─── */
.award-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px; padding: 1.8rem;
  transition: all 0.3s;
}
.award-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-4px); }
.award-icon { font-size: 2rem; margin-bottom: 1rem; }
.award-card h3 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.award-card p { color: rgba(255,255,255,0.9); font-size: 0.82rem; line-height: 1.5; }
.award-year { color: var(--white); font-size: 0.75rem; margin-top: 0.5rem; font-weight: 600; opacity: 0.8; }

/* ─── QUOTE BLOCK ─── */
.quote-block {
  border-left: 3px solid var(--green); padding: 1rem 1.5rem;
  background: rgba(4,106,56,0.05); border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}
.quote-block p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.15rem; color: var(--text-dark); line-height: 1.6;
}
.quote-block.white {
  border-left-color: var(--green-pale);
  background: rgba(255,255,255,0.08);
}
.quote-block.white p { color: var(--white); }

/* ─── PROGRESS BAR ─── */
.progress-item { margin-bottom: 1.5rem; }
.progress-label {
  display: flex; justify-content: space-between;
  margin-bottom: 0.5rem; font-size: 0.85rem; font-weight: 600; color: var(--text-dark);
}
.progress-bar-bg {
  height: 8px; background: var(--gray-light); border-radius: 10px; overflow: hidden;
}
.progress-bar-fill {
  height: 100%; border-radius: 10px;
  background: linear-gradient(to right, var(--saffron), var(--green));
  width: 0; transition: width 1.2s ease;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--green); padding: 5rem 3rem;
  text-align: center;
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white); margin-bottom: 1rem;
}
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 2rem; }

/* ─── CONTACT ─── */
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--saffron); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-item-text .label { color: var(--text-muted); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.contact-item-text .value { color: var(--text-dark); font-size: 0.9rem; font-weight: 600; margin-top: 0.2rem; }

/* ─── FORM ─── */
.contact-form {
  background: var(--white); border-radius: 16px;
  padding: 2.5rem; box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--gray-light);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif; font-size: 1.4rem;
  color: var(--text-dark); margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; color: var(--text-muted); font-size: 0.8rem;
  font-weight: 600; margin-bottom: 0.5rem; letter-spacing: 0.3px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-light); border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--text-dark); background: var(--white);
  transition: border-color 0.3s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(4, 106, 56, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.submit-btn {
  width: 100%; padding: 0.9rem;
  background: var(--saffron); color: var(--white);
  border: none; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  font-weight: 700; cursor: pointer; transition: all 0.3s;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  letter-spacing: 0.5px;
}
.submit-btn:hover { background: var(--green); transform: translateY(-2px); box-shadow: var(--shadow-theme); }

/* ─── GALLERY ─── */
.gallery-grid { columns: 4; column-gap: 1rem; }
.gallery-item {
  break-inside: avoid; margin-bottom: 1rem;
  border-radius: 10px; overflow: hidden;
  position: relative; cursor: pointer;
  background: var(--saffron-mid);
}
.gallery-item img { width: 100%; display: block; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(255, 103, 31, 0.9) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: 0.8rem; font-weight: 600; }
.gallery-placeholder {
  background: linear-gradient(145deg, var(--saffron-mid), var(--saffron-light));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); padding: 2rem 1rem; min-height: 150px;
}
.gallery-placeholder i { font-size: 2rem; margin-bottom: 0.5rem; color: var(--white); }
.gallery-placeholder span { font-size: 0.75rem; text-align: center; color: var(--white); font-weight: 500; }

/* ─── FOOTER ─── */
footer {
  background: var(--saffron);
  color: var(--white);
  padding: 5rem 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--white);
  margin-bottom: 0.5rem; line-height: 1.2;
}
.footer-brand span { color: var(--green-pale); }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.1rem;
  color: rgba(255,255,255,0.9); margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.85rem; color: rgba(255,255,255,0.8);
  line-height: 1.6; margin-bottom: 1.5rem; padding-right: 2rem;
}
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.2); text-decoration: none;
}
.footer-socials a:hover { background: var(--white); color: var(--saffron); transform: translateY(-3px); }
.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; margin-bottom: 1.5rem;
  position: relative; padding-bottom: 0.5rem;
}
.footer-heading::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 40px; height: 2px; background: var(--green-pale);
}
.footer-list { list-style: none; padding: 0; }
.footer-list li { margin-bottom: 0.8rem; }
.footer-list a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.85rem; transition: all 0.3s; display: inline-block;
}
.footer-list a:hover { color: var(--white); transform: translateX(5px); }
.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
  display: flex; gap: 1rem; margin-bottom: 1rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.8);
  align-items: flex-start; line-height: 1.5;
}
.footer-contact-list i { color: var(--green-pale); margin-top: 3px; font-size: 1rem; }
.footer-bottom {
  text-align: center; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-copy { color: rgba(255,255,255,0.7); font-size: 0.8rem; }

/* ─── ANIMATIONS ─── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,103,31,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(255,103,31,0); }
}

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .gallery-grid { columns: 3; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  nav.scrolled, nav.solid { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 4rem 1.5rem; }
  .page-hero { padding: 7rem 1.5rem 3rem; min-height: auto; }
  .timeline::before { left: 20px; }
  .tl-item { grid-template-columns: 1fr; }
  .tl-item:nth-child(odd) .tl-content,
  .tl-item:nth-child(even) .tl-content { grid-column: 1; text-align: left; padding-left: 3rem; }
  .tl-dot { left: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .footer-desc { padding-right: 0; }
}
@media (max-width: 600px) {
  .gallery-grid { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  footer { padding: 4rem 1.5rem 2rem; }
}

/* ─── HIDE GOOGLE TRANSLATE UI ─── */
body { top: 0 !important; }
.skiptranslate iframe { display: none !important; }
#goog-gt-tt { display: none !important; }
.goog-text-highlight { background-color: transparent !important; box-shadow: none !important; }
