/* ============================================
   AINALU IBIZA — Estilos principales
   ============================================ */

/* ---------- Custom Properties ---------- */
:root {
  --navy: #1a1f36;
  --navy-light: #252b48;
  --charcoal: #2d3142;
  --gold: #c9a84c;
  --gold-light: #e2c36b;
  --gold-dark: #a88a32;
  --white: #ffffff;
  --off-white: #f8f8f6;
  --light-gray: #f0efe9;
  --mid-gray: #b0b0b0;
  --dark-text: #222222;
  --body-text: #555555;

  --font-heading: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12);

  --radius: 12px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

/* ---------- Utility ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--body-text);
  font-size: 1.05rem;
}

.section-header .line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto 0;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 36px;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: .5px;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}

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

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- Fade-in Animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26,31,54,.97);
  padding: 14px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  backdrop-filter: blur(10px);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

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

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gold);
  color: var(--navy) !important;
  border-radius: 50px;
  font-size: .8rem !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 28px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(26,31,54,.88) 0%, rgba(45,49,66,.75) 50%, rgba(26,31,54,.9) 100%),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=80') center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,.1) 0%, transparent 50%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(201,168,76,.3);
  border-radius: 50%;
  animation: float-up linear infinite;
}

@keyframes float-up {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero h1 .accent {
  color: var(--gold);
  position: relative;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.7);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image .img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(26,31,54,.15) 0%, rgba(45,49,66,.1) 100%),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=800&q=80') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.about-image .img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
}

.about-image .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 20px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

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

.experience-badge .label {
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text > p {
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--light-gray);
  border-radius: 8px;
  transition: var(--transition);
}

.value-item:hover {
  background: rgba(201,168,76,.1);
  transform: translateX(4px);
}

.value-item i {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.value-item span {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}

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

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

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,.1);
  border-radius: 12px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--gold);
  transition: var(--transition);
}

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

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

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.service-card p {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--body-text);
  margin-bottom: 20px;
}

.service-link {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-link:hover {
  gap: 10px;
  color: var(--gold-dark);
}

/* ============================================
   WHY CHOOSE US / STATS
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(201,168,76,.1) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(201,168,76,.06) 0%, transparent 50%);
}

.stats-section .section-header h2 {
  color: var(--white);
}

.stats-section .section-header p {
  color: rgba(255,255,255,.6);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 36px 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(201,168,76,.3);
  transform: translateY(-4px);
}

.stat-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,.15);
  border-radius: 50%;
  margin: 0 auto 20px;
}

.stat-icon i {
  color: var(--gold);
  font-size: 1.3rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

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

.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.project-card .project-bg {
  width: 100%;
  height: 100%;
  transition: var(--transition);
}

.project-card:nth-child(1) .project-bg {
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=600&q=80') center/cover no-repeat;
}
.project-card:nth-child(2) .project-bg {
  background: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=600&q=80') center/cover no-repeat;
}
.project-card:nth-child(3) .project-bg {
  background: url('https://images.unsplash.com/photo-1582268611958-ebfd161ef9cf?w=600&q=80') center/cover no-repeat;
}
.project-card:nth-child(4) .project-bg {
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=600&q=80') center/cover no-repeat;
}
.project-card:nth-child(5) .project-bg {
  background: url('https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?w=600&q=80') center/cover no-repeat;
}
.project-card:nth-child(6) .project-bg {
  background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=600&q=80') center/cover no-repeat;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,31,54,.95) 0%, rgba(26,31,54,.2) 40%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 1;
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  background: linear-gradient(to top, rgba(26,31,54,.98) 0%, rgba(26,31,54,.4) 50%, rgba(26,31,54,.2) 100%);
}

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

.project-overlay .tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .7rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.project-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.project-overlay p {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}

/* ============================================
   PROCESS
   ============================================ */
.process-section {
  background: var(--light-gray);
}

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

.process-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(201,168,76,.2));
}

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

.step-number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 50%;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.process-step:hover .step-number {
  background: var(--gold);
  color: var(--white);
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-step p {
  font-size: .9rem;
  color: var(--body-text);
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.testimonial-card {
  min-width: 100%;
  padding: 50px;
  text-align: center;
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--dark-text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--charcoal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
}

.author-info h4 {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
}

.author-info span {
  font-size: .82rem;
  color: var(--mid-gray);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.testimonial-controls button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(26,31,54,.1);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  transition: var(--transition);
}

.testimonial-controls button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(26,31,54,.15);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dots .dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
  background: var(--light-gray);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info > p {
  margin-bottom: 30px;
  font-size: 1rem;
  color: var(--body-text);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,.1);
  border-radius: 10px;
  transition: var(--transition);
}

.contact-item:hover .icon-box {
  background: var(--gold);
}

.contact-item .icon-box i {
  color: var(--gold);
  font-size: 1.1rem;
  transition: var(--transition);
}

.contact-item:hover .icon-box i {
  color: var(--white);
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-item span {
  font-size: .9rem;
  color: var(--body-text);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(26,31,54,.06);
  color: var(--navy);
  font-size: 1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

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

.form-group {
  margin-bottom: 4px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0dfd8;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark-text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--mid-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}

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

.contact-form-wrapper .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 16px;
  font-size: 1rem;
}

/* ============================================
   MAP
   ============================================ */
.map-section {
  height: 400px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3) contrast(1.1);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

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

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

.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  padding: 4px 0;
  transition: var(--transition);
}

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

.footer-contact-info p {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-info p i {
  color: var(--gold);
  font-size: .85rem;
  width: 16px;
  text-align: center;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  margin-top: 0;
}

.footer-bottom p {
  color: rgba(255,255,255,.35);
  font-size: .82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,.35);
  font-size: .82rem;
  transition: var(--transition);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section-padding { padding: 70px 0; }

  /* Navbar */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0,0,0,.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; }
  .hamburger { display: flex; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-values { grid-template-columns: 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* Projects */
  .projects-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-grid { grid-template-columns: 1fr 1fr; }

  /* Testimonials */
  .testimonial-card { padding: 30px 20px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .contact-form-wrapper { padding: 24px; }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }


