/*========================
  NAVBAR
========================= */
/* --- Google Fonts --- */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  --primary-dark-green: #0a4a44;
  --cgreen: #0a4a44;
  /* Your custom green color matching the border/overlay tints */
  --font-editorial: "Cinzel", serif;
  --font-sans: "Plus Jakarta Sans", sans-serif;
  --bg-ivory: #f7f7f4;
  --transition-panel: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-ivory);
}

/* --- Base Transparent Navbar Configuration --- */
.premium-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 1000;
  background: #006356;
  border-bottom: 1px solid rgba(10, 74, 68, 0.08);
  transition: var(--transition-panel);
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- Premium Logo Integration & Ayatakruti Animation Frame --- */
.nav-logo-container {
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  text-decoration: none;
  height: auto;
  padding: 5px 0;
}

.premium-nav-logo-img {
  height: 120px;
  /* Balanced tracking proportion to match header depth */
  max-width: 200px;
  /* Fluid boundary protective layout constraints */
  width: auto;
  object-fit: contain;
  display: block;
  transform: scale(1);
  filter: brightness(0) invert(1);
  /* will-change removed for clarity */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

/* Horizontal linear flash mask engine */
.nav-logo-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.35) 50%,
      rgba(255, 255, 255, 0) 100);
  transform: skewX(-25deg);
  pointer-events: none;
  transition: none;
}

/* Header image actions triggers */
.nav-logo-container:hover .premium-nav-logo-img {
  transform: scale(1.03);
  filter: brightness(0) invert(0.85);
}

.nav-logo-container:hover::after {
  left: 200%;
  transition: left 0.9s cubic-bezier(0.3, 0, 0.2, 1);
}

/* --- Menu Grid Links System --- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 45px;
  height: 100%;
}

.nav-item {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 30px 0;
}

/* --- Action Button --- */
.nav-btn {
  background-color: var(--primary-dark-green);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
}

