/* ==========================================
   ANJANI REAL HEIGHTS - MODERN DESIGN
   Professional Real Estate Website
   ========================================== */

:root {
  --primary: #0066B3;
  --secondary: #909090;
  --accent: #FF6B35;
  --gold: #FFB81C;
  --dark: #1a1a1a;
  --light: #f8f9fa;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --border: #e5e5e5;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================== GLOBAL RESET ================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================== HEADER ================== */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__logo {
  width: 120px;
  height: auto;
  object-fit: contain;
  border: none;
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__name {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.brand__tagline {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav a {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a:hover {
  color: var(--secondary);
}

.nav a i {
  font-size: 14px;
}

.header__cta {
  display: flex;
  gap: 12px;
}

.chip {
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 13px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.chip--call {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: var(--white);
}

.chip--call:hover {
  background: var(--primary);
  color: var(--white);
}

.chip--wa {
  background: #25D366;
  color: var(--white);
  font-weight: 700;
  padding: 12px 22px;
  font-size: 14px;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.chip--wa:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ================== HERO SECTION ================== */
.hero {
  background: linear-gradient(135deg, #0066B3 0%, #003d6b 50%, #001f3f 100%);
  position: relative;
  padding: 80px 0;
  color: var(--white);
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,184,28,0.15);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 30px;
  border: 2px solid var(--gold);
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(255,184,28,0.2);
}

.hero__badge i {
  color: var(--gold);
  font-size: 18px;
}

.hero__title {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}

.hero__subtitle {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero__subtitle strong {
  color: var(--gold);
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

.feature-item i {
  color: var(--gold);
  font-size: 18px;
}

.hero__actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn--primary {
  background: var(--gold);
  color: var(--dark);
}

.btn--primary:hover {
  background: #ff9500;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  font-weight: 700;
  padding: 16px 32px;
  font-size: 16px;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--primary);
}

.btn--large {
  width: 100%;
  padding: 18px 32px;
  font-size: 17px;
  font-weight: 800;
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 6px 20px rgba(255,184,28,0.4);
}

.btn--large:hover {
  background: #ff9500;
  box-shadow: 0 6px 24px rgba(255,184,28,0.5);
  transform: translateY(-2px);
}

.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__image-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: var(--transition);
}

.hero__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 30px 24px;
  transform: translateY(0);
  transition: var(--transition);
}

.hero__image-overlay i {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 10px;
}

.hero__image-overlay h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: var(--white);
}

.hero__image-overlay p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 20px 15px;
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-5px);
}

.stat-card i {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 10px;
}

.stat-card h4 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 5px;
}

.stat-card p {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
}

/* ================== SECTIONS ================== */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-label {
  display: inline-block;
  background: var(--light);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-label--light {
  background: rgba(255,255,255,0.15);
  color: var(--gold);
}

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-header p.section-intro {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ================== HSVP SECTION ================== */
.hsvp-section {
  background: var(--light);
  padding: 80px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.location-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  border-color: var(--accent);
}

.location-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0066B3, #004d87);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.location-card:hover .location-icon {
  background: linear-gradient(135deg, var(--accent), #ff8c42);
  transform: scale(1.1);
}

.location-icon i {
  font-size: 32px;
  color: var(--white);
}

.location-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.location-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ================== SERVICES SECTION ================== */
.services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--light);
  padding: 35px 30px;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(-8px) scale(1.02);
}

.service-icon {
  width: 65px;
  height: 65px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--accent);
  transform: scale(1.05);
}

