/* Extracted styles from original index.html */
/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
ul {
  list-style: none;
}
button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}
input,
textarea {
  font-family: inherit;
}

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #0f2b46;
  --primary-light: #1a3f5c;
  --accent: #c8953e;
  --accent-light: #daa94e;
  --accent-dark: #b07e30;
  --text: #1a1a2e;
  --text-light: #555b6e;
  --text-muted: #8d93a1;
  --bg-light: #f8f9fc;
  --bg-warm: #faf8f5;
  --white: #ffffff;
  --border: #e8e9ed;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 80px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --section-padding: clamp(64px, 10vw, 120px);
  --container: 1200px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.section-padding {
  padding: var(--section-padding) 0;
}
.text-center {
  text-align: center;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== TYPOGRAPHY ===== */
.heading-display {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.heading-sans {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-tag::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.7;
}
.section-subtitle.center {
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200, 149, 62, 0.35);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 149, 62, 0.45);
}
.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(--primary);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}
.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
}
.nav-logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.4s ease;
}
.nav.scrolled .nav-logo-text {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.nav.scrolled .nav-links a {
  color: var(--text-light);
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.875rem !important;
}

.nav-toggle {
  display: none;
  background: none;
  padding: 8px;
}
.nav-toggle svg {
  width: 24px;
  height: 24px;
  color: var(--white);
  transition: color 0.4s ease;
}
.nav.scrolled .nav-toggle svg {
  color: var(--primary);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary);
  z-index: 1000;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.mobile-menu.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

/* Mobile menu header: logo + brand + close */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 40px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}
.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-menu-logo img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: contain;
}
.mobile-menu-logo span {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.mobile-menu-close {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}
.mobile-menu-close svg {
  color: var(--white);
}
.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Mobile menu links */
.mobile-menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 32px 24px;
}
.mobile-menu-links a {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s ease;
}
.mobile-menu-links a:hover {
  color: var(--accent);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, #0a1628 0%, #0f2b46 40%, #163a5c 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(200, 149, 62, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(200, 149, 62, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content {
  padding: 40px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(200, 149, 62, 0.15);
  border: 1px solid rgba(200, 149, 62, 0.3);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 24px;
}
.hero-badge svg {
  width: 16px;
  height: 16px;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title span {
  color: var(--accent-light);
}
.hero-text {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
}

/* Hero image / visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -32px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.hero-float-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-float-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}
.hero-float-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
}
.hero-float-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== ABOUT / TRUST BAR ===== */
.about {
  background: var(--bg-light);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-container {
  position: relative;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-accent-box {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.about-accent-box .number {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.about-accent-box .label {
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  margin-top: 4px;
  opacity: 0.9;
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 24px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}
.about-feature-icon {
  width: 32px;
  height: 32px;
  background: rgba(200, 149, 62, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature-icon svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

/* ===== SERVICES ===== */
.services {
  background: var(--white);
}
.services-header {
  text-align: center;
  margin-bottom: 64px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    rgba(200, 149, 62, 0.1),
    rgba(200, 149, 62, 0.05)
  );
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.925rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
}
.service-list {
  margin-bottom: 0;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--bg-light);
}
.service-list li:last-child {
  border-bottom: none;
}
.service-list li svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(200, 149, 62, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.why-us-header {
  text-align: center;
  margin-bottom: 64px;
}
.why-us-header .section-tag {
  color: var(--accent-light);
}
.why-us-header .section-tag::before {
  background: var(--accent-light);
}
.why-us-header .section-title {
  color: var(--white);
}
.why-us-header .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}
.why-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}
.why-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(200, 149, 62, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent-light);
}
.why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ===== CTA CONTACT ===== */
.cta-contact {
  background: linear-gradient(135deg, #0a1628 0%, #0f2b46 50%, #163a5c 100%);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-contact h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}
.cta-contact p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  font-size: 1.05rem;
  position: relative;
  z-index: 2;
}
.cta-contact .btn {
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(200, 149, 62, 0.35);
  position: relative;
  z-index: 2;
}
.cta-contact .btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 149, 62, 0.45);
}

/* ===== CONTACT ===== */
.contact {
  background: var(--bg-light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info {
  padding-right: 24px;
}
.contact-info p {
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 149, 62, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}
.contact-detail h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}
.contact-detail p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}
.contact-detail a {
  color: var(--accent);
}
.contact-detail a:hover {
  color: var(--accent-dark);
}

/* Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.contact-form-card > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg-light);
  transition: all 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(200, 149, 62, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  margin-top: 8px;
}

/* ===== MAP ===== */
.map-section {
  background: var(--white);
  padding: 0;
}
.map-header {
  text-align: center;
  padding: var(--section-padding) 0 48px;
}
.map-container {
  width: 100%;
  height: 450px;
  border-radius: 0;
  overflow: hidden;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 320px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}
.footer-logo span {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.footer h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.3s ease;
}
.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.footer-social a svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== FLOATING PHONE ===== */
.phone-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(200, 149, 62, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  animation: phonePulse 2s infinite;
}
.phone-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(200, 149, 62, 0.5);
}
.phone-float svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}
@keyframes phonePulse {
  0% {
    box-shadow: 0 4px 24px rgba(200, 149, 62, 0.4);
  }
  50% {
    box-shadow:
      0 4px 24px rgba(200, 149, 62, 0.4),
      0 0 0 12px rgba(200, 149, 62, 0.12);
  }
  100% {
    box-shadow: 0 4px 24px rgba(200, 149, 62, 0.4);
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    padding-top: 100px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  /* Text first, image second on tablet/mobile */
  .hero-content {
    order: 0;
  }
  .hero-visual {
    order: 1;
  }
  .hero-text {
    margin: 0 auto 40px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  /* Creative: side-by-side image + float card in a compact layout */
  .hero-image-wrapper {
    max-width: 400px;
    aspect-ratio: 16/10;
    border-radius: var(--radius-lg);
    margin: 0 auto;
  }
  .hero-float-card {
    left: auto;
    right: -16px;
    bottom: -16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  /* Text first, image second for about section on tablet too */
  .about-text {
    order: 0;
  }
  .about-image-container {
    order: 1;
    max-width: 540px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-us-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-info {
    padding-right: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-inner {
    height: 68px;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .hero-stats {
    gap: 32px;
    flex-wrap: wrap;
  }
  .hero-float-card {
    display: none;
  }
  /* Creative: overlap the image behind the stats as a subtle background hint */
  .hero-visual {
    order: 1;
  }
  .hero-image-wrapper {
    max-width: 320px;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-card {
    padding: 32px 24px;
  }

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

  .map-container {
    height: 320px;
  }

  .about-accent-box {
    width: 110px;
    height: 110px;
    top: -16px;
    right: -8px;
  }
  .about-accent-box .number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .hero-image-wrapper {
    max-width: 260px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 4px solid rgba(200, 149, 62, 0.3);
  }
  .hero-stat-number {
    font-size: 2rem;
  }
  .btn {
    padding: 14px 24px;
    font-size: 0.875rem;
  }
}
