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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f8f9fa;
    padding-top: 120px;
    background-image: url('bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.72);
    pointer-events: none;
    z-index: -1;
}

/* NAVBAR */
.navbar {
    width: 100%;
    min-height: 104px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 12px 36px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.28s ease, box-shadow 0.28s ease, backdrop-filter 0.28s ease, -webkit-backdrop-filter 0.28s ease;
}

.navbar.scrolled-header {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.navbar-left {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-width: 280px;
}

.logo img {
    height: clamp(74px, 7.5vw, 96px);
    width: auto;
    display: block;
    padding: 10px 10px 10px 6px;
}

.company-name {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #0f3c4c;
    font-size: 1.08rem;
    letter-spacing: 0.035em;
    line-height: 1.05;
    white-space: nowrap;
}

.navbar-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-actions {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    color: #004d55;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
    color: #00b3ad;
    background: #e6f6f5;
    transform: translateY(-1px);
}

.facebook-link svg {
    width: 20px;
    height: 20px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: #004d55;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.2s ease;
    padding: 10px 0;
    display: inline-flex;
    align-items: center;
}

.nav-links li a:hover {
    color: #00b3ad;
}

.nav-links li a.active {
    color: #00b3ad;
    position: relative;
}

.nav-links li a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: #00b3ad;
    opacity: 0.22;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #e6f6f5;
    border: 1px solid #c7e7e5;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #004d55;
    border-radius: 999px;
}

/* CTA BUTTON */
.cta-button {
    padding: 12px 22px;
    background: #00b3ad;
    color: white;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 162px;
    text-align: center;
}

.cta-button:hover {
    background: #009c97;
    box-shadow: 0 10px 24px rgba(0, 179, 173, 0.25);
    transform: translateY(-1px);
}

