/* ============================================================
   DIVINE GROUP ENTERPRISE CMS — Frontend Stylesheet
   Premium Corporate Real Estate Design
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --gold:        #b8860b;
  --gold-light:  #d4a017;
  --gold-dark:   #8b6508;
  --navy:        #0a1628;
  --navy-mid:    #1a3a5c;
  --navy-light:  #2d5a8e;
  --white:       #ffffff;
  --off-white:   #f8f9fa;
  --light-bg:    #f4f6f9;
  --text:        #2c3e50;
  --text-muted:  #6c757d;
  --border:      rgba(0,0,0,0.08);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.15);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body:   'Inter', sans-serif;
  --font-display:'Playfair Display', serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; transition: var(--transition); }

/* ===== PAGE LOADER ===== */
#page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo  { height: 60px; margin-bottom: 24px; filter: brightness(10); }
.loader-bar   { width: 200px; height: 3px; background: rgba(255,255,255,0.15); border-radius: 3px; overflow: hidden; }
.loader-progress {
  height: 100%; width: 0; background: var(--gold);
  animation: loaderFill 1.2s ease forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar a         { color: rgba(255,255,255,0.75); }
.top-bar a:hover   { color: var(--gold-light); }
.top-bar .social-icon {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  transition: var(--transition);
}
.top-bar .social-icon:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* ===== NAVBAR ===== */
.premium-navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0;
  transition: var(--transition);
  position: sticky; top: 0; z-index: 1000;
}
.premium-navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}
.navbar-brand    { padding: 12px 0; }
.navbar-logo     { height: 52px; width: auto; transition: var(--transition); }
.brand-text      { font-size: 1.4rem; font-weight: 800; color: var(--navy); font-family: var(--font-display); }

.premium-navbar .nav-link {
  color: var(--text) !important;
  font-weight: 500;
  padding: 20px 16px !important;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  position: relative;
  transition: var(--transition);
}
.premium-navbar .nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--gold);
  transition: var(--transition);
}
.premium-navbar .nav-link:hover::after,
.premium-navbar .nav-item.active .nav-link::after { left: 16px; right: 16px; }
.premium-navbar .nav-link:hover { color: var(--gold) !important; }

.btn-nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff !important;
  border: none;
  padding: 10px 22px !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13.5px;
  box-shadow: 0 4px 15px rgba(184,134,11,0.3);
  transition: var(--transition);
}
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,134,11,0.4);
  color: #fff !important;
}

.dropdown-menu-premium {
  border: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 220px;
  animation: dropdownIn 0.2s ease;
}
@keyframes dropdownIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.dropdown-menu-premium .dropdown-item {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.dropdown-menu-premium .dropdown-item:hover { background: rgba(184,134,11,0.08); color: var(--gold); }

/* Mobile Nav */
.mobile-nav { width: 300px !important; }
.mobile-nav-list .nav-item { border-bottom: 1px solid var(--border); }
.mobile-nav-list .nav-link { padding: 14px 0 !important; font-weight: 500; color: var(--text) !important; display: flex; align-items: center; }
.mobile-sub-nav { list-style: none; padding: 0 0 8px 16px; }
.mobile-sub-nav li a { display: block; padding: 8px 0; color: var(--text-muted); font-size: 14px; }
.mobile-social a { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--text-muted); margin-right: 8px; }
.navbar-toggler  { border: none; padding: 4px; }
.toggler-line    { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero-section { position: relative; overflow: hidden; }
.heroSwiper   { height: 100vh; min-height: 600px; }
.hero-slide   {
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-overlay { position: absolute; inset: 0; }
.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-block; margin-bottom: 20px;
  background: rgba(184,134,11,0.9);
  color: #fff; padding: 8px 24px;
  border-radius: 50px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700; color: #fff;
  line-height: 1.2; margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  max-width: 600px; margin: 0 auto 32px;
}
.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff !important; border: none;
  padding: 14px 36px; border-radius: 50px;
  font-weight: 600; font-size: 15px;
  box-shadow: 0 6px 24px rgba(184,134,11,0.4);
  transition: var(--transition);
  display: inline-block;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(184,134,11,0.5); }
