/* ============================================
   STYLE.CSS - ARASI24 MTC MATRIMONY
   Premium | Luxury | Traditional
   ============================================ */

/* ----- GLOBAL VARIABLES ----- */
:root {
  --primary-maroon: #7B1023;
  --primary-maroon-dark: #5a0c1a;
  --secondary-gold: #C89B3C;
  --secondary-gold-light: #d4a74a;
  --cream-bg: #FFF8F2;
  --white: #FFFFFF;
  --text-dark: #2c1a3b;
  --text-light: #F4E8D5;
  --footer-bg: #65101C;
  --shadow-soft: 0 5px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(123, 16, 35, 0.15);
  --shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.12);
  --transition-smooth: 0.4s ease;
  --gold: #C89B2C;
  --dark-gold: #8C5A00;
  --brown: #5B3A00;
  --cream: #FFF8E8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: rgb(250, 242, 229);
  color: var(--text-dark);
}

/* ============================================
   HEADER - PREMIUM LUXURY (GOLD THEME)
   ============================================ */
.site-header {
  background: var(--white);
  height: 90px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  position: relative;
  z-index: 1050;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(200,155,44,0.2);
  padding: 15px 0;
}

.header-row {
  width: 100%;
  height: 90px;
}

/* ----- LEFT SIDE ----- */
.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}

/* Golden Toggle Button */
.golden-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(145deg, #C89B2C, #A87A1A);
  border: none;
  box-shadow: 0 4px 15px rgba(200,155,44,0.4), inset 0 2px 4px rgba(255,255,200,0.3);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.golden-toggle:hover {
  transform: rotate(90deg) scale(1.05);
  box-shadow: 0 6px 25px rgba(200,155,44,0.6);
}
.golden-toggle .toggle-icon {
  line-height: 1;
  transition: transform 0.4s;
}
.golden-toggle.active .toggle-icon {
  transform: rotate(180deg);
}

/* Logo */
.logo-img {
  height: 65px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* Brand Wrapper */
.brand-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex: 1;
  min-width: 0;
}

.brand-title {
  font-family: 'Cinzel', 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(180deg, #C89B2C 0%, #A87A1A 40%, #8C5A00 70%, #5B3A00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(139,69,19,0.2);
  letter-spacing: 1px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C89B2C, transparent);
  opacity: 0.5;
}
.brand-title .brand-highlight {
  font-weight: 400;
  -webkit-text-fill-color: #8C5A00;
  color: #8C5A00;
}
.brand-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 4px;
  color: #C89B2C;
  margin: 0;
  text-transform: uppercase;
  opacity: 0.9;
  white-space: nowrap;
}

/* ----- RIGHT SIDE ----- */
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  height: 100%;
}

.btn-login,
.btn-register {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 32px;
  height: 46px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-login {
  background: transparent;
  border: 2px solid #C89B2C;
  color: #C89B2C;
}
.btn-login:hover {
  background: #C89B2C;
  color: #fff;
  box-shadow: 0 4px 15px rgba(200,155,44,0.3);
}

.btn-register {
  background: linear-gradient(135deg, #C89B2C, #A87A1A);
  border: none;
  color: #fff;
  box-shadow: 0 4px 15px rgba(200,155,44,0.3);
}
.btn-register:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 25px rgba(200,155,44,0.5);
}

/* ============================================
   DROPDOWN PANEL – CONTACT ONLY
   ============================================ */
.golden-dropdown {
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 5px solid #C89B2C;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border-radius: 0 0 20px 20px;
  padding: 40px 0 30px;
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s ease;
}
.golden-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Columns */
.dropdown-heading {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: #8C5A00;
  margin-bottom: 18px;
  border-bottom: 2px solid rgba(200,155,44,0.2);
  padding-bottom: 8px;
}
.dropdown-heading i {
  color: #C89B2C;
  margin-right: 8px;
}

.contact-list,
.hours-list {
  list-style: none;
  padding: 0;
}
.contact-list li,
.hours-list li {
  padding: 6px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-list li i {
  color: #C89B2C;
  width: 22px;
}
.hours-list li span {
  font-weight: 600;
  min-width: 120px;
}
.hours-list li .closed {
  color: #b00;
  font-weight: 600;
}

.action-buttons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}
.action-buttons a {
  font-family: 'Poppins', sans-serif;
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-call {
  background: #C89B2C;
  color: #fff;
}
.btn-call:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(200,155,44,0.3);
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #C89B2C;
  color: #C89B2C;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icon:hover {
  background: #C89B2C;
  color: #fff;
  transform: translateY(-4px) rotate(6deg);
  box-shadow: 0 8px 25px rgba(200,155,44,0.3);
}

/* ============================================
   NAVIGATION BAR – ORIGINAL NAV
   ============================================ */
.navbar-main {
  background: var(--primary-maroon);
  min-height: 60px;
  padding: 0;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
}

.navbar-main .navbar-nav .nav-item .nav-link {
  padding: 15px 30px !important;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white) !important;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  position: relative;
  text-transform: uppercase;
  border: none;
}