.navbar .cta-button {
    margin-left: 0;
    white-space: nowrap;
}
/* Layout */
main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  padding: 4rem 0;
  background: #f7f8fb;
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section p {
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.about-card {
  background: linear-gradient(145deg, #ffffff 0%, #f9fbfc 100%);
  border: 1px solid #e5e7eb;
  border-radius: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.75rem);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.about-card h2 {
  margin-bottom: 1rem;
}

.founders-section {
  margin-top: 2rem;
}

.founders-section h3 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.founder-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 1.25rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.founder-photo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.founder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 0.5rem auto;
}

.founder-name {
  font-size: 1.1rem;
  font-weight: 600;
}

.founder-title {
  font-size: 0.95rem;
  color: #667085;
}

.founder-role {
  font-size: 1rem;
  color: #0f3c4c;
  font-weight: 700;
}

.founder-text {
  line-height: 1.7;
  color: #0f172a;
}

.founder-bio {
  margin-top: 0.35rem;
  line-height: 1.6;
  max-width: 32rem;
}

/* Hero */
.hero {
  padding: 5rem 0 4rem;
}

.hero-content {
  max-width: 720px;
}

.hero-tagline {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-hero {
  padding: 4rem 0 2rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 3.4vw, 2.9rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

.services-hero {
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}

.services-hero-inner h1 {
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  margin-bottom: 0.75rem;
}

.services-intro {
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 780px;
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

.hero-mini .mini-item::before {
  content: "";
}

/* Buttons */
.btn-primary,
.btn-outline,
.btn-nav,
.btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease-in-out;
}

.btn-primary {
  background: #111827;
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}

.btn-outline {
  background: transparent;
  border-color: #111827;
  color: #111827;
}

.btn-outline:hover {
  background: #111827;
  color: #ffffff;
}

.btn-nav {
  padding: 0.4rem 1rem;
}

.btn-large {
  padding: 0.8rem 1.8rem;
  margin-top: 0.5rem;
}

.navbar-nav {
  position: relative;
}

/* Grids */
.section-grid.two-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.card {
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 0 5px 18px rgba(15, 23, 42, 0.06);
}

.card h3 {
  margin-bottom: 0.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-image {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  max-height: 200px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 0.85rem;
  background: #0f3c4c;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  align-self: flex-start;
}

.book-btn:hover {
  background: #0c3040;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(15, 60, 76, 0.18);
}

.service-note {
  background: rgba(15, 60, 76, 0.06);
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  font-weight: 600;
  color: #0f3c4c;
  line-height: 1.5;
}

.service-note a {
  color: #0f3c4c;
  text-decoration: none;
  font-weight: 700;
}

.service-note a:hover {
  text-decoration: underline;
}

.whatsapp-booking {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366;
  color: #ffffff;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-top: 0.35rem;
  align-self: flex-start;
}

.whatsapp-booking:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1ebe5a;
  color: #ffffff;
}

.whatsapp-icon svg {
  width: 16px;
  height: 16px;
}

/* Lists & notes */
.bullet-list {
  padding-left: 1.1rem;
}

.bullet-list li {
  margin-bottom: 0.4rem;
}

.small-note {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}

/* Contact form */
.contact-form {
  margin-top: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-form label {
  font-size: 0.85rem;
  opacity: 0.8;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 0.75rem;
  border: 1px solid #d1d5db;
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #111827;
}

.contact-whatsapp {
  margin-top: 1rem;
}

.contact-card {
  background: linear-gradient(145deg, #f8fbfd 0%, #f4f8fb 100%);
  border: 1px solid #e2edf4;
  border-radius: 1.35rem;
  padding: 2rem;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1160px;
  margin: 0 auto;
}

.contact-card-premium {
  position: relative;
  overflow: hidden;
}

.contact-card-premium::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(0, 179, 173, 0.12), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(15, 60, 76, 0.12), transparent 25%);
  pointer-events: none;
}

.contact-card-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-card-header h2 {
  margin: 0;
}

.contact-subtitle {
  font-size: 1rem;
  color: #0f3c4c;
  opacity: 0.9;
  max-width: 740px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  position: relative;
  z-index: 1;
}

.contact-content-single {
  grid-template-columns: 1fr;
  justify-items: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0.75rem;
  display: grid;
  gap: 0.75rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.85rem;
  background: rgba(0, 77, 85, 0.04);
}

.contact-icon {
  width: 20px;
  height: 20px;
  color: #004455;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

.contact-detail-text {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.contact-label {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: #004455;
  font-weight: 700;
}

.contact-value {
  display: inline;
  margin: 0;
  color: #0f172a;
  font-weight: 600;
}

.contact-list a {
  color: #004d55;
  font-weight: 700;
  text-decoration: none;
}

.contact-list a:hover {
  color: #00b3ad;
  text-decoration: underline;
}

.contact-section .btn-primary {
  align-self: flex-start;
}

.contact-note {
  margin: 0.25rem 0 0;
  color: #0f172a;
  opacity: 0.85;
  line-height: 1.55;
}

.payment-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.payment-label {
  font-weight: 700;
  color: #0f3c4c;
}

.payment-text {
  font-size: 14px;
  color: #333;
  margin-left: 6px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.payment-icons {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}

.pay-icon {
  height: 20px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}

.pay-icon[alt="Amex"],
.pay-icon[alt="Zelle"] {
  height: 22px !important;
}

.payment-icon {
  display: inline-flex;
  width: 44px;
  height: 22px;
  align-items: center;
  justify-content: center;
  color: #0f3c4c;
  opacity: 0.75;
}

.payment-icons .payment-icon svg {
  opacity: 1;
  filter: none;
  height: 22px;
  width: auto;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
  z-index: 1200;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.42);
  opacity: 0.96;
  background: #1ebe5d;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
}

.messenger-float {
  position: fixed;
  right: 24px;
  bottom: 88px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0084ff;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 132, 255, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
  z-index: 1200;
}

.messenger-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 30px rgba(0, 132, 255, 0.38);
  opacity: 0.96;
  background: #1877f2;
}

.messenger-float svg {
  width: 24px;
  height: 24px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  border: 1px solid transparent;
  padding: 0.65rem 1.4rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.25);
}

/* Footer */
.site-footer {
  background: #0f3c4c;
  color: #e5eef0;
  padding: 1.5rem 1.25rem;
  margin-top: 2rem;
}

  .footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
    font-size: 1rem;
  }

  .footer-main-line {
    margin-bottom: 0.5rem;
    line-height: 1.6;
  }

.footer-contact-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  font-weight: 700;
}

.footer-separator {
  color: #c4f3f0;
}

.footer-contact-row a {
  color: #c4f3f0;
  text-decoration: none;
  font-weight: 700;
}

.footer-contact-row a:hover {
  color: #e8ffff;
  text-decoration: underline;
}

.footer-icons .payment-icon {
  color: #c4f3f0;
  opacity: 1;
}

.footer-icons img {
  height: 20px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}

.footer-icons .payment-icon svg {
  opacity: 1;
  filter: none;
  height: 22px;
  width: auto;
}

@media (max-width: 600px) {
  .footer-contact-row {
    flex-wrap: wrap;
    font-size: 0.95rem;
    gap: 0.75rem 1rem;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .navbar {
    gap: 20px;
    padding: 10px 26px;
  }

  .navbar-left {
    min-width: 240px;
  }

  .nav-links {
    gap: 28px;
  }
}

@media (max-width: 900px) {
  body {
    padding-top: 110px;
  }

  .navbar {
    min-height: 96px;
    padding: 10px 18px;
    gap: 16px;
  }

  .navbar-left {
    min-width: auto;
    flex: 1;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .navbar-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 14px 18px 18px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  }

  .navbar.nav-open .navbar-nav {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
  }

  .nav-links li a {
    width: 100%;
    padding: 10px 0;
  }

  .cta-button {
    min-width: auto;
    padding: 11px 18px;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 64px;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-grid.two-columns,
  .cards-grid,
  .founders-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
    transform: translateY(0) scale(0.96);
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }

  .messenger-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 80px;
  }

  .services-hero {
    padding-top: 3rem;
  }

  .footer-inner {
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    justify-content: flex-start;
    gap: 1rem;
  }

  .footer-group {
    flex: 1 1 50%;
    white-space: normal;
  }
}