.btn-hero-outline {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  color: #fff !important; border: 1px solid rgba(255,255,255,0.4);
  padding: 14px 36px; border-radius: 50px;
  font-weight: 600; font-size: 15px;
  transition: var(--transition); display: inline-block;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.7); }

.hero-nav { color: rgba(255,255,255,0.9) !important; }
.hero-nav::after, .hero-nav::before { border-color: rgba(255,255,255,0.9) !important; }
.hero-pagination .swiper-pagination-bullet { background: rgba(255,255,255,0.5) !important; width: 10px !important; height: 10px !important; }
.hero-pagination .swiper-pagination-bullet-active { background: var(--gold) !important; width: 30px !important; border-radius: 5px !important; }

.hero-scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  text-align: center; color: rgba(255,255,255,0.7);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 2; animation: bounce 2s infinite;
}
.scroll-mouse {
  width: 22px; height: 34px; border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px; margin: 0 auto 6px; position: relative;
}
.scroll-wheel {
  width: 4px; height: 8px; background: rgba(255,255,255,0.7);
  border-radius: 2px; margin: 4px auto 0;
  animation: wheelScroll 1.5s infinite;
}
@keyframes wheelScroll { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(12px); opacity: 0; } }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-6px); } }

/* ===== STATS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
}
.stat-card {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.stat-card:last-child   { border-right: none; }
.stat-card:hover        { background: rgba(255,255,255,0.04); }
.stat-icon              { font-size: 28px; color: var(--gold); margin-bottom: 12px; }
.stat-number            { font-size: 2.5rem; font-weight: 800; color: #fff; font-family: var(--font-display); line-height: 1; }
.stat-label             { color: rgba(255,255,255,0.65); font-size: 13.5px; margin-top: 6px; font-weight: 500; }

/* ===== SECTION UTILITIES ===== */
.section-pad      { padding: 90px 0; }
.bg-light-section { background: var(--light-bg); }
.bg-dark-section  { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }

.section-label {
  display: inline-block;
  color: var(--gold); font-weight: 600;
  font-size: 13px; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-label.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.2;
  color: var(--navy); margin-bottom: 16px;
}
.section-subtitle { color: var(--text-muted); font-size: 16px; max-width: 550px; margin: 0 auto; }
.section-header   { margin-bottom: 50px; }

/* ===== ABOUT SECTION ===== */
.about-img-wrap  { position: relative; }
.about-img       { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-exp-badge {
  position: absolute; bottom: 30px; left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff; padding: 20px 24px;
  border-radius: var(--radius); text-align: center;
  box-shadow: 0 10px 30px rgba(184,134,11,0.4);
}
.exp-num { display: block; font-size: 2rem; font-weight: 800; line-height: 1; font-family: var(--font-display); }
.exp-txt { font-size: 12px; font-weight: 600; line-height: 1.4; opacity: 0.9; }
.video-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: none;
  font-size: 20px; color: var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: var(--transition); cursor: pointer;
}
.video-play-btn:hover { transform: translate(-50%, -50%) scale(1.1); background: #fff; }

.section-desc  { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; }
.feature-chip  {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: rgba(184,134,11,0.06);
  border: 1px solid rgba(184,134,11,0.15);
  border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--navy);
  transition: var(--transition);
}
.feature-chip i        { color: var(--gold); font-size: 15px; }
.feature-chip:hover    { background: rgba(184,134,11,0.1); }