@media (hover: hover) and (pointer: fine) {
/* --- PURE CSS HOVER CONTROLS --- */
.premium-navbar:hover {
  background-color: #006356;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}
}

/* --- Base Mobile Toggle Button Styles with Background --- */
.nav-toggle {
  display: none;
  background-color: var(--primary-dark-green);
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  z-index: 1001;
  padding: 0;
  box-shadow: 0 4px 15px rgba(10, 74, 68, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-action-wrapper {
  display: none;
  width: 100%;
  margin-top: 30px;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 74, 68, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   RESPONSIVE LAYOUT RESPONSES (MODIFIED FOR INNER DRAWER NAVIGATION)
   ========================================================================== */

@media (max-width: 1024px) {
  .nav-container {
    padding: 0 30px;
  }

  .nav-toggle {
    display: flex;
  }

  .desktop-only-btn {
    display: none !important;
  }

  .mobile-action-wrapper {
    display: block;
  }

  .mobile-action-wrapper .nav-btn {
    display: block;
    text-align: center;
    width: 100%;
    padding: 14px 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--bg-ivory);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 110px 40px 40px 40px;
    gap: 0;
    overflow-y: auto;
    z-index: 999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-item {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid rgba(10, 74, 68, 0.06);
  }

  .nav-link {
    width: 100%;
    padding: 20px 0;
    justify-content: space-between;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 20px;
  }

  .premium-nav-logo-img {
    height: 70px;
    /* Smooth scale down to optimize viewport overhead on portable panels */
  }
}

/*========================
 HERO SECTION 
 =============================*/

/* --- Completely Isolated Contact Hero Section --- */
.contact-hero-area.light-theme {
  position: relative;
  background: linear-gradient(180deg, #f7f9f6 0%, #edf1ec 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 30px 90px 30px;
  overflow: hidden;
  text-align: center;
}

/* Background FX */
.contact-hero-area.light-theme .contact-hero-ambient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 450px;
  background: radial-gradient(circle, rgba(45, 67, 38, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.contact-hero-area.light-theme .contact-hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(45, 67, 38, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 67, 38, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
}

.contact-hero-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Typography Elements */
.contact-hero-subtitle {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #1aa497;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
  opacity: 0;
}

.contact-hero-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #003c34;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -2px;
  margin-bottom: 25px;
  opacity: 0;
}

.contact-hero-divider {
  width: 65px;
  height: 3px;
  background-color: #1aa497;
  margin: 0 auto 35px auto;
  border-radius: 2px;
  opacity: 0;
}

.contact-hero-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #3a4d35;
  font-size: 1.2rem;
  line-height: 1.85;
  font-weight: 400;
  max-width: 780px;
  margin: 0 auto;
  opacity: 0;
}

/* --- Isolated Animation Classes (Controlled by JS) --- */
.contact-hero-subtitle.contact-hero-active {
  animation: contactFadeInDown 0.8s ease forwards;
}

.contact-hero-title.contact-hero-active {
  animation: contactScaleUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.contact-hero-divider.contact-hero-active {
  animation: contactFadeIn 0.6s ease 0.2s forwards;
}

.contact-hero-desc.contact-hero-active {
  animation: contactFadeInUp 0.8s ease 0.4s forwards;
}

/* Keyframes with unique names */
@keyframes contactFadeInDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contactScaleUp {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes contactFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes contactFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero-area.light-theme {
    min-height: 50vh;
    padding-top: 130px;
  }

  .contact-hero-title {
    font-size: 3rem;
    letter-spacing: -1px;
  }

  .contact-hero-desc {
    font-size: 1.05rem;
  }
}

/* form */

/* --- Sea Green Typography Utilities --- */
.text-sea-green {
  color: #3b8a6a !important;
  /* Perfect Premium Sea Green Accent */
  font-weight: 800;
}

.text-sea-green-muted {
  color: #4a6b5d !important;
  /* Soft Sea Green for paragraphs */
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 45px;
  font-weight: 400;
}

/* --- Base Layout Architecture --- */
.contact-body-area {
  background-color: #fcfcf9;
  padding: 100px 30px;
  position: relative;
  overflow: hidden;
}

.contact-body-container {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.section-classic-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #003c34;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 15px;
}

.info-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Luxury Card Modifications with Sea Green Accents */
.luxury-info-card {
  background: #ffffff;
  border: 1px solid rgba(45, 67, 38, 0.06);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.luxury-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(59, 138, 106, 0.08);
  /* Sea green shadow tint */
  border-color: rgba(59, 138, 106, 0.25);
  /* Border turns Sea Green */
}

.card-icon-wrap {
  background: rgba(59, 138, 106, 0.05);
  /* Light Sea Green BG */
  color: #3b8a6a;
  /* Sea Green Icon */
  min-width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  transition: all 0.4s ease;
}

.luxury-info-card:hover .card-icon-wrap {
  background: #3b8a6a;
  /* Solid Sea Green on hover */
  color: #ffffff;
}

.card-text-wrap h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #003c34;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-text-wrap address,
.telephony-links a,
.email-click-line {
  font-style: normal;
  color: #4a5449;
  font-size: 1.05rem;
  line-height: 1.6;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.telephony-links a:hover,
.email-click-line:hover {
  color: #3b8a6a;
  /* Links hover effect in Sea Green */
}

.telephony-links a {
  margin-bottom: 4px;
}

/* --- Form Column Styles --- */
.luxury-form-wrapper {
  background: #ffffff;
  border: 1px solid rgba(45, 67, 38, 0.05);
  border-radius: 32px;
  padding: 50px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.03);
}

.form-panel-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #003c34;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.form-panel-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #6c756b;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 40px;
}

/* Floating Label & Input Focus Bar in Sea Green */
.interactive-form-element {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.form-input-group {
  position: relative;
  width: 100%;
}

.form-input-group input,
.form-input-group textarea {
  width: 100%;
  padding: 12px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #c9d0c8;
  color: #003c34;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input-group label {
  position: absolute;
  top: 12px;
  left: 0;
  color: #7d877c;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-input-group input:focus~label,
.form-input-group input:not(:placeholder-shown)~label,
.form-input-group textarea:focus~label,
.form-input-group textarea:not(:placeholder-shown)~label {
  top: -16px;
  font-size: 0.85rem;
  color: #3b8a6a;
  /* Label turns Sea Green when active */
  font-weight: 600;
  letter-spacing: 0.5px;
}

.input-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: #3b8a6a;
  /* Focus accent line turns Sea Green */
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-input-group input:focus~.input-bar,
.form-input-group textarea:focus~.input-bar {
  width: 100%;
}

/* Submit Button Customizations */
.form-submit-btn {
  background: #003c34;
  color: #ffffff;
  border: none;
  padding: 16px 35px;
  border-radius: 100px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: fit-content;
  margin-top: 10px;
  box-shadow: 0 10px 30px rgba(26, 45, 21, 0.15);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.submit-arrow {
  transition: transform 0.4s ease;
}

.form-submit-btn:hover {
  background: #3b8a6a;
  /* Button transforms to Sea Green on hover */
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(59, 138, 106, 0.3);
}

.form-submit-btn:hover .submit-arrow {
  transform: translate(4px, -4px);
}

/* Responsive Grid Engine */
@media (max-width: 1024px) {
  .contact-layout-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .contact-body-area {
    padding: 130px 20px 60px;
  }

  .luxury-form-wrapper {
    padding: 35px 25px;
    border-radius: 24px;
  }

  .section-classic-title {
    font-size: 2rem;
  }

  .luxury-info-card {
    padding: 25px;
    align-self: stretch;
    width: auto;
    overflow-wrap: break-word;
    word-break: break-word;
  }
}

/* map */


/* --- Professional Pure Map Architecture --- */
.contact-map-pure-area {
  background-color: #fcfcf9;
  /* Smooth background match */
  padding: 30px;
  position: relative;
}

.map-pure-container {
  max-width: 1400px;
  margin: 0 auto;
}

.map-pure-header {
  text-align: center;
  margin-bottom: 20px;
}

.map-pure-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #003c34;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

/* Sea Green Text Touch */
.text-sea-green {
  color: #3b8a6a !important;
  font-weight: 800;
}

.map-pure-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #4a6b5d;
  /* Muted Sea Green */
  font-size: 1.05rem;
  font-weight: 400;
}

/* Luxury Framed Map Wrapper */
.map-pure-frame-wrapper {
  width: 100%;
  background: #ffffff;
  border: 1px solid rgba(59, 138, 106, 0.08);
  /* Soft Sea Green Border Tint */
  padding: 14px;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(26, 45, 21, 0.03);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.map-pure-frame-wrapper iframe {
  display: block;
  width: 100%;
  border-radius: 18px;
  filter: grayscale(0.05) contrast(1.01);
  transition: filter 0.4s ease;
}

/* Smooth Interactive Hover Effects */
.map-pure-frame-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 40px 85px rgba(59, 138, 106, 0.08);
  /* Sea green aura bloom */
  border-color: rgba(59, 138, 106, 0.18);
}

.map-pure-frame-wrapper:hover iframe {
  filter: grayscale(0);
  /* Activates map colors fully on hover */
}

/* --- Fully Responsive Engine --- */
@media (max-width: 768px) {
  .contact-map-pure-area {
    padding: 50px 20px 80px 20px;
  }

  .map-pure-frame-wrapper {
    padding: 8px;
    border-radius: 20px;
  }

  .map-pure-frame-wrapper iframe {
    height: 420px;
    border-radius: 14px;
  }

  .map-pure-title {
    font-size: 1.8rem;
  }
}

/*========================
 FOOTER
========================= */

/* --- Imports & System Properties --- */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: #fcfcf9;
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* --- Core Configuration --- */
.premium-footer {
  background: linear-gradient(180deg, #006b5d 0%, #003c34 100%);
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* --- 1. Symmetrical CTA Area --- */
.cta-luxury-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 80px 30px;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
}

.luxury-badge {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  min-width: 70px;
  height: 70px;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  color: #d4af37;
  transition: transform 0.4s ease;
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px;
  animation: ripple 3s infinite linear;
}

.cta-inner h2 {
  font-family: "Cinzel", serif;
  color: #ffffff;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.5px;
  max-width: 750px;
}

/* --- 2. Interactive Premium Button --- */
.premium-btn {
  background-color: #ffffff;
  color: #001a17;
  text-decoration: none;
  padding: 18px 24px 18px 36px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 25px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.btn-arrow-wrap {
  background-color: #003c34;
  color: #ffffff;
  min-width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.btn-arrow-wrap i {
  position: absolute;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.arrow-secondary {
  transform: translateX(-40px);
}

.premium-btn:hover {
  background-color: #d4af37;
  color: #003c34;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.25);
}

.premium-btn:hover .btn-arrow-wrap {
  background-color: #ffffff;
  color: #003c34;
}

.premium-btn:hover .arrow-primary {
  transform: translateX(40px);
}

.premium-btn:hover .arrow-secondary {
  transform: translateX(0);
}

/* --- 3. Core Editorial Panel Area --- */
.footer-core-panel {
  background-color: #00201d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  position: relative;
}

.ambient-glow {
  position: absolute;
  top: 0;
  left: 10%;
  width: 40%;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 107, 93, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.footer-layout-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 2.4fr;
  gap: 30px;
}

/* डाव्या-उजव्या मार्जिनचे प्रमाण (Symmetric Symmetrical alignment) */
.expertise-column {
  margin-left: 15px;
}

.company-column {
  margin-left: 40px;
}

.corporate-hq-column {
  margin-left: auto;
  width: 100%;
  max-width: 380px;
}

.brand-logo-container {
  margin-bottom: 25px;
  margin-top: -20px;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.monumental-logo-img {
  height: 100px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

.brand-logo-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  pointer-events: none;
}

.brand-logo-container:hover .monumental-logo-img {
  transform: scale(1.04);
  filter: brightness(1.15) contrast(1.02);
}

.brand-logo-container:hover::after {
  left: 200%;
  transition: left 0.9s cubic-bezier(0.3, 0, 0.2, 1);
}

.brand-manifesto {
  color: #7a9690;
  line-height: 1.6;
}

.company-main-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  display: block;
  margin-bottom: 6px;
}

.company-tagline {
  color: #cce4df;
  font-size: 1.05rem;
  font-weight: 400;
  display: block;
}

.premium-social-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 25px;
}

.social-magnetic-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #a3c4be;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-magnetic-icon:hover {
  background: #d4af37;
  color: #00201d;
  border-color: #d4af37;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.column-title {
  color: #6e8a82;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;
  font-weight: 700;
}

/* नवीन स्टॅटिक लिस्ट विदाऊट लिंक डिझाइन */
.premium-static-list {
  list-style: none;
}

.premium-static-list li {
  color: #a3c4be;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 16px;
  position: relative;
  transition: color 0.3s ease;
}

/* कर्सर पॉईंटर नॉर्मल ठेवला आणि हलका होव्हर इफ़ेक्ट दिला */
.premium-static-list li:hover {
  color: #ffffff;
}

.hq-flex-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hq-address {
  font-style: normal;
  color: #a3c4be;
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 400;
}

.premium-communications .comms-line {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.premium-communications .email {
  font-size: 1.1rem;
  color: #d4af37;
  margin-bottom: 15px;
}

.phone-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.premium-communications .comms-line:hover {
  color: #ffffff;
  opacity: 0.8;
}

/* --- 4. Premium Signature Bar --- */
.footer-signature-bar {
  max-width: 1600px;
  margin: 60px auto 0 auto;
  padding-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #7a9690;
  font-size: 0.95rem;
  gap: 20px;
}

.legal-utilities {
  display: flex;
  align-items: center;
}

.utility-link {
  color: #6e8a82;
  text-decoration: none;
  transition: color 0.3s ease;
}

.utility-link:hover {
  color: #d4af37;
}

.utility-dot {
  width: 4px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin: 0 15px;
  display: inline-block;
}

/* --- Animations Keyframes --- */
@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* Responsive Grid Engine */
@media (max-width: 1200px) {
  .cta-luxury-wrapper {
    padding: 60px 30px;
  }

  .footer-core-panel {
    padding: 60px 30px 40px 30px;
  }

  .footer-layout-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .expertise-column,
  .company-column,
  .corporate-hq-column {
    margin-left: 0;
    max-width: 100%;
  }

  .brand-showcase,
  .contact-module {
    grid-column: span 3;
  }

  .hq-flex-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .cta-luxury-wrapper {
    padding: 50px 20px;
  }

  .footer-core-panel {
    padding: 60px 20px 40px 20px;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .cta-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .premium-btn {
    width: 100%;
    justify-content: space-between;
  }

  .footer-layout-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .brand-showcase,
  .nav-links-module,
  .contact-module {
    grid-column: span 1;
  }

  .hq-flex-container {
    flex-direction: column;
    gap: 20px;
  }

  .footer-signature-bar {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 20px;
  }
}

.premium-static-list li a {
  color: #a3c4be !important;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.premium-static-list li a:hover {
  color: #ffffff !important;
}