/* =============================================
   BLACK PEARL TOURS — Main Stylesheet
   ============================================= */

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

:root {
  --gold: #8B7D4B;
  --gold-light: #A89470;
  --gold-lighter: #C4B282;
  --gold-dark: #6E6240;
  --gold-darker: #564D32;
  --black: #000;
  --dark: #0a0a0a;
  --darker: #050505;
  --charcoal: #1a1a1a;
  --text: #333;
  --text-light: #666;
  --text-lighter: #999;
  --white: #fff;
  --off-white: #faf9f6;
  --cream: #f5f0e8;
  --light-bg: #f7f5f0;
  --border: #e0dcd4;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

section[id] {
  scroll-margin-top: 100px;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

h1, h2, h3, h4, h5 { font-family: 'Archivo', sans-serif; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* ===== SHARED COMPONENTS ===== */
.section-label {
  display: inline-block;
  font-family: 'Readex Pro', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139,125,75,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(139,125,75,0.5);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}


/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: -10px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  transition: padding 0.3s ease, top 0.3s ease;
}
.header.scrolled {
  top: 0;
  background: rgba(12,11,9,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139,125,75,0.12);
}
.header.scrolled .logo-img {
  height: 150px;
  margin: -20px 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  margin-left: -30px;
}
.logo-img {
  height: 220px;
  width: auto;
  filter: drop-shadow(0 0 16px rgba(196, 178, 130, 0.55));
  transition: filter 0.3s ease, transform 0.3s ease, height 0.3s ease;
}
.logo:hover .logo-img {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 12px rgba(196, 178, 130, 0.5));
}
.footer .logo-img {
  height: 160px;
}
.footer .logo:hover .logo-img {
  filter: drop-shadow(0 0 12px rgba(196, 178, 130, 0.5));
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  color: rgba(196,178,130,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold-lighter); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  gap: 8px;
}
.nav-cta .btn {
  padding: 10px 26px;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  border: 1px solid rgba(139,125,75,0.4);
  background: rgba(139,125,75,0.15);
  backdrop-filter: blur(10px);
}
.nav-cta .btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}
.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}


/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding-top: 180px;
  background: linear-gradient(160deg, #0c0b09 0%, #151310 30%, #1a1710 60%, #0f0e0a 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(139,125,75,0.1) 0%, rgba(139,125,75,0.03) 40%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(196,178,130,0.06) 0%, transparent 60%);
  border-radius: 50%;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { padding: 40px 0; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,125,75,0.15);
  color: var(--gold-lighter);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
  font-family: 'Readex Pro', sans-serif;
  border: 1px solid rgba(139,125,75,0.2);
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold-lighter), var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 480px;
}
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 20px;
  margin-top: 100px;
}
.hero-card {
  background: rgba(139,125,75,0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139,125,75,0.15);
  border-radius: var(--radius-lg);
  padding: 25px;
  transition: var(--transition);
}
.hero-card:hover {
  transform: translateY(-5px);
  background: rgba(139,125,75,0.1);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(139,125,75,0.15);
}
.hero-card:nth-child(2) { margin-top: 0; }
.hero-card:nth-child(3) { margin-top: 0; }
.hero-card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 15px;
  flex-shrink: 0;
}
.hero-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-card h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 6px;
}
.hero-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0;
  line-height: 1.5;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(139,125,75,0.15);
}
.hero-stat h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-lighter);
}
.hero-stat p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0;
}


/* ===== BRANCHES ===== */
.branches {
  padding: 100px 0;
  background: var(--white);
}
.branches-header {
  text-align: center;
  margin-bottom: 60px;
}
.branches-header .section-subtitle { margin: 0 auto; }

.branches-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.branch-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  cursor: default;
  transition: var(--transition);
}
.branch-card:hover { transform: translateY(-8px); }
.branch-card:hover .branch-bg { transform: scale(1.1); }
.branch-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}
.branch-card:nth-child(1) .branch-bg { background: url('../images/branches/lebanon.jpg') center/cover no-repeat; }
.branch-card:nth-child(2) .branch-bg { background: url('../images/branches/istanbul.jpg') center/cover no-repeat; }
.branch-card:nth-child(3) .branch-bg { background: url('../images/branches/uae.jpg') center/cover no-repeat; }
.branch-card:nth-child(4) .branch-bg { background: url('../images/branches/ghana.jpg') center/cover no-repeat; }
.branch-card:nth-child(5) .branch-bg { background: url('../images/branches/ksa.jpg') center/cover no-repeat; }
.branch-card:nth-child(6) .branch-bg { background: url('../images/branches/syria.jpg') center/cover no-repeat; }
.branch-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}
.branch-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px;
  z-index: 2;
}
.branch-flag {
  font-size: 1.8rem;
  margin-bottom: 6px;
}
.branch-content h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.branch-content p {
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
}


