@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #0f2238;
  --navy-2: #18324f;
  --gold: #b68b2e;
  --gold-light: #e2c067;
  --cream: #f7f3eb;
  --white: #ffffff;
  --text: #5f6f80;
  --border: rgba(15, 34, 56, 0.08);
  --shadow: 0 12px 30px rgba(15, 34, 56, 0.08);
  --radius: 16px;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(92%, 1220px);
  margin: 0 auto;
}

/* TOPBAR */
.topbar {
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  color: #f3dfb2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 2px;
}

.topbar-left {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-right span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  white-space: nowrap;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo {
  height: 74px;
  width: auto;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.menu a:hover {
  color: var(--gold);
}

.menu a:hover::after {
  width: 100%;
}

.contact-btn,
.instagram-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
}

.contact-btn,
.instagram-btn {
  padding: 13px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(182, 139, 46, 0.18);
}

.contact-btn:hover,
.instagram-btn:hover,
.btn:hover {
  transform: translateY(-2px);
}

/* HERO */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(15, 34, 56, 0.76), rgba(15, 34, 56, 0.76)),
    url('https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 34, 56, 0.94) 0%,
    rgba(15, 34, 56, 0.72) 55%,
    rgba(15, 34, 56, 0.58) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 110px 0 100px;
}

.hero-text {
  max-width: 760px;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(226, 192, 103, 0.12);
  border: 1px solid rgba(226, 192, 103, 0.32);
  color: #f4deb0;
  font-size: 14px;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 60px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
}

.hero p {
  color: #edf2f7;
  font-size: clamp(16px, 2vw, 18px);
  max-width: 680px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  padding: 15px 24px;
}

.primary-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}

.secondary-btn {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

/* QUICK */
.quick-info {
  margin-top: -42px;
  position: relative;
  z-index: 5;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.quick-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: 0 18px 35px rgba(15, 34, 56, 0.08);
  border-top: 4px solid #caa24b;
}

.quick-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--navy);
}

.quick-card p {
  color: #5b6978;
  font-size: 15px;
}

/* SECTION */
.section-space {
  padding: 95px 0;
}

.section-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}

.section-heading span,
.why-left span,
.contact-left span {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-heading h2,
.why-left h2,
.contact-left h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--navy);
}

.section-heading p,
.why-left p,
.contact-left p {
  color: var(--text);
  font-size: 17px;
}

/* SERVICES */
.services {
  background: #fffdf8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.service-box:hover {
  transform: translateY(-6px);
  border-color: rgba(182, 139, 46, 0.35);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 26px;
}

.service-box h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 14px;
}

.service-box p {
  color: #5c6a79;
}

/* WHY */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: start;
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-item {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  border-left: 4px solid #caa24b;
  box-shadow: var(--shadow);
}

.why-item h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 22px;
}

.why-item p {
  color: var(--text);
}

/* INSTAGRAM */
.instagram-section {
  background: var(--white);
}

.instagram-embed-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 250px;
}

.instagram-fallback {
  margin-top: 24px;
  text-align: center;
}

/* CONTACT */
.contact {
  background: #fffdf8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.contact-details {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #324457;
}

.form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
}

.form-box input,
.form-box textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 12px;
  border: 1px solid rgba(15, 34, 56, 0.12);
  outline: none;
  font-family: inherit;
  font-size: 15px;
  color: var(--navy);
  background: #fcfcfc;
  transition: var(--transition);
}

.form-box input:focus,
.form-box textarea:focus {
  border-color: rgba(182, 139, 46, 0.8);
  box-shadow: 0 0 0 3px rgba(182, 139, 46, 0.12);
}

.form-box textarea {
  min-height: 150px;
  resize: vertical;
}

.form-box button {
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 15px;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}

.form-box button:hover {
  transform: translateY(-2px);
}

.form-box button.loading {
  opacity: 0.75;
  pointer-events: none;
}

.form-status {
  display: none;
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
}

.form-status.success {
  display: block;
  background: rgba(37, 211, 102, 0.12);
  color: #178a45;
  border: 1px solid rgba(37, 211, 102, 0.28);
}

.form-status.error {
  display: block;
  background: rgba(220, 53, 69, 0.10);
  color: #b42333;
  border: 1px solid rgba(220, 53, 69, 0.20);
}

/* FOOTER */
.footer {
  background: var(--navy);
  color: #e6d6a6;
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* WHATSAPP */
.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.08);
}

/* TABLET */
@media (max-width: 1100px) {
  .quick-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 72vh;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .topbar {
    padding: 10px 0;
  }

  .topbar-inner {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .topbar-left {
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
  }

  .topbar-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .topbar-right span {
    justify-content: center;
    font-size: 13px;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
  }

  .menu,
  .contact-btn {
    display: none;
  }

  .nav {
    min-height: 78px;
  }

  .site-logo {
    height: 58px;
  }

  .hero {
    min-height: auto;
    background-position: center;
  }

  .hero-content {
    padding: 76px 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .instagram-btn {
    width: 100%;
  }

  .quick-info {
    margin-top: 30px;
  }

  .quick-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .quick-card,
  .service-box,
  .why-item,
  .form-box {
    padding: 22px 18px;
  }

  .section-space {
    padding: 75px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading p,
  .why-left p,
  .contact-left p {
    font-size: 16px;
  }

  .instagram-embed-wrap {
    min-height: 180px;
  }

  .whatsapp-btn {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
    font-size: 26px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .container {
    width: 94%;
  }

  .hero-tag {
    font-size: 13px;
  }

  .quick-card h3,
  .service-box h3,
  .why-item h3 {
    font-size: 20px;
  }

  .form-box input,
  .form-box textarea,
  .form-box button {
    font-size: 14px;
  }
}