/* ============================================================
   LUXE INTERIORS — style.css
   Premium Interior Design & Architecture Website
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  --primary:      #111111;
  --gold:         #C7A97A;
  --gold-dark:    #A88B5A;
  --gold-light:   #E8D5B4;
  --bg:           #FAFAFA;
  --accent:       #EDE6DD;
  --text:         #333333;
  --text-light:   #777777;
  --white:        #FFFFFF;
  --border:       rgba(199,169,122,0.2);
  --shadow-sm:    0 4px 20px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.14);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

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

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); outline: none; }

/* ── Scroll Progress Bar ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Preloader ── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden { opacity: 0; visibility: hidden; }

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

.preloader-logo span { color: var(--gold); }

.preloader-bar {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: preload 1.8s ease-in-out forwards;
}

@keyframes preload {
  0%   { left: -100%; }
  100% { left: 0%; }
}

/* ── Navigation ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  transition: var(--transition);
}

.nav-logo span { color: var(--gold); }
#navbar.scrolled .nav-logo { color: var(--primary); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  position: relative;
}

#navbar.scrolled .nav-menu a { color: var(--text); }

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.nav-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 28px;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 4px;
  transition: var(--transition);
}

.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

#navbar.scrolled .hamburger span { background: var(--primary); }

/* ── Typography Utilities ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-heading span { color: var(--gold); font-style: italic; }

.section-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.9;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-sub { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 1.5px solid var(--primary);
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(199,169,122,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(199,169,122,0.4);
}

/* ── Section Spacing ── */
section { padding: 100px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 60px; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1920&q=90') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,8,6,0.78) 0%,
    rgba(10,8,6,0.55) 60%,
    rgba(10,8,6,0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-tag::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-h1 em { color: var(--gold); font-style: italic; }

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}

.scroll-indicator span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ── Hero stats strip ── */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-stat {
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  width: 52%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  position: absolute;
  bottom: -40px;
  right: -40px;
  border: 6px solid var(--white);
}

.about-badge {
  position: absolute;
  top: 32px;
  right: -24px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-top: 4px;
}

.about-content { padding-left: 20px; }

.about-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 2;
  color: var(--text-light);
  margin-bottom: 28px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
}

.about-feature i {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.about-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about-stat-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-icon i {
  font-size: 24px;
  color: var(--gold);
}

.service-card:hover .service-icon {
  background: var(--gold);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.service-link:hover { gap: 10px; }

/* ============================================================
   PROJECTS
   ============================================================ */
#projects { background: var(--white); }

.project-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  color: var(--text-light);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.project-card:nth-child(1) { grid-row: span 2; }

.project-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:nth-child(1) .project-img { height: 100%; min-height: 660px; }

.project-card:hover .project-img { transform: scale(1.08); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,0.90) 0%, rgba(10,8,6,0.30) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover .project-overlay { opacity: 1; }

.project-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.project-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.project-meta {
  display: flex;
  gap: 20px;
}

.project-meta span {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 5px;
}

.project-meta span i { font-size: 11px; color: var(--gold); }

.project-view-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--primary);
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.project-card:hover .project-view-btn {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why-us {
  background: var(--bg);
  position: relative;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.why-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--accent), var(--gold-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.why-icon i { font-size: 28px; color: var(--gold-dark); }

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.why-card:hover .why-icon i { color: var(--white); }

.why-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.why-desc {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-light);
}

/* ============================================================
   PROCESS
   ============================================================ */
#process {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

#process::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1920&q=50') center/cover;
  opacity: 0.05;
}

#process .section-heading { color: var(--white); }
#process .section-sub { color: rgba(255,255,255,0.55); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: rgba(199,169,122,0.2);
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  border: 4px solid rgba(199,169,122,0.25);
  transition: var(--transition);
}

.process-step:hover .process-num {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(199,169,122,0.4);
}

.process-icon {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.process-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.process-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  background: var(--accent);
}

.testimonials-slider { padding: 16px 0 56px; }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  margin: 8px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
}

.t-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.t-quote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 28px;
  position: relative;
}

.t-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0;
  position: absolute;
  top: 20px;
  left: -8px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.t-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}

.t-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.t-role {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 2px;
}

/* Swiper custom controls */
.swiper-pagination-bullet {
  background: var(--gold) !important;
  opacity: 0.4 !important;
}

.swiper-pagination-bullet-active { opacity: 1 !important; }

/* ============================================================
   TEAM
   ============================================================ */
#team { background: var(--white); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.team-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-img { transform: scale(1.07); }

.team-socials {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,0.85), rgba(10,8,6,0.20));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding-bottom: 24px;
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-socials { opacity: 1; }

.team-social-link {
  width: 38px;
  height: 38px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--primary);
  transform: translateY(20px);
  transition: var(--transition);
}

.team-card:hover .team-social-link { transform: translateY(0); }
.team-social-link:hover { background: var(--gold); color: var(--white); }

.team-info {
  background: var(--white);
  padding: 20px 24px;
  border-top: 2px solid var(--accent);
  transition: border-color 0.3s ease;
}

.team-card:hover .team-info { border-top-color: var(--gold); }

.team-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--gold);
}

/* ============================================================
   COUNTERS
   ============================================================ */
#counters {
  position: relative;
  background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
  padding: 100px 0;
}

#counters::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,8,6,0.88);
}

.counters-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.counter-item { text-align: center; }

.counter-icon {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.counter-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.counter-num span { color: var(--gold); }

.counter-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--bg); }

.faq-wrap { max-width: 780px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open { border-color: var(--border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  background: transparent;
  gap: 16px;
}

.faq-question span:last-child {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 12px;
  color: var(--gold);
}

.faq-item.open .faq-question span:last-child {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 28px 22px;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

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

.contact-icon {
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--gold);
  transition: var(--transition);
}

.contact-info-item:hover .contact-icon {
  background: var(--gold);
  color: var(--white);
}

.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 14.5px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
}

.contact-map {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-map iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
}

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  background: var(--bg);
  border: 1.5px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(199,169,122,0.12);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); opacity: 0.7; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--primary);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo span { color: var(--gold); }

.footer-desc {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-social:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-links a:hover::before { width: 12px; }

.footer-newsletter h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 12px;
  position: relative;
}

.footer-newsletter h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.newsletter-input-wrap {
  display: flex;
  gap: 0;
  margin-bottom: 12px;
}

.newsletter-input-wrap input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-size: 13px;
  color: var(--white);
}

.newsletter-input-wrap input::placeholder { color: rgba(255,255,255,0.3); }

.newsletter-input-wrap input:focus { outline: none; border-color: var(--gold); }

.newsletter-input-wrap button {
  padding: 12px 18px;
  background: var(--gold);
  color: var(--white);
  font-size: 13px;
  border-radius: 0 4px 4px 0;
  transition: var(--transition);
}

.newsletter-input-wrap button:hover { background: var(--gold-dark); }

.footer-note {
  font-size: 11.5px;
  color: rgba(255,255,255,0.25);
}

.footer-bottom {
  padding: 22px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

.footer-bottom a { color: var(--gold); }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 88px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  z-index: 500;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
}

.float-wa:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white);
  z-index: 500;
  box-shadow: 0 4px 20px rgba(199,169,122,0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  cursor: pointer;
}

.back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--gold-dark); transform: translateY(-3px); }