/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--light-bg);
}
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.about-experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 25px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-experience h3 { font-size: 2.2rem; font-weight: 900; line-height: 1; }
.about-experience p { font-size: 0.85rem; opacity: 0.9; }
.about-content .section-title { margin-bottom: 20px; }
.about-text {
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 35px;
}
.about-value {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.9rem;
}
.about-value-icon {
  width: 32px;
  height: 32px;
  background: rgba(139,125,75,0.12);
  color: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}
.timeline {
  display: flex;
  gap: 0;
  margin-top: 30px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
}
.timeline-item { flex: 1; text-align: center; position: relative; }
.timeline-dot {
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  margin: 10px auto 12px;
  position: relative;
  z-index: 1;
}
.timeline-year {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--black);
}
.timeline-place {
  font-size: 0.72rem;
  color: var(--text-lighter);
  margin-top: 2px;
}


/* ===== MEET THE TEAM ===== */
.meet-team {
  padding: 100px 0;
  background: linear-gradient(180deg, #0c0b09 0%, #131110 30%, #1a1710 60%, #0f0e0a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.meet-team::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(139,125,75,0.07) 0%, transparent 60%);
  border-radius: 50%;
}
.meet-team::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,178,130,0.04) 0%, transparent 60%);
  border-radius: 50%;
}
.meet-team-header {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
  z-index: 1;
}
.meet-team-header .section-title { color: var(--white); }
.meet-team-header .section-title .gold {
  background: linear-gradient(135deg, var(--gold-lighter), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.meet-team-header .section-subtitle {
  margin: 0 auto;
  color: rgba(255,255,255,0.45);
}

/* -- Featured Leadership Card -- */
.dept-featured {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.dept-featured-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, rgba(139,125,75,0.12) 0%, rgba(139,125,75,0.04) 100%);
  border: 1px solid rgba(139,125,75,0.2);
  border-radius: 20px;
  padding: 36px 40px;
  backdrop-filter: blur(12px);
}
.dept-featured-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 100px;
}
.dept-featured-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.dept-featured-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.dept-featured-title {
  font-family: 'Archivo', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-lighter);
}
.dept-featured-people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 24px;
  flex: 1;
}
.leader {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.leader strong {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}
.leader span {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* -- Department Card Grid -- */
.dept-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.dept-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(139, 125, 75, 0.12);
  border-top: 2px solid var(--gold);
  border-radius: 14px;
  padding: 22px 18px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.dept-card:hover {
  transform: translateY(-4px);
  background: rgba(139, 125, 75, 0.08);
  border-color: rgba(139, 125, 75, 0.3);
  border-top-color: var(--gold-lighter);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(139, 125, 75, 0.1);
}
.dept-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(139, 125, 75, 0.1);
}
.dept-card-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.dept-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.dept-card-title {
  font-family: 'Archivo', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold-lighter);
  flex: 1;
  line-height: 1.3;
}
.dept-count {
  font-family: 'Archivo', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--gold);
  background: rgba(139, 125, 75, 0.15);
  padding: 3px 8px;
  border-radius: 10px;
  flex-shrink: 0;
}
.dept-card-members {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.dept-card-members span {
  font-size: 0.72rem;
  color: var(--white);
  background: none;
  padding: 3px 9px;
  border-radius: 6px;
  transition: color 0.2s ease;
  line-height: 1.4;
}
.dept-card-members span:hover {
  color: var(--gold-lighter);
}


/* ===== STATS ===== */
.stats {
  padding: 80px 0;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.15) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-item h3 {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}


/* ===== VISAS ===== */
.services {
  padding: 100px 0;
  background: var(--light-bg);
}
.services-header {
  text-align: center;
  margin-bottom: 50px;
}
.services-header .section-subtitle { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  padding: 30px 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lighter));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 14px;
  display: inline-block;
}
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-card h4 {
  font-family: 'Archivo', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
}


/* ===== UMBRELLA (sub-brands) ===== */
.umbrella {
  padding: 100px 0;
  background: var(--white);
}
.umbrella-header {
  text-align: center;
  margin-bottom: 60px;
}
.umbrella-header .section-subtitle { margin: 0 auto; }
.umbrella-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}
.umbrella-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}
.umbrella-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.umbrella-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 20px;
  overflow: hidden;
}
.umbrella-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.umbrella-card h4 { font-size: 1.15rem; font-weight: 700; color: var(--black); margin-bottom: 5px; }
.umbrella-card .umbrella-loc { font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.umbrella-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }


/* ===== CONTACT FORM ===== */
.contact {
  padding: 100px 0;
  background: var(--light-bg);
}
.contact .container {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 50px;
  align-items: stretch;
}
.contact-side {
  background: linear-gradient(180deg, #0c0b09 0%, #131110 50%, #0a0908 100%);
  border-radius: var(--radius-lg);
  padding: 50px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-side::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 40%, rgba(139,125,75,0.06) 0%, transparent 50%);
}
.contact-side-content { position: relative; z-index: 1; }
.contact-side h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-lighter);
  line-height: 1.3;
  margin-bottom: 12px;
}
.contact-side-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 20px;
}
.contact-side p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact-side .logo-img { height: 100px; }