.service-icon i {
  font-size: 28px;
  color: var(--white);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ================== WHY CHOOSE US ================== */
.why-section {
  background: var(--light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.why-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 4px solid var(--primary);
}

.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  border-left-color: var(--accent);
}

.why-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #0066B3, #004d87);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-icon i {
  font-size: 24px;
  color: var(--white);
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ================== NEWS SECTION ================== */
.news-section {
  background: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.news-card {
  background: var(--light);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}

.news-card:hover::before {
  transform: scaleX(1);
}

.news-card:hover {
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent);
}

.news-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.news-badge--property {
  background: var(--secondary);
}

.news-badge--info {
  background: var(--accent);
  color: var(--dark);
}

.news-date {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.news-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.news-link {
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.news-link:hover {
  color: var(--accent);
  gap: 12px;
}

.news-subscribe {
  background: linear-gradient(135deg, #0066B3 0%, #003d6b 50%, #001f3f 100%);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  color: var(--white);
}

.subscribe-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.subscribe-content i {
  font-size: 48px;
  color: var(--gold);
}

.subscribe-content h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

.subscribe-content p {
  font-size: 15px;
  opacity: 0.9;
}

/* ================== CONSULTATION FORM ================== */
.consultation-section {
  background: linear-gradient(135deg, #0066B3 0%, #003d6b 50%, #001f3f 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.consultation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid2" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid2)"/></svg>');
  opacity: 0.5;
}

.consultation-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.consultation-section h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.consultation-section .section-label {
  background: rgba(255,184,28,0.2);
  color: var(--gold);
  border: 2px solid var(--gold);
  font-weight: 800;
}

.consultation-info p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.95;
}

.consultation-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.consultation-feature {
  display: flex;
  gap: 18px;
  align-items: start;
}

.consultation-feature i {
  font-size: 28px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}

.consultation-feature h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--white);
}

.consultation-feature p {
  font-size: 15px;
  opacity: 0.85;
  margin: 0;
}

.form-wrapper {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-header {
  margin-bottom: 30px;
  text-align: center;
}

.form-header h3 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.form-header p {
  font-size: 15px;
  color: rgba(255,255,255,0.95);
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.form-group label i {
  font-size: 14px;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 15px;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-status {
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px;
  display: none;
}

.form-status:not(:empty) {
  display: block;
}

/* ================== TEAM SECTION ================== */
.team-section {
  background: var(--light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.team-image {
  position: relative;
  overflow: hidden;
  height: 450px;
  background: var(--light);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  transition: var(--transition);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-contact-btn {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 20px;
  transition: var(--transition);
}

.team-contact-btn:hover {
  transform: scale(1.1);
  background: #c29d2f;
}

.team-info {
  padding: 30px;
}

.team-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.team-role {
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-experience {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-experience i {
  color: var(--primary);
}

.team-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ================== LOCATION FOCUS ================== */
.location-focus-section {
  background: linear-gradient(135deg, #0066B3 0%, #003d6b 50%, #001f3f 100%);
  color: var(--white);
  padding: 80px 0;
}

.location-focus-section .section-header h2 {
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.location-focus-section .section-intro {
  color: rgba(255,255,255,0.95);
  font-size: 18px;
  line-height: 1.9;
}

.location-focus-section .section-intro strong {
  color: var(--gold);
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(255,184,28,0.3);
}

.areas-showcase {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.area-tag {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  color: var(--white);
}

.area-tag:hover {
  background: rgba(255, 184, 28, 0.2);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 184, 28, 0.3);
}

.area-tag i {
  color: var(--gold);
  font-size: 14px;
}

.area-tag--premium {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.area-tag--premium:hover {
  background: var(--accent);
}

/* ================== MAPS SECTION ================== */
.maps-section {
  background: var(--light);
}

.maps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.map-download-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.map-download-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  border-color: var(--accent);
}

.premium-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gold);
  color: var(--dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.map-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0066B3, #004d87);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.map-download-card:hover .map-icon {
  background: linear-gradient(135deg, var(--accent), #ff8c42);
  transform: scale(1.1) rotate(5deg);
}

.map-icon i {
  font-size: 32px;
  color: var(--white);
}

.map-download-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.map-download-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.map-download-card:hover .download-btn {
  background: var(--gold);
  color: var(--dark);
}

.map-download-card--premium {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fffef7, #ffffff);
}

/* ================== CONTACT SECTION ================== */
.contact-section {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: var(--white);
}

.contact-section .section-header h2 {
  color: var(--white);
}

.contact-section .section-intro {
  color: rgba(255,255,255,0.9);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.contact-card--whatsapp {
  background: rgba(37,211,102,0.1);
  border-color: #25D366;
}

.contact-card--whatsapp:hover {
  background: rgba(37,211,102,0.2);
}

.contact-card-icon {
  width: 70px;
  height: 70px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.1);
  background: var(--accent);
}

.contact-card--whatsapp .contact-card-icon {
  background: #25D366;
}

.contact-card--whatsapp:hover .contact-card-icon {
  background: #20BA5A;
}

.contact-card-icon i {
  font-size: 32px;
  color: var(--white);
}

.contact-card-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.contact-card-content p {
  font-size: 15px;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.8);
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.contact-card:hover .contact-card-link {
  gap: 12px;
}

.office-hours {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 16px;
}

.office-hours i {
  font-size: 28px;
  color: var(--gold);
}

/* ================== SEO CONTENT ================== */
.seo-content-section {
  background: var(--light);
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.seo-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.seo-content h3 {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 15px;
}

.seo-content p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ================== FOOTER ================== */
.footer {
  background: linear-gradient(135deg, #0a1628 0%, #1a2942 50%, #0a1628 100%);
  color: rgba(255,255,255,0.95);
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  width: 160px;
  height: auto;
  object-fit: contain;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 25px;
  border-radius: 16px;
  border: 2px solid var(--gold);
  box-shadow: 0 8px 32px rgba(255, 184, 28, 0.2), 
              0 4px 16px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.footer-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255, 184, 28, 0.3), 
              0 6px 20px rgba(0, 0, 0, 0.5);
}

.footer-about h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.footer-about p {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  font-weight: 500;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 184, 28, 0.4);
}

.footer-social a i {
  font-size: 20px;
  color: var(--white);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-links a,
.footer-services a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin-bottom: 14px;
  transition: var(--transition);
  position: relative;
  padding-left: 0;
}

.footer-links a::before,
.footer-services a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: var(--transition);
  color: var(--gold);
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--gold);
  padding-left: 20px;
  text-shadow: 0 0 10px rgba(255, 184, 28, 0.6);
}

.footer-links a:hover::before,
.footer-services a:hover::before {
  opacity: 1;
}

.footer-contact p {
  font-size: 15px;
  margin-bottom: 16px;
  display: flex;
  align-items: start;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 4px;
  font-size: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 35px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
  font-weight: 500;
}

/* ================== FLOATING WHATSAPP ================== */
.waFloat {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.waFloat:hover {
  transform: scale(1.1);
  background: #20BA5A;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(37,211,102,0);
  }
}

/* ================== RESPONSIVE ================== */
@media (max-width: 968px) {
  .hero__content {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 36px;
  }

  .consultation-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-md);
    gap: 15px;
  }

  .nav.active {
    display: flex;
  }

  .header__cta {
    flex-direction: column;
    width: 100%;
  }

  .chip {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: 60px 0;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__features {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .services-grid,
  .location-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .news-subscribe {
    flex-direction: column;
    text-align: center;
  }

  .subscribe-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .brand__logo {
    width: 90px;
  }

  .brand__text {
    display: none;
  }

  .hero__title {
    font-size: 28px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .form-wrapper {
    padding: 25px;
  }
}

/* ================== PHASE 1 UX ENHANCEMENTS ================== */

/* Scroll-triggered fade-in animations */
.fade-in-element {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Floating WhatsApp tooltip */
.waFloat {
  position: relative;
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #1a1a1a;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: #1a1a1a;
  border-right: none;
}

.waFloat:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
}

.wa-tooltip.mobile-show {
  opacity: 1;
  visibility: visible;
}

/* Mobile touch target improvements */
@media (max-width: 768px) {
  /* Reduce section padding */
  .section {
    padding: 60px 0;
  }

  .hsvp-section,
  .location-focus-section {
    padding: 60px 0;
  }

  /* Increase nav link touch targets */
  .nav a {
    padding: 15px 10px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Ensure buttons meet 44px minimum */
  .btn {
    min-height: 48px;
    padding: 14px 24px;
  }

  .chip {
    min-height: 44px;
    padding: 12px 20px;
  }

  /* Form inputs height */
  .form-group input,
  .form-group select,
  .form-group textarea {
    min-height: 56px;
    padding: 16px;
    font-size: 16px;
  }

  /* Submit button */
  .btn--large {
    min-height: 56px;
    padding: 16px 24px;
  }

  /* Footer social icons */
  .footer-social a {
    width: 48px;
    height: 48px;
  }

  /* Contact cards */
  .contact-card {
    padding: 30px 20px;
  }

  /* WhatsApp tooltip positioning for mobile */
  .wa-tooltip {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
  }

  .wa-tooltip::after {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: -8px;
    border: 8px solid transparent;
    border-top-color: #1a1a1a;
    border-bottom: none;
  }
}

/* ================== PHASE 2 UX ENHANCEMENTS ================== */

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .parallax-layer,
  .hero__glow-blob {
    transform: none !important;
  }

  /* Disable depth parallax on sections */
  .hero::before,
  .hero::after,
  .hsvp-section::before,
  .hsvp-section::after,
  .location-focus-section::before,
  .location-focus-section::after {
    transform: none !important;
  }
}

/* ===== STEP A: Parallax + Depth Layers (Enhanced) ===== */

/* Hero parallax depth layers */
.hero {
  position: relative;
  overflow: hidden;
}

/* Hero depth layer ::before - Large gold glow (slow movement) */
.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 28, 0.35) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transition: transform 0.2s ease-out;
  transform: translateY(var(--depth-before-y, 0));
}

/* Hero depth layer ::after - Blue glow (medium movement) */
.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 179, 0.3) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transition: transform 0.2s ease-out;
  transform: translateY(var(--depth-after-y, 0));
}

/* JS-created glow blobs (kept for additional depth) */
.hero__glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.hero__glow-blob--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 184, 28, 0.5) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.hero__glow-blob--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 102, 179, 0.4) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
}

.hero__glow-blob--3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
  top: 50%;
  left: 30%;
}

/* ===== HSVP Section Depth Layers ===== */
.hsvp-section {
  position: relative;
  overflow: hidden;
}

/* HSVP depth ::before - Soft gold accent (lighter than hero) */
.hsvp-section::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 28, 0.15) 0%, transparent 70%);
  top: -80px;
  left: -60px;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transition: transform 0.2s ease-out;
  transform: translateY(var(--depth-before-y, 0));
}

