/* ============================================
   CLÉS CASABLANCA - Stylesheet Principal
   ============================================ */

:root {
  --gold: #C9A227;
  --gold-dark: #a8821c;
  --gold-light: #f0d068;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --white: #ffffff;
  --light: #f8f9fa;
  --gray: #6c757d;
  --gray-light: #e9ecef;
  --success: #28a745;
  --whatsapp: #25D366;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.18);
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
}

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

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

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--dark);
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: var(--white); }
.top-bar .top-links { display: flex; gap: 20px; align-items: center; }
.top-bar i { margin-right: 5px; }

/* ============================================
   HEADER / NAV
   ============================================ */
header {
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img { height: 55px; width: auto; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
}
.logo-name span { color: var(--gold); }
.logo-tagline { font-size: 11px; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }

nav { display: flex; align-items: center; gap: 5px; }
nav a {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 14px;
  color: var(--dark);
  transition: var(--transition);
}
nav a:hover, nav a.active { background: var(--gold); color: var(--white); }

.nav-cta {
  background: var(--dark) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  margin-left: 10px;
}
.nav-cta:hover { background: var(--gold) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #0f3460 100%);
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 35px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,162,39,0.4); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: #1eb854; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark2); transform: translateY(-2px); }

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat { text-align: center; }
.stat-number { font-size: 28px; font-weight: 800; color: var(--gold); }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.65); }

.hero-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 35px;
}
.hero-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gold-light);
}
.service-list { display: flex; flex-direction: column; gap: 12px; }
.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}
.service-item i { color: var(--gold); font-size: 18px; width: 24px; text-align: center; }

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-bar {
  background: var(--gold);
  padding: 18px 0;
}
.trust-bar .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
}
.trust-item i { font-size: 22px; }

/* ============================================
   SECTIONS GENERAL
   ============================================ */
section { padding: 80px 0; }

.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 15px;
}
.section-title p { font-size: 17px; color: var(--gray); max-width: 600px; margin: 0 auto; }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services { background: var(--light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.service-icon i { font-size: 28px; color: var(--white); }

.service-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }

.service-card .btn-sm {
  padding: 8px 20px;
  font-size: 13px;
  border-radius: 25px;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
}
.service-card .btn-sm:hover { background: var(--dark); }

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works { background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  position: relative;
}
.step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.step-number {
  width: 60px;
  height: 60px;
  background: var(--dark);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
}
.step h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--gray); }

/* ============================================
   REVIEWS / TESTIMONIALS
   ============================================ */
.reviews { background: var(--dark); color: var(--white); }
.reviews .section-title h2 { color: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 30px;
  transition: var(--transition);
}
.review-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 18px; margin-bottom: 15px; letter-spacing: 3px; }
.review-text { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 20px; font-style: italic; line-height: 1.7; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 45px; height: 45px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark);
  font-size: 16px;
}
.reviewer-name { font-weight: 600; font-size: 15px; }
.reviewer-date { font-size: 12px; color: rgba(255,255,255,0.5); }

.reviews-summary {
  text-align: center;
  margin-bottom: 40px;
}
.big-rating { font-size: 72px; font-weight: 800; color: var(--gold); line-height: 1; }
.rating-stars { color: var(--gold); font-size: 28px; margin: 10px 0; }
.rating-count { color: rgba(255,255,255,0.6); font-size: 15px; }

/* ============================================
   URGENCY / CTA SECTION
   ============================================ */