.contact-form-wrap h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 35px;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
  font-family: 'Archivo', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-lighter); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(139,125,75,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.contact-submit { grid-column: 1 / -1; }
.contact-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.contact-submit .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.form-status {
  grid-column: 1 / -1;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(139,125,75,0.1);
  color: var(--gold-dark);
  border: 1px solid rgba(139,125,75,0.3);
}
.form-status.error {
  display: block;
  background: rgba(200,50,50,0.08);
  color: #a33;
  border: 1px solid rgba(200,50,50,0.2);
}


/* ===== CTA ===== */
.cta {
  padding: 100px 0;
  background: linear-gradient(160deg, #0c0b09 0%, #151310 40%, #1a1710 70%, #0f0e0a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(139,125,75,0.08) 0%, rgba(139,125,75,0.02) 40%, transparent 70%);
  border-radius: 50%;
}
.cta .container { position: relative; z-index: 1; }
.cta .section-title { color: var(--white); margin-bottom: 20px; }
.cta p {
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-buttons { display: flex; gap: 15px; justify-content: center; }


/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, #0c0b09 0%, #080705 100%);
  padding: 80px 0 30px;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(139,125,75,0.12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand > p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 15px;
}
.footer-contact { margin-bottom: 20px; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gold-lighter);
  margin-bottom: 6px;
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--white); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(139,125,75,0.1);
  border: 1px solid rgba(139,125,75,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1rem;
  color: var(--gold-light);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.87rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold-lighter); }

.footer-branches h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.footer-branch {
  padding: 14px 16px;
  background: rgba(139, 125, 75, 0.06);
  border: 1px solid rgba(139, 125, 75, 0.1);
  border-radius: 10px;
}
.footer-branch strong {
  display: block;
  color: var(--gold-lighter);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.footer-branch p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
  margin-bottom: 4px;
}
.footer-branch a {
  font-size: 0.78rem;
  color: var(--gold-light);
  transition: color 0.2s ease;
}
.footer-branch a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(139,125,75,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}


/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===== MOBILE CTA STICKY BAR ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  gap: 10px;
  background: rgba(12,11,9,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(139,125,75,0.2);
}
.mobile-cta-bar .btn {
  flex: 1;
  justify-content: center;
  padding: 12px 10px;
  font-size: 0.85rem;
}


/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  display: flex;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .branches-grid { grid-template-columns: repeat(3, 1fr); }
  .about .container { grid-template-columns: 1fr; gap: 50px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .contact .container { grid-template-columns: 1fr; }
  .contact-side { padding: 40px 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-branches-grid { grid-template-columns: repeat(3, 1fr); }
  .dept-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .logo { margin-left: 0; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-cta-bar { display: flex; }
  .whatsapp-float { bottom: 80px; }
  .footer { padding-bottom: 70px; }

  /* Shrink navbar on scroll (mobile) */
  .header.scrolled { padding: 2px 0; }
  .header.scrolled .logo-img { height: 100px; }

  .hero { min-height: auto; padding: 180px 0 80px; }
  .hero-stats { gap: 25px; flex-wrap: wrap; justify-content: center; }
  .branches-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .umbrella-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-branches-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* Stats */
  .stats { padding: 50px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 30px; }
  .stat-item h3 { font-size: 2rem; }
  .stat-item p { font-size: 0.82rem; }

  /* Meet the team */
  .meet-team { padding: 60px 0; }
  .dept-featured-inner { flex-direction: column; gap: 20px; padding: 24px 20px; }
  .dept-featured-people { grid-template-columns: repeat(3, 1fr); gap: 10px 16px; }
  .dept-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .dept-card { padding: 18px 14px; }
  .dept-card-title { font-size: 0.65rem; }
  .dept-card-members span { font-size: 0.68rem; padding: 2px 7px; }

  .nav-links.show-mobile {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(12,11,9,0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    gap: 15px;
    border-top: 1px solid rgba(139,125,75,0.15);
  }
}

@media (max-width: 480px) {
  .branches-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 15px; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }

  /* Stats */
  .stats { padding: 40px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px 15px; }
  .stat-item h3 { font-size: 1.6rem; }
  .stat-item p { font-size: 0.78rem; }

  /* Meet the team */
  .meet-team { padding: 40px 0; }
  .meet-team-header { margin-bottom: 25px; }
  .dept-featured-inner { padding: 20px 16px; }
  .dept-featured-people { grid-template-columns: repeat(2, 1fr); gap: 8px 12px; }
  .leader strong { font-size: 0.8rem; }
  .leader span { font-size: 0.65rem; }
  .dept-grid { grid-template-columns: 1fr; gap: 10px; }
  .dept-card { padding: 16px 14px; }
  .dept-card-head { gap: 8px; margin-bottom: 12px; padding-bottom: 10px; }
  .dept-card-members { gap: 4px; }
  .dept-card-members span { font-size: 0.7rem; }
}