.navbar-main .navbar-nav .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--secondary-gold);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-main .navbar-nav .nav-item .nav-link:hover::after,
.navbar-main .navbar-nav .nav-item .nav-link.active::after {
  width: 60%;
}

.navbar-main .navbar-nav .nav-item .nav-link:hover,
.navbar-main .navbar-nav .nav-item .nav-link.active {
  color: var(--secondary-gold) !important;
}

.navbar-main .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
  padding: 8px 12px;
  margin: 8px 0;
}

.navbar-main .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   HERO SECTION - FIXED FOR RESPONSIVE
   ============================================ */
.hero-section {
  padding: 0;
  margin: 0;
  overflow: hidden;
  width: 100%;
}

.hero-banner {
  width: 100%;
  line-height: 0;
  max-width: 100%;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-width: 100%;
}

/* ============================================
   SEARCH CARD - RESPONSIVE FIXES INCLUDED
   ============================================ */
.search-section {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  margin-bottom: 40px;
  padding: 0 15px;
}

.search-card-wrapper {
  display: flex;
  justify-content: center;
}

.search-card {
  background: var(--white);
  border-radius: 20px;
  padding: 35px 40px;
  box-shadow: var(--shadow-heavy);
  width: 100%;
  max-width: 1200px;
}

.search-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-maroon);
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.search-form .row {
  align-items: flex-end;
}

.search-label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.search-select {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 2px solid #e8e0d8;
  background: var(--white);
  color: var(--text-dark);
  transition: var(--transition-smooth);
  width: 100%;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237B1023' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.search-select:focus {
  border-color: var(--secondary-gold);
  box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.15);
  outline: none;
}

.btn-search {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 30px;
  height: 55px;
  background: var(--primary-maroon);
  color: var(--white);
  border: none;
  border-radius: 12px;
  width: 100%;
  transition: var(--transition-smooth);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-search:hover {
  background: var(--secondary-gold);
  color: var(--primary-maroon-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(123, 16, 35, 0.25);
}

/* ----- Responsive fixes for search card ----- */
@media (max-width: 992px) {
  .search-section {
    margin-top: -40px;
    padding: 0 10px;
  }
  .search-card {
    padding: 25px 20px;
  }
  .search-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .search-section {
    margin-top: -30px;
  }
  .search-card {
    padding: 20px 15px;
    border-radius: 16px;
  }
  .search-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .search-form .row {
    align-items: stretch;
    gap: 10px;
  }
  .search-form .row > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .search-label {
    font-size: 13px;
  }
  .search-select {
    font-size: 14px;
    padding: 10px 14px;
  }
  .btn-search {
    height: 48px;
    font-size: 15px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .search-section {
    margin-top: -20px;
  }
  .search-card {
    padding: 15px 12px;
  }
  .search-title {
    font-size: 18px;
  }
  .search-select {
    font-size: 13px;
    padding: 8px 12px;
  }
  .btn-search {
    height: 42px;
    font-size: 14px;
    padding: 8px 16px;
  }
}

/* ============================================
   FEATURES
   ============================================ */
.features-section {
  background: rgb(250, 242, 229);
  padding: 80px 0;
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--secondary-gold), var(--primary-maroon), var(--secondary-gold), transparent);
}

.feature-card {
  background: var(--white);
  border-radius: 18px;
  padding: 30px 20px 25px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary-gold);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-maroon), var(--secondary-gold));
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.feature-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--secondary-gold);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary-maroon);
  transition: var(--transition-smooth);
  position: relative;
}