.urgency-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 60px 0;
  text-align: center;
}
.urgency-cta h2 { font-size: 38px; font-weight: 800; color: var(--dark); margin-bottom: 15px; }
.urgency-cta p { font-size: 18px; color: rgba(0,0,0,0.7); margin-bottom: 30px; }
.urgency-cta .cta-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.urgency-cta .btn-dark { background: var(--dark); color: var(--white); }
.urgency-cta .btn-wa { background: var(--whatsapp); color: var(--white); }
.urgency-cta .btn-wa:hover { background: #1eb854; }

/* ============================================
   MAP / LOCATION SECTION
   ============================================ */
.location { background: var(--light); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.location-info h3 { font-size: 26px; font-weight: 700; color: var(--dark); margin-bottom: 25px; }
.info-items { display: flex; flex-direction: column; gap: 18px; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.info-icon {
  width: 45px; height: 45px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon i { color: var(--white); font-size: 18px; }
.info-content h4 { font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.info-content p, .info-content a { font-size: 15px; color: var(--gray); }
.info-content a:hover { color: var(--gold); }

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.map-wrap iframe { display: block; width: 100%; height: 380px; border: none; }

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-preview { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.blog-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--white);
  border: 1px solid var(--gray-light);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card-img i { font-size: 50px; color: var(--gold); opacity: 0.6; }
.blog-card-category {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.blog-card-body { padding: 22px; }
.blog-card-meta { font-size: 12px; color: var(--gray); margin-bottom: 10px; }
.blog-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 14px; color: var(--gray); margin-bottom: 15px; }
.read-more { font-size: 14px; color: var(--gold); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.read-more:hover { color: var(--gold-dark); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-name { color: var(--white); font-size: 24px; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--white);
  font-size: 15px;
}
.social-btn:hover { background: var(--gold); }

.footer-col h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 18px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 35px; height: 2px; background: var(--gold); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.7); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 5px; }
.footer-col ul li a i { font-size: 11px; color: var(--gold); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.footer-contact-item i { color: var(--gold); margin-top: 3px; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   FLOATING BUTTONS (WhatsApp + Phone)
   ============================================ */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.float-btn:hover { transform: scale(1.12); }
.float-wa { background: var(--whatsapp); }
.float-phone { background: var(--gold); }

.float-btn .tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.float-btn:hover .tooltip { opacity: 1; }

.float-btn .pulse {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: inherit;
  animation: pulse 2s infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  color: var(--white);
  padding: 60px 0 50px;
  text-align: center;
}
.page-hero h1 { font-size: 40px; font-weight: 800; margin-bottom: 12px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 20px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-page { background: var(--light); }
.blog-page-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.blog-list { display: flex; flex-direction: column; gap: 25px; }

.blog-list-card {
  background: var(--white);
  border-radius: 16px;
  padding: 25px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}
.blog-list-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-list-thumb {
  border-radius: 10px;
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  overflow: hidden;
}
.blog-list-thumb i { font-size: 36px; color: var(--gold); }
.blog-list-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.blog-list-body .category { color: var(--gold); font-size: 12px; font-weight: 600; text-transform: uppercase; margin-bottom: 6px; }
.blog-list-body h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.blog-list-body p { font-size: 14px; color: var(--gray); margin-bottom: 12px; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 25px; }
.sidebar-widget {
  background: var(--white);
  border-radius: 16px;
  padding: 25px;
  box-shadow: var(--shadow);
}
.sidebar-widget h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }
.sidebar-contact { background: var(--dark); color: var(--white); }
.sidebar-contact h4 { color: var(--white); border-color: var(--gold); }
.sidebar-contact p { font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 15px; }
.sidebar-phone { font-size: 22px; font-weight: 800; color: var(--gold); margin-bottom: 12px; }

/* ============================================
   BLOG ARTICLE PAGE
   ============================================ */
.article-page { background: var(--white); }
.article-content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: start;
}
.article-body {
  background: var(--white);
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 25px;
  font-size: 14px;
  color: var(--gray);
}
.article-category { background: var(--gold); color: var(--white); padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.article-body h1 { font-size: 36px; font-weight: 800; color: var(--dark); margin-bottom: 20px; line-height: 1.3; }
.article-body h2 { font-size: 24px; font-weight: 700; color: var(--dark); margin: 35px 0 15px; padding-left: 15px; border-left: 4px solid var(--gold); }
.article-body h3 { font-size: 20px; font-weight: 600; color: var(--dark2); margin: 25px 0 12px; }
.article-body p { font-size: 16px; color: #444; line-height: 1.8; margin-bottom: 18px; }
.article-body ul { margin: 15px 0 20px 20px; }
.article-body ul li { font-size: 15px; color: #444; margin-bottom: 8px; position: relative; padding-left: 20px; }
.article-body ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.article-body .highlight-box {
  background: rgba(201,162,39,0.1);
  border-left: 4px solid var(--gold);
  padding: 20px 25px;
  border-radius: 0 10px 10px 0;
  margin: 25px 0;
}
.article-body .highlight-box p { margin: 0; font-weight: 500; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page { background: var(--light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 25px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 25px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { color: var(--white); font-size: 20px; }
.contact-card h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.contact-card p, .contact-card a { font-size: 15px; color: var(--gray); line-height: 1.6; }
.contact-card a:hover { color: var(--gold); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-placeholder {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  border-radius: 20px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-img-placeholder i { font-size: 80px; color: var(--gold); opacity: 0.4; }
.about-img-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 15px;
  padding: 15px 20px;
  text-align: center;
  font-weight: 800;
}
.about-img-badge .num { font-size: 36px; line-height: 1; }
.about-img-badge .label { font-size: 13px; }

.about-text .section-label { text-align: left; display: block; }
.about-text h2 { font-size: 34px; font-weight: 800; color: var(--dark); margin-bottom: 20px; text-align: left; }
.about-text p { font-size: 16px; color: var(--gray); margin-bottom: 16px; }
.features-list { display: flex; flex-direction: column; gap: 12px; margin: 25px 0; }
.feature-item { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--dark); }
.feature-item i { color: var(--gold); font-size: 18px; }

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 28px;
  left: 20px;
  width: 46px;
  height: 46px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 9998;
  font-size: 18px;
  box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--gold); transform: translateY(-3px); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 60px 0 50px; }
  .hero h1 { font-size: 34px; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-page-grid { grid-template-columns: 1fr; }
  .article-content-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section-title h2 { font-size: 28px; }
  .hero h1 { font-size: 28px; }

  nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 20px; box-shadow: var(--shadow); }
  nav.open { display: flex; }
  nav a { padding: 12px 20px; border-radius: 8px; }
  .hamburger { display: flex; }

  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .trust-bar .container { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .blog-list-card { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 30px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .hero-btns { flex-direction: column; }
  .float-btn .tooltip { display: none; }
}
