/* =========================================================
   Interior Studio - Main Stylesheet
   ========================================================= */

/* ---------- Root Variables ---------- */
:root {
  --gold: #c8a96e;
  --gold-dark: #a8894e;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --light: #f8f5f0;
  --light-gold: #faf7f2;
  --text: #555555;
  --white: #ffffff;
  --border: rgba(200, 169, 110, 0.2);
  --ff-heading: 'Playfair Display', serif;
  --ff-body: 'Raleway', sans-serif;
  --transition: all 0.4s ease;
  --shadow: 0 10px 40px rgba(0,0,0,0.08);
  --shadow-dark: 0 10px 40px rgba(0,0,0,0.3);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

h1,h2,h3,h4,h5,h6 {
  font-family: var(--ff-heading);
  color: var(--dark);
  line-height: 1.3;
}

a { text-decoration: none; transition: var(--transition); }

img { max-width: 100%; display: block; }

.section-pad { padding: 100px 0; }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }

.preloader-logo {
  font-family: var(--ff-heading);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.preloader-logo span { color: var(--gold); }

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar span {
  display: block;
  height: 100%;
  background: var(--gold);
  animation: loading 1.8s ease-in-out infinite;
}
@keyframes loading {
  0% { width: 0; }
  50% { width: 100%; }
  100% { width: 0; margin-left: 100%; }
}

/* ---------- Navbar ---------- */
#mainNav {
  padding: 20px 0;
  background: transparent;
  transition: var(--transition);
  z-index: 1000;
}
#mainNav.scrolled {
  background: var(--dark);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.navbar-brand {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 1px;
}
.navbar-brand span { color: var(--gold); }

.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px !important;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: calc(100% - 28px); }
.nav-link:hover { color: var(--gold) !important; }

.btn-nav {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: 4px !important;
  padding: 10px 22px !important;
  font-weight: 600;
}
.btn-nav::after { display: none; }
.btn-nav:hover { background: var(--gold-dark) !important; }

/* Toggler */
.navbar-toggler { border: none; background: none; padding: 4px; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-icon { display: flex; flex-direction: column; gap: 5px; cursor: pointer; }
.toggler-icon span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ---------- Buttons ---------- */
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  padding: 13px 32px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-block;
  transition: var(--transition);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.bg-dark-custom .btn-gold:hover { color: var(--gold); }

/* ---------- Section Headers ---------- */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-tag.light { color: var(--gold); }

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.text-white .section-title,
.section-title.text-white { color: var(--white); }

.section-sub {
  font-size: 0.98rem;
  max-width: 600px;
  margin: 0 auto;
  color: var(--text);
}

/* ---------- Backgrounds ---------- */
.bg-light-gold { background: var(--light-gold); }
.bg-dark-custom { background: var(--dark2); }

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 650px;
}

.heroSwiper, .hero-slide {
  width: 100%;
  height: 100vh;
  min-height: 650px;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: heroFadeIn 0.8s ease forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 16px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero nav buttons */
.hero-prev, .hero-next {
  width: 50px !important;
  height: 50px !important;
  background: rgba(200,169,110,0.2) !important;
  border: 1px solid var(--gold) !important;
  border-radius: 0 !important;
  color: var(--white) !important;
  transition: var(--transition);
}
.hero-prev:hover, .hero-next:hover { background: var(--gold) !important; }
.hero-prev::after, .hero-next::after { display: none; }
.hero-prev i, .hero-next i { font-size: 0.9rem; }

/* Swiper pagination */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* Scroll down */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: var(--white);
  text-align: center;
  animation: bounce 2s infinite;
}
.scroll-down i { font-size: 1.2rem; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--gold);
  padding: 40px 0;
}

.stat-item {
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--ff-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  display: inline-block;
  line-height: 1;
}
.stat-plus {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  vertical-align: top;
  margin-top: 4px;
  display: inline-block;
}
.stat-item p {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 8px 0 0;
  font-weight: 500;
}

/* ---------- About ---------- */
.about-imgs {
  position: relative;
  padding: 30px 30px 30px 0;
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-img-sm {
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 220px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}
.about-img-sm img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.about-exp-badge {
  position: absolute;
  top: 50px;
  left: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.exp-num {
  display: block;
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.exp-txt {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-features { display: flex; flex-direction: column; gap: 10px; }
.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--dark);
}
.about-feature-item i { color: var(--gold); font-size: 1.1rem; }

/* ---------- Services ---------- */
.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 4px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid transparent;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.service-card:hover::before { width: 100%; }

.service-icon {
  width: 68px;
  height: 68px;
  background: var(--light-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-icon i {
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--gold); }
.service-card:hover .service-icon i { color: var(--white); }

.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--dark);
}
.service-card p { font-size: 0.92rem; color: var(--text); margin-bottom: 20px; }

.service-link {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link i { transition: var(--transition); }
.service-link:hover i { transform: translateX(4px); }

/* ---------- Process ---------- */
.process-section { background: var(--white); }

.process-step {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
  transition: var(--transition);
}
.process-step:hover { border-color: var(--gold); box-shadow: var(--shadow); }

.step-num {
  font-family: var(--ff-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--light-gold);
  line-height: 1;
  margin-bottom: 10px;
}
.step-icon {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-icon i { font-size: 1.4rem; color: var(--white); }

.process-step h5 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--dark);
}
.process-step p { font-size: 0.9rem; color: var(--text); }

/* ---------- Portfolio ---------- */
.portfolio-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.filter-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  padding: 8px 22px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 3px;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.portfolio-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.portfolio-card:hover img { transform: scale(1.08); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-info span {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.portfolio-info h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin: 4px 0;
}
.portfolio-zoom {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
}

/* Hidden items */
.portfolio-item.hidden { display: none; }

/* ---------- CTA ---------- */
.cta-section {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.75);
}
.cta-section .container { position: relative; z-index: 2; }

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
}
.cta-title em { color: var(--gold); font-style: italic; }
.cta-text { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ---------- Team ---------- */
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }

.team-img-wrap { position: relative; overflow: hidden; }
.team-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.06); }

.team-social {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  background: var(--gold);
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 12px;
  transition: var(--transition);
}
.team-card:hover .team-social { bottom: 0; }
.team-social a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
}
.team-social a:hover { background: rgba(255,255,255,0.3); }

.team-info { padding: 20px 16px; }
.team-info h5 { font-size: 1.05rem; margin-bottom: 4px; }
.team-info span { font-size: 0.82rem; color: var(--gold); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* ---------- Testimonials ---------- */
.testi-card {
  background: var(--white);
  padding: 40px 36px;
  border-radius: 4px;
  box-shadow: var(--shadow);
  position: relative;
  margin: 10px;
}

.testi-quote {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}

.testi-card p {
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testi-stars { color: var(--gold); margin-bottom: 24px; font-size: 0.9rem; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.testi-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testi-author h6 { font-size: 1rem; margin-bottom: 2px; color: var(--dark); }
.testi-author span { font-size: 0.8rem; color: var(--text); }

.testi-pagination .swiper-pagination-bullet { background: var(--text); }
.testi-pagination .swiper-pagination-bullet-active { background: var(--gold); width: 24px; }

/* ---------- Blog ---------- */
.blog-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }

.blog-img { position: relative; overflow: hidden; }
.blog-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.06); }

.blog-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}

.blog-body { padding: 24px; }

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text);
  margin-bottom: 12px;
}
.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-meta i { color: var(--gold); }

.blog-body h5 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--dark);
  line-height: 1.5;
}
.blog-body p { font-size: 0.9rem; color: var(--text); margin-bottom: 16px; }

.read-more {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.read-more i { transition: var(--transition); }
.read-more:hover i { transform: translateX(4px); }

/* ---------- Clients ---------- */
.clients-section {
  padding: 50px 0;
  border-top: 1px solid #f0ebe3;
  border-bottom: 1px solid #f0ebe3;
  background: var(--white);
}
.clients-label {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600;
}
.client-logo {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #aaa;
  text-align: center;
  transition: var(--transition);
  padding: 10px;
  letter-spacing: 2px;
}
.client-logo:hover { color: var(--gold); }

/* ---------- Contact ---------- */
.contact-info { padding: 10px 0; }

.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.ci-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,169,110,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon i { color: var(--gold); font-size: 1rem; }

.contact-info-item h6 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 4px;
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.contact-info-item p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 0; }

.contact-social { display: flex; gap: 10px; }
.contact-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  transition: var(--transition);
}
.contact-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.contact-form .form-group { margin-bottom: 0; }

.contact-form .form-control {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  transition: var(--transition);
}
.contact-form .form-control::placeholder { color: rgba(255,255,255,0.35); }
.contact-form .form-control:focus {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.1);
  color: var(--white);
}
.contact-form select.form-control option { background: var(--dark2); }

/* ---------- Map ---------- */
.map-section { height: 420px; }
.map-section iframe { width: 100%; height: 100%; border: none; filter: grayscale(30%); }

/* ---------- Footer ---------- */
.footer { background: var(--dark); }

.footer-top { padding: 80px 0 50px; }

.footer-logo {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo span { color: var(--gold); }

.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 24px; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.footer-widget-title {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 24px;
  font-family: var(--ff-body);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}
.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-widget p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 16px; }

.newsletter-form .form-control {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px 0 0 3px;
  color: var(--white);
  padding: 12px 16px;
  font-size: 0.88rem;
}
.newsletter-form .form-control:focus { box-shadow: none; border-color: var(--gold); background: rgba(255,255,255,0.08); }
.newsletter-form .btn-gold { border-radius: 0 3px 3px 0; padding: 12px 18px; }

.footer-contact p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.footer-contact i { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
  margin: 0;
}

/* ---------- Back to Top ---------- */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(200,169,110,0.4);
}
#backToTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background: var(--gold-dark); }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 86px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .section-pad { padding: 70px 0; }
  .hero-section, .heroSwiper, .hero-slide { height: 90vh; }
  .about-imgs { padding: 20px 20px 40px 0; }
  .about-img-sm { right: -10px; }
  .about-exp-badge { left: -10px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .stat-item:last-child { border-bottom: none; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-prev, .hero-next { display: none !important; }
  .about-imgs { padding: 0 0 60px; }
  .about-img-sm { width: 160px; right: 0; }
  .about-exp-badge { left: 0; }
  .cta-section { background-attachment: scroll; }
  .footer-top { padding: 50px 0 30px; }
}

@media (max-width: 575px) {
  .section-pad { padding: 60px 0; }
  .hero-section, .heroSwiper, .hero-slide { height: 100vh; }
  .hero-content { padding-top: 80px; }
  .map-section { height: 280px; }
}