.feature-card:hover .feature-icon-circle {
  transform: rotate(-10deg) scale(1.05);
  border-color: var(--primary-maroon);
  background: var(--cream-bg);
  box-shadow: 0 0 0 8px rgba(200, 155, 60, 0.12);
}

.feature-icon-circle i {
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-circle i {
  transform: scale(1.1);
}

.feature-heading {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-maroon);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.feature-description {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   WHY CHOOSE
   ============================================ */
.why-choose-section {
  background: #FFFDF8;
  padding: 100px 0;
  position: relative;
}

.why-choose-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--secondary-gold), var(--primary-maroon), var(--secondary-gold), transparent);
}

.why-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.why-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.why-image-wrapper:hover .why-image {
  transform: scale(1.03);
}

.why-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(0deg, rgba(123, 16, 35, 0.15), transparent);
  pointer-events: none;
}

.why-heading {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-maroon);
  line-height: 1.2;
  margin-bottom: 20px;
}

.why-heading .highlight-gold {
  color: var(--secondary-gold);
  font-style: italic;
}

.why-divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
  justify-content: flex-start;
}

.divider-line-gold {
  flex: 1;
  height: 2px;
  max-width: 60px;
  background: linear-gradient(90deg, var(--secondary-gold), transparent);
}

.divider-icon-gold {
  font-size: 18px;
  color: var(--secondary-gold);
  animation: pulse 2s infinite;
}

.why-reasons {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.reason-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 5px 0;
  transition: var(--transition-smooth);
}

.reason-item:hover {
  transform: translateX(8px);
}

.reason-icon-wrapper {
  flex-shrink: 0;
  margin-top: 2px;
}

.reason-icon-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--cream-bg);
  border: 2.5px solid var(--secondary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-maroon);
  transition: var(--transition-smooth);
}

.reason-item:hover .reason-icon-circle {
  background: var(--primary-maroon);
  border-color: var(--primary-maroon);
  color: var(--white);
  transform: rotate(-10deg) scale(1.08);
  box-shadow: 0 8px 25px rgba(123, 16, 35, 0.2);
}

.reason-heading {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-maroon);
  margin-bottom: 5px;
}

.reason-description {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   STATISTICS
   ============================================ */
.stats-section {
  background: var(--primary-maroon);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stat-card {
  text-align: center;
  padding: 20px 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--secondary-gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
  font-size: 40px;
  color: var(--secondary-gold);
  margin-bottom: 12px;
  transition: var(--transition-smooth);
  display: block;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(-5deg);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 5px;
  display: block;
}

.stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #F6E8C5;
  letter-spacing: 0.5px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--cream-bg);
  padding: 70px 0;
  position: relative;
}

.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: relative;
}

.cta-leaf {
  flex-shrink: 0;
  opacity: 0.6;
}

.cta-leaf img {
  max-height: 120px;
  width: auto;
}

.cta-leaf-left img {
  transform: rotate(-10deg);
}

.cta-leaf-right img {
  transform: rotate(10deg) scaleX(-1);
}

.cta-content {
  text-align: center;
  flex: 1;
  padding: 0 20px;
}

.cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-maroon);
  line-height: 1.2;
  margin-bottom: 12px;
}

.cta-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #555;
  margin-bottom: 25px;
}

.btn-cta {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 40px;
  background: var(--primary-maroon);
  color: var(--white);
  border: none;
  border-radius: 12px;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(123, 16, 35, 0.25);
}

.btn-cta:hover {
  background: var(--secondary-gold);
  color: var(--primary-maroon-dark);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(123, 16, 35, 0.35);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  padding: 80px 0;
  background: rgb(250, 242, 229);
}