/* HSVP depth ::after - Soft blue accent */
.hsvp-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 179, 0.12) 0%, transparent 70%);
  bottom: -60px;
  right: -50px;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transition: transform 0.2s ease-out;
  transform: translateY(var(--depth-after-y, 0));
}

/* ===== Location Focus Section Depth Layers ===== */
.location-focus-section {
  position: relative;
  overflow: hidden;
}

/* Location depth ::before - Very subtle gold */
.location-focus-section::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 28, 0.1) 0%, transparent 70%);
  top: 20%;
  right: -40px;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transition: transform 0.2s ease-out;
  transform: translateY(var(--depth-before-y, 0));
}

/* Location depth ::after - Very subtle primary */
.location-focus-section::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 179, 0.08) 0%, transparent 70%);
  bottom: 10%;
  left: -30px;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transition: transform 0.2s ease-out;
  transform: translateY(var(--depth-after-y, 0));
}

/* Parallax layer base styles */
.parallax-layer {
  will-change: transform;
  transition: transform 0.15s ease-out;
}

/* Depth layer parallax class for CSS pseudo-elements (applied via JS) */
.depth-parallax-active::before,
.depth-parallax-active::after {
  will-change: transform;
}

/* Section divider with gradient line */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 20%, var(--accent) 50%, var(--primary) 80%, transparent 100%);
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.6s ease-out, transform 0.8s ease-out;
}