.btn-primary-custom {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff; border: none;
  padding: 13px 30px; border-radius: 50px;
  font-weight: 600; font-size: 14.5px;
  transition: var(--transition); display: inline-block;
}
.btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,22,40,0.3); color: #fff; }
.btn-outline-custom {
  border: 2px solid var(--navy); color: var(--navy);
  padding: 11px 28px; border-radius: 50px;
  font-weight: 600; font-size: 14.5px;
  transition: var(--transition); display: inline-block;
  background: transparent;
}
.btn-outline-custom:hover { background: var(--navy); color: #fff; }

/* ===== PROJECT TABS ===== */
.project-tab-nav      { gap: 8px; justify-content: center; border: none; flex-wrap: wrap; }
.tab-btn              {
  padding: 10px 24px; border-radius: 50px;
  border: 2px solid var(--border); background: #fff;
  font-weight: 600; font-size: 14px;
  color: var(--text); cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active,
.tab-btn:hover        { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ===== PROJECT CARDS ===== */
.project-card         {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.project-card:hover   { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.project-card-img     { position: relative; overflow: hidden; height: 230px; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .project-card-img img { transform: scale(1.06); }
.project-img-placeholder {
  width: 100%; height: 100%; background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: rgba(0,0,0,0.1);
}
.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.8), transparent);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 24px;
  opacity: 0; transition: var(--transition);
}
.project-card:hover .project-card-overlay { opacity: 1; }
.project-badge-featured {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: #fff;
  padding: 4px 12px; border-radius: 50px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
}
.project-badge-cat {
  position: absolute; top: 14px; right: 14px;
  background: rgba(10,22,40,0.8); color: #fff;
  padding: 4px 12px; border-radius: 50px;
  font-size: 11px; font-weight: 600;
}
.project-card-body   { padding: 22px; flex: 1; }
.project-title       { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.project-title a:hover { color: var(--gold); }
.project-location    { color: var(--text-muted); font-size: 13.5px; margin-bottom: 10px; }
.project-desc        { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.project-card-footer { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; border-top: 1px solid var(--border); padding-top: 14px; }
.project-price       { font-weight: 700; color: var(--gold); font-size: 15px; }
.project-meta        { display: flex; gap: 12px; }
.project-meta span   { font-size: 12px; color: var(--text-muted); }
.project-meta i      { color: var(--gold); }

/* ===== WHY CHOOSE ===== */
.why-card {
  padding: 36px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.why-card:hover   { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(184,134,11,0.2); }
.why-icon         { width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(135deg, rgba(184,134,11,0.1), rgba(184,134,11,0.05)); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--gold); margin-bottom: 20px; }
.why-title        { font-weight: 700; font-size: 17px; margin-bottom: 10px; color: var(--navy); }
.why-desc         { color: var(--text-muted); font-size: 14.5px; line-height: 1.7; }

/* ===== VIDEO SECTION ===== */
.video-thumb-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.video-thumb      { width: 100%; display: block; }
.video-thumb-placeholder { height: 300px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; font-size: 60px; color: rgba(255,255,255,0.3); border-radius: var(--radius-lg); }
.video-play-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 72px; height: 72px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.95);
  font-size: 24px; color: var(--gold); cursor: pointer;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3); transition: var(--transition);
}
.video-play-center:hover { transform: translate(-50%, -50%) scale(1.1); }
.text-white-70 { color: rgba(255,255,255,0.7); }

/* ===== TESTIMONIALS ===== */
.testimonialSwiper { padding-bottom: 50px !important; }
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-md);
  margin: 10px;
}
.testimonial-rating  { margin-bottom: 16px; color: var(--gold); letter-spacing: 3px; }
.testimonial-text    { font-size: 15.5px; color: var(--text); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author  { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar  { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testimonial-avatar-placeholder { width: 52px; height: 52px; border-radius: 50%; background: var(--light-bg); display: flex; align-items: center; justify-content: center; color: var(--text-muted); border: 2px solid var(--border); }
.testimonial-author strong { display: block; font-weight: 700; color: var(--navy); }
.testimonial-author span   { font-size: 13px; color: var(--text-muted); }

/* ===== NEWS CARDS ===== */
.news-card          { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); height: 100%; }
.news-card:hover    { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.news-card-img-link { display: block; overflow: hidden; height: 210px; }
.news-card-img-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-card:hover .news-card-img-link img { transform: scale(1.05); }
.news-img-placeholder { height: 210px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; font-size: 40px; color: rgba(0,0,0,0.1); }
.news-card-body     { padding: 22px; }
.news-meta          { margin-bottom: 10px; }
.news-date          { font-size: 12.5px; color: var(--text-muted); }
.news-title         { font-size: 16px; font-weight: 700; margin-bottom: 14px; line-height: 1.5; }
.news-title a:hover { color: var(--gold); }
.news-read-more     { font-size: 13.5px; font-weight: 600; color: var(--gold); }
.news-read-more:hover { color: var(--gold-dark); }

/* ===== PARTNERS ===== */
.partners-section   { padding: 60px 0; border-top: 1px solid var(--border); }
.partners-heading   { color: var(--text-muted); font-weight: 600; font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase; }
.partnersSwiper     { padding: 20px 0 !important; }
.partner-logo       { height: 60px; object-fit: contain; filter: grayscale(100%) opacity(0.5); transition: var(--transition); }
.swiper-slide:hover .partner-logo { filter: none; }

/* ===== FOOTER ===== */
.footer-premium     { background: var(--navy); color: rgba(255,255,255,0.8); }

.footer-cta-band {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 48px 0;
}
.footer-cta-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.footer-cta-sub   { color: rgba(255,255,255,0.85); font-size: 15px; }
.btn-footer-cta   { background: #fff; color: var(--gold-dark) !important; font-weight: 700; padding: 13px 28px; border-radius: 50px; transition: var(--transition); }
.btn-footer-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-whatsapp     { background: #25D366; color: #fff !important; font-weight: 700; padding: 13px 28px; border-radius: 50px; transition: var(--transition); }
.btn-whatsapp:hover { transform: translateY(-2px); background: #1da851; }

.footer-main       { padding: 72px 0 48px; }
.footer-logo       { height: 52px; filter: brightness(10); }
.footer-about-text { color: rgba(255,255,255,0.6); font-size: 14.5px; line-height: 1.8; margin-bottom: 20px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 12px; }
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-social     { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a   { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 14px; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

.footer-heading    { color: #fff; font-weight: 700; font-size: 16px; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--gold); }
.footer-links      { list-style: none; }
.footer-links li   { margin-bottom: 10px; }
.footer-links a    { color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-links i    { font-size: 10px; }

.footer-news-list  { display: flex; flex-direction: column; gap: 16px; }
.footer-news-item  { display: flex; gap: 12px; align-items: flex-start; }
.footer-news-item img { width: 60px; height: 50px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.footer-news-img-placeholder { width: 60px; height: 50px; border-radius: 8px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.2); }
.footer-news-title { color: rgba(255,255,255,0.8); font-size: 13.5px; font-weight: 500; line-height: 1.5; margin-bottom: 4px; }
.footer-news-date  { font-size: 11.5px; color: rgba(255,255,255,0.4); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0; font-size: 13.5px; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ===== CHATBOT ===== */
.chatbot-wrapper   { position: fixed; bottom: 28px; right: 28px; z-index: 9000; }
.chatbot-toggle    {
  width: 60px; height: 60px; border-radius: 50%; border: none;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: #fff; font-size: 22px; cursor: pointer;
  box-shadow: 0 8px 24px rgba(10,22,40,0.4);
  transition: var(--transition); position: relative;
  display: flex; align-items: center; justify-content: center;
}
.chatbot-toggle:hover { transform: scale(1.08); }
.chatbot-toggle.open .chat-icon  { display: none; }
.chatbot-toggle.open .close-icon { display: flex !important; }
.close-icon  { display: none !important; align-items: center; justify-content: center; }
.chat-badge  { position: absolute; top: -4px; right: -4px; background: #dc3545; color: #fff; width: 20px; height: 20px; border-radius: 50%; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }

.chatbot-window {
  position: absolute; bottom: 76px; right: 0;
  width: 360px; height: 520px;
  background: #fff; border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
  display: flex; flex-direction: column;
  overflow: hidden; border: 1px solid var(--border);
  transform-origin: bottom right;
}
@media (max-width: 420px) { .chatbot-window { width: calc(100vw - 20px); right: -10px; } }

.chatbot-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 16px 18px; display: flex; align-items: center; gap: 12px;
}
.chatbot-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff; position: relative;
}
.online-dot { position: absolute; bottom: 0; right: 0; width: 10px; height: 10px; background: #4CAF50; border-radius: 50%; border: 2px solid var(--navy-mid); }
.chatbot-info h6   { color: #fff; font-weight: 700; margin: 0; font-size: 15px; }
.chatbot-info small{ color: rgba(255,255,255,0.65); font-size: 12px; }
.chatbot-close     { margin-left: auto; background: none; border: none; color: rgba(255,255,255,0.7); font-size: 16px; cursor: pointer; padding: 4px; }

.chatbot-messages  { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.chat-msg          { display: flex; flex-direction: column; max-width: 85%; }
.chat-msg.bot      { align-self: flex-start; }
.chat-msg.user     { align-self: flex-end; }
.chat-bubble {
  padding: 12px 16px; border-radius: 18px;
  font-size: 14px; line-height: 1.6;
}
.chat-msg.bot  .chat-bubble { background: var(--light-bg); color: var(--text); border-bottom-left-radius: 4px; }
.chat-msg.user .chat-bubble { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: #fff; border-bottom-right-radius: 4px; }
.chat-time { font-size: 10.5px; color: var(--text-muted); margin-top: 4px; }
.chat-msg.user .chat-time   { text-align: right; }

.chat-quick-replies { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.chat-quick-replies button {
  padding: 6px 14px; border-radius: 50px;
  border: 1.5px solid var(--gold); background: rgba(184,134,11,0.06);
  color: var(--gold-dark); font-size: 12.5px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.chat-quick-replies button:hover { background: var(--gold); color: #fff; }

.typing-indicator { display: flex; gap: 4px; align-items: center; padding: 14px 18px !important; }
.typing-indicator span { width: 7px; height: 7px; border-radius: 50%; background: var(--text-muted); animation: typing 1.2s infinite; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-6px); } }

.lead-capture-form { margin-top: 10px; padding: 14px; background: rgba(184,134,11,0.05); border-radius: 12px; border: 1px solid rgba(184,134,11,0.15); }
.lead-capture-form .form-control, .lead-capture-form .form-select { font-size: 13px; border-radius: 8px; }

.chatbot-input { padding: 12px 14px; border-top: 1px solid var(--border); }
.chatbot-input .form-control { border-radius: 50px; font-size: 14px; border-color: var(--border); padding: 10px 16px; }
.chatbot-input .form-control:focus { border-color: var(--navy-mid); box-shadow: none; }
.btn-send { border-radius: 50px; background: var(--navy); color: #fff; border: none; padding: 10px 16px; transition: var(--transition); }
.btn-send:hover { background: var(--gold); }
.chatbot-powered { text-align: center; font-size: 11px; color: var(--text-muted); margin-top: 6px; }

/* ===== BACK TO TOP & WHATSAPP ===== */
.btn-back-top {
  position: fixed; bottom: 100px; right: 28px; z-index: 8000;
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: var(--navy); color: #fff; font-size: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2); cursor: pointer;
  transition: var(--transition); opacity: 0; visibility: hidden;
}
.btn-back-top.visible { opacity: 1; visibility: visible; }
.btn-back-top:hover   { background: var(--gold); transform: translateY(-3px); }

.whatsapp-float {
  position: fixed; bottom: 100px; left: 28px; z-index: 8000;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #fff !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

/* ===== PAGE-SPECIFIC ===== */
.page-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 80px 0 60px;
  text-align: center; color: #fff;
}
.page-banner h1  { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; margin-bottom: 12px; }
.page-banner p   { color: rgba(255,255,255,0.7); font-size: 16px; }
.breadcrumb-custom .breadcrumb-item a     { color: rgba(255,255,255,0.65); }
.breadcrumb-custom .breadcrumb-item.active{ color: var(--gold-light); }
.breadcrumb-custom .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.35); }

/* ===== CONTACT FORM ===== */
.contact-form-card { background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-info-icon { width: 50px; height: 50px; border-radius: 14px; background: rgba(184,134,11,0.1); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--gold); flex-shrink: 0; }
.contact-info-title{ font-weight: 700; margin-bottom: 4px; }
.contact-info-text { color: var(--text-muted); font-size: 14.5px; }
.contact-info-text a:hover { color: var(--gold); }

/* ===== ANIMATIONS ===== */
[data-aos] { will-change: transform, opacity; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .section-pad    { padding: 60px 0; }
  .heroSwiper     { height: 80vh; min-height: 500px; }
  .hero-title     { font-size: 1.8rem; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .stat-card      { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .about-exp-badge{ left: 10px; bottom: 10px; }
  .chatbot-wrapper{ bottom: 16px; right: 16px; }
}