.contact-heading {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-maroon);
  margin-bottom: 10px;
}

.contact-heading span {
  color: var(--secondary-gold);
}

.contact-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #777;
  margin-bottom: 40px;
}

.contact-form .form-control {
  font-family: 'Poppins', sans-serif;
  border-radius: 12px;
  padding: 14px 20px;
  border: 2px solid #e8e0d8;
  transition: var(--transition-smooth);
  font-size: 15px;
}

.contact-form .form-control:focus {
  border-color: var(--secondary-gold);
  box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.12);
  outline: none;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.btn-submit {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 40px;
  background: var(--primary-maroon);
  color: var(--white);
  border: none;
  border-radius: 12px;
  transition: var(--transition-smooth);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-submit:hover {
  background: var(--secondary-gold);
  color: var(--primary-maroon-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(123, 16, 35, 0.2);
}

.contact-map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  min-height: 350px;
  background: #f8f8f8;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
  display: block;
}

/* ============================================
   ALERT MESSAGES
   ============================================ */
.alert {
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  padding: 15px 20px;
  margin-bottom: 20px;
}

.alert-info {
  background: #e8f4fd;
  border-color: #b8d4e8;
  color: #1a5276;
}

.alert-success {
  background: #e8f8f0;
  border-color: #b8e0cc;
  color: #1a6e3a;
}

.alert-danger {
  background: #fde8e8;
  border-color: #f5c6c6;
  color: #721c24;
}

.alert-warning {
  background: #fff3cd;
  border-color: #ffeeba;
  color: #856404;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-main {
  background: var(--footer-bg);
  padding: 70px 0 0;
  color: var(--text-light);
  position: relative;
}

.footer-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--secondary-gold), var(--secondary-gold-light), var(--secondary-gold), transparent);
}

.footer-col {
  padding-right: 15px;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary-gold-light);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary-gold);
  border-radius: 2px;
}

.footer-about {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #D4C5B5;
  margin-bottom: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #D4C5B5;
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
  display: inline-block;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-gold);
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--secondary-gold-light);
  transform: translateX(6px);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.footer-contact li {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #D4C5B5;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  transition: var(--transition-smooth);
}

.footer-contact li:hover {
  color: var(--secondary-gold-light);
  transform: translateX(4px);
}

.footer-contact li i {
  width: 20px;
  color: var(--secondary-gold);
  font-size: 16px;
  text-align: center;
  transition: var(--transition-smooth);
}

.footer-contact li:hover i {
  transform: rotate(-10deg) scale(1.1);
}

.footer-contact li span {
  word-break: break-word;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 5px;
  flex-wrap: wrap;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4C5B5;
  font-size: 18px;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--secondary-gold);
  color: var(--primary-maroon-dark);
  border-color: var(--secondary-gold);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 25px rgba(200, 155, 60, 0.3);
}

.footer-bottom {
  margin-top: 40px;
  padding-bottom: 20px;
}

.footer-bottom hr {
  border-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.copyright {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #D4C5B5;
  text-align: center;
  margin: 0;
  opacity: 0.8;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-maroon);
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.1);
  background: var(--secondary-gold);
  color: var(--primary-maroon-dark);
}

.whatsapp-btn {
  background: #25D366;
}

.whatsapp-btn:hover {
  background: #1da851;
  color: #fff;
}

.call-btn {
  background: #0077b5;
}

.call-btn:hover {
  background: #005f8a;
  color: #fff;
}

/* ============================================
   REGISTER PAGE - CUSTOM FORM STYLES
   ============================================ */
.custom-input {
  font-family: 'Poppins', sans-serif;
  border-radius: 12px;
  padding: 14px 18px;
  border: 2px solid #e8e0d8;
  transition: var(--transition-smooth);
  font-size: 15px;
  width: 100%;
  background: #fafafa;
}

.custom-input:focus {
  border-color: var(--secondary-gold);
  box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.12);
  outline: none;
  background: #fff;
}

.custom-select {
  font-family: 'Poppins', sans-serif;
  border-radius: 12px;
  padding: 14px 18px;
  border: 2px solid #e8e0d8;
  transition: var(--transition-smooth);
  font-size: 15px;
  width: 100%;
  background: #fafafa;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237B1023' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.custom-select:focus {
  border-color: var(--secondary-gold);
  box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.12);
  outline: none;
  background: #fff;
}

.btn-register-submit {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 40px;
  background: var(--primary-maroon);
  color: #fff;
  border: none;
  border-radius: 12px;
  width: 100%;
  transition: var(--transition-smooth);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-register-submit:hover {
  background: var(--secondary-gold);
  color: var(--primary-maroon-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(123, 16, 35, 0.2);
}

.btn-register-submit:active {
  transform: translateY(0);
}

.g-recaptcha {
  display: flex;
  justify-content: center;
  margin: 5px 0;
}

/* ============================================
   LOGIN PAGE
   ============================================ */
.btn-login-submit {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 40px;
  background: var(--primary-maroon);
  color: #fff;
  border: none;
  border-radius: 12px;
  width: 100%;
  transition: var(--transition-smooth);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-login-submit:hover {
  background: var(--secondary-gold);
  color: var(--primary-maroon-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(123, 16, 35, 0.2);
}

.btn-login-submit:active {
  transform: translateY(0);
}

.form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 2px solid #ccc;
  border-radius: 4px;
}

.form-check-input:checked {
  background-color: var(--secondary-gold);
  border-color: var(--secondary-gold);
}

/* ============================================
   DASHBOARD - CUSTOM STYLES
   ============================================ */
.dashboard-card {
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  color: #fff;
  text-decoration: none;
  display: block;
}

.dashboard-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.dashboard-card .card-icon {
  font-size: 40px;
  opacity: 0.8;
}

.dashboard-card .card-title {
  margin: 0;
  font-weight: 700;
  font-size: 28px;
}

.dashboard-card .card-label {
  margin: 5px 0 0 0;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.card-16-veedu {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.card-8-veedu {
  background: linear-gradient(135deg, #17a2b8, #00c4ff);
}

.card-male {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.card-female {
  background: linear-gradient(135deg, #17a2b8, #00c4ff);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-custom {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  background: transparent;
}

.breadcrumb-custom li {
  color: #fff;
}

.breadcrumb-custom a {
  color: var(--secondary-gold);
  text-decoration: none;
}

.breadcrumb-custom a:hover {
  text-decoration: underline;
}

.breadcrumb-custom .separator {
  color: #fff;
  opacity: 0.6;
}

.breadcrumb-custom .active {
  color: #fff;
  opacity: 0.8;
}

/* ============================================
   RESPONSIVE – MOBILE FIRST
   ============================================ */
@media (max-width: 992px) {
  .site-header { height: 80px; }
  .header-row { height: 80px; }
  .brand-title { font-size: 1.5rem; }
  .brand-tagline { font-size: 0.55rem; letter-spacing: 2px; }
  .btn-login, .btn-register { padding: 10px 20px; font-size: 0.8rem; height: 40px; }
  .golden-toggle { width: 44px; height: 44px; font-size: 24px; }
  .logo-img { height: 50px; }
  .golden-dropdown { top: 80px; padding: 30px 0; }
  .page-banner h1 { font-size: 28px !important; }
  .dashboard-card { padding: 20px 15px; }
  .dashboard-card .card-title { font-size: 22px; }
  .dashboard-card .card-label { font-size: 16px; }
  .dashboard-card .card-icon { font-size: 32px; }
}

@media (max-width: 768px) {
  .site-header { height: 70px; }
  .header-row { height: 70px; }
  .brand-title { 
    font-size: 1rem; 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
  }
  .brand-title .brand-highlight { display: inline; }
  .brand-tagline { display: none; }
  .header-left { gap: 8px; }
  .header-right { gap: 6px; }
  .btn-login, .btn-register { 
    padding: 5px 12px; 
    font-size: 0.65rem; 
    height: 30px; 
    border-radius: 30px;
  }
  .btn-login i, .btn-register i { 
    font-size: 0.6rem;
    margin-right: 3px;
  }
  .golden-toggle { width: 36px; height: 36px; font-size: 18px; }
  .logo-img { height: 35px; }
  .golden-dropdown { 
    top: 70px; 
    padding: 20px 15px; 
    border-radius: 0 0 12px 12px;
  }
  .golden-dropdown .row { flex-direction: column; gap: 20px; }
  .dropdown-heading { font-size: 0.95rem; }
  .contact-list li, .hours-list li { font-size: 0.8rem; }
  .social-icon { width: 36px; height: 36px; font-size: 14px; }
  .action-buttons a { padding: 6px 14px; font-size: 0.75rem; }
  .page-banner h1 { font-size: 22px !important; }
  .page-banner p { font-size: 14px !important; }
  .features-section { padding: 50px 0; }
  .feature-card { padding: 20px 15px; }
  .feature-icon-circle { width: 55px; height: 55px; font-size: 22px; }
  .why-choose-section { padding: 50px 0; }
  .why-image { height: 220px; }
  .why-heading { font-size: 24px; text-align: center; }
  .why-divider { justify-content: center; }
  .reason-item { flex-direction: column; align-items: center; text-align: center; }
  .stats-section { padding: 40px 0; }
  .stat-number { font-size: 32px; }
  .stat-label { font-size: 14px; }
  .cta-section { padding: 40px 0; }
  .cta-heading { font-size: 26px; }
  .cta-subtitle { font-size: 16px; }
  .btn-cta { padding: 12px 30px; font-size: 15px; }
  .contact-section { padding: 50px 0; }
  .contact-heading { font-size: 28px; }
  .contact-subtitle { font-size: 16px; }
  .contact-map-wrapper { min-height: 200px; margin-top: 20px; }
  .footer-main { padding: 40px 0 0; }
  .footer-col { text-align: center; padding-right: 0; }
  .footer-heading { font-size: 18px; }
  .footer-heading::after { left: 50%; transform: translateX(-50%); }
  .footer-contact li { justify-content: center; }
  .footer-social { justify-content: center; }
  .social-icon { width: 36px; height: 36px; font-size: 14px; }
  .copyright { font-size: 13px; }
  .float-btn { width: 45px; height: 45px; font-size: 20px; }
  .floating-buttons { bottom: 15px; right: 15px; gap: 10px; }
  .dashboard-card { padding: 16px 12px; }
  .dashboard-card .card-title { font-size: 20px; }
  .dashboard-card .card-label { font-size: 14px; }
  .dashboard-card .card-icon { font-size: 28px; }
}

@media (max-width: 480px) {
  .site-header { height: 60px; }
  .header-row { height: 60px; }
  .brand-title { 
    font-size: 0.75rem; 
    max-width: 80px;
  }
  .brand-title .brand-highlight { display: block; font-size: 0.6rem; }
  .brand-tagline { display: none; }
  .header-left { gap: 5px; }
  .header-right { gap: 4px; }
  .btn-login, .btn-register { 
    padding: 3px 8px; 
    font-size: 0.5rem; 
    height: 24px; 
    border-radius: 20px;
  }
  .btn-login i, .btn-register i { 
    display: none; 
  }
  .golden-toggle { width: 30px; height: 30px; font-size: 14px; }
  .logo-img { height: 28px; }
  .golden-dropdown { 
    top: 60px; 
    padding: 15px 10px; 
  }
  .dropdown-heading { font-size: 0.85rem; }
  .contact-list li, .hours-list li { font-size: 0.7rem; }
  .social-icon { width: 30px; height: 30px; font-size: 12px; }
  .action-buttons a { padding: 4px 10px; font-size: 0.65rem; }
  .page-banner { padding: 30px 0 !important; }
  .page-banner h1 { font-size: 18px !important; }
  .page-banner p { font-size: 12px !important; }
  .dashboard-card { padding: 12px 10px; }
  .dashboard-card .card-title { font-size: 16px; }
  .dashboard-card .card-label { font-size: 12px; }
  .dashboard-card .card-icon { font-size: 22px; }
}