.section-divider.visible {
  opacity: 0.6;
  transform: scaleX(1);
}

/* ===== STEP B: Glassmorphism Upgrade ===== */

/* Enhanced form wrapper with better glass effect */
.form-wrapper {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 40px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Glass shimmer effect */
.form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Enhanced input focus states */
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* Input hover state (desktop only) */
@media (hover: hover) {
  .form-group input:hover,
  .form-group select:hover,
  .form-group textarea:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
  }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 4px rgba(255, 184, 28, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.2);
  outline: none;
}

/* Input error state (visual only) */
.form-group input:invalid:not(:placeholder-shown),
.form-group input.error {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.15);
}

/* Low-end device fallback for glass */
@supports not (backdrop-filter: blur(24px)) {
  .form-wrapper {
    background: rgba(0, 61, 107, 0.95);
  }
}

/* ===== STEP C: Mobile Snap-Scroll Carousel ===== */

@media (max-width: 768px) {
  /* Location cards carousel */
  .location-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 10px 20px 20px;
    margin: 0 -20px;
    scrollbar-width: none;
  }

  .location-grid::-webkit-scrollbar {
    display: none;
  }

  .location-card {
    flex: 0 0 85vw;
    max-width: 320px;
    scroll-snap-align: start;
  }

  /* Services cards carousel */
  .services-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 10px 20px 20px;
    margin: 0 -20px;
    scrollbar-width: none;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    flex: 0 0 85vw;
    max-width: 340px;
    scroll-snap-align: start;
  }

  /* News cards carousel */
  .news-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 10px 20px 20px;
    margin: 0 -20px;
    scrollbar-width: none;
  }

  .news-grid::-webkit-scrollbar {
    display: none;
  }

  .news-card {
    flex: 0 0 85vw;
    max-width: 340px;
    scroll-snap-align: start;
  }

  /* Maps cards carousel */
  .maps-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 10px 20px 20px;
    margin: 0 -20px;
    scrollbar-width: none;
  }

  .maps-grid::-webkit-scrollbar {
    display: none;
  }

  .map-download-card {
    flex: 0 0 80vw;
    max-width: 300px;
    scroll-snap-align: start;
  }

  /* Edge fade hints for carousels */
  .hsvp-section .container,
  .services-section .container,
  .news-section .container,
  .maps-section .container {
    position: relative;
  }

  .hsvp-section .container::after,
  .services-section .container::after,
  .news-section .container::after,
  .maps-section .container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to left, var(--light) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
  }

  .services-section .container::after {
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
  }

  .news-section .container::after {
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
  }
}

/* ===== STEP D: Micro-interactions ===== */

/* Button press/tap feedback */
.btn:active,
.chip:active {
  transform: scale(0.96) translateY(1px);
  transition: transform 0.1s ease;
}

.btn--whatsapp:active {
  transform: scale(0.96) translateY(1px);
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.4);
}

/* Nav link hover underline animation */
.nav a {
  position: relative;
  overflow: hidden;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: translateX(-101%);
  transition: transform 0.3s ease;
}

.nav a:hover::after {
  transform: translateX(0);
}

/* Card icon pulse on hover */
.location-icon,
.service-icon,
.why-icon,
.map-icon,
.contact-card-icon {
  position: relative;
}

.location-card:hover .location-icon::after,
.service-card:hover .service-icon::after,
.map-download-card:hover .map-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: inherit;
  opacity: 0;
  animation: iconPulse 0.6s ease-out;
}

@keyframes iconPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Image hover shimmer effect */
.hero__image-card::after,
.team-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 100%
  );
  transition: left 0.6s ease;
  pointer-events: none;
}

.hero__image-card:hover::after,
.team-card:hover .team-image::after {
  left: 150%;
}

/* Footer link icon animation */
.footer-links a:hover::before,
.footer-services a:hover::before {
  animation: arrowBounce 0.4s ease;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* Section label entrance animation */
.section-label {
  position: relative;
  overflow: hidden;
}

.section-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: labelShine 3s ease-in-out infinite;
}

@keyframes labelShine {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

/* Smooth scroll indicator for carousels (mobile) */
@media (max-width: 768px) {
  .scroll-hint {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
  }

  .scroll-hint-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: all 0.3s ease;
  }

  .scroll-hint-dot.active {
    background: var(--primary);
    transform: scale(1.2);
  }
}

/* Submit button loading state */
.btn--large.loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn--large.loading::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: var(--dark);
  border-radius: 50%;
  margin-left: 10px;
  animation: btnSpin 0.8s linear infinite;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

/* Focus visible for keyboard navigation */
.btn:focus-visible,
.chip:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* CLS-safe image placeholders */
.hero__image-card img,
.team-image img {
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}
