/* RESET & BASE STYLES */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #f8fafb;
  color: #222;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 16px;
}
th {
  background: #18536B;
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
td {
  background: #fff;
  border-bottom: 1px solid #E8F1F4;
  color: #222;
  font-size: 1rem;
}

/* BRAND COLORS & LUXURY PREMIUM PALETTE */
:root {
  --primary: #18536B;
  --secondary: #ffffff;
  --background: #f8fafb;
  --accent: #b95b00;
  --gold: #c7a053;
  --soft-gold-lt: #f7e6c6;
  --soft-gold: #e1c495;
  --dark-text: #1a2024;
  --muted: #94a3af;
  --shadow: 0 4px 24px 0 rgba(24,83,107,0.06), 0 1.5px 6px 0 rgba(201,152,66,.10);
  --radius: 18px;
  --spacing-xs: 8px;
  --spacing-s: 16px;
  --spacing: 20px;
  --spacing-l: 32px;
  --spacing-xl: 48px;
}

body {
  background: var(--background);
  color: var(--dark-text);
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

p, ul, ol, address {
  color: var(--dark-text);
  font-size: 1.05rem;
  margin-bottom: 1em;
}
strong {
  font-weight: bold;
  color: var(--primary);
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.2rem;
  }
}

/* CONTAINER & SECTIONS */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 32px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-section {
  margin-bottom: 20px;
  background: none;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(24,83,107,0.14), 0 1.5px 14px 0 rgba(201,152,66,0.12);
  transform: translateY(-4px) scale(1.015);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.feature-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--soft-gold-lt);
  color: var(--primary);
  border-radius: 12px;
  padding: 14px 24px;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  min-width: 220px;
  box-shadow: 0 2px 8px 0 rgba(201,175,110,0.06);
  transition: box-shadow .18s, background .18s;
}
.feature-grid li img {
  width: 34px;
  height: 34px;
}
.feature-grid li:hover {
  box-shadow: 0 6px 14px 0 rgba(185,91,0,.08);
  background: var(--soft-gold);
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(110deg, #fff6ef 60%, #e8f1f4 100%);
  padding: 64px 0 40px 0;
  box-shadow: 0 4px 60px 0 rgba(24,83,107,0.04);
  position: relative;
}
.hero-section .container {
  justify-content: center;
}
.hero-section .content-wrapper {
  align-items: center;
  gap: 24px;
}
.hero-section h1 {
  font-size: 2.7rem;
  background-image: linear-gradient(90deg,var(--primary),var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0 32px 0;
  }
  .hero-section h1 {
    font-size: 1.55rem;
  }
}

/* CTA */
.cta-section {
  background: var(--primary);
  color: #fff;
  padding: 56px 0 48px 0;
  box-shadow: 0 8px 40px 0 rgba(24,83,107,0.10);
  border-radius: var(--radius);
}
.cta-section h2,
.cta-section p {
  color: #fff;
}
.cta-section .btn-primary {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .cta-section {
    padding: 36px 0 32px 0;
  }
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  min-width: 150px;
  padding: 14px 34px;
  border-radius: 32px;
  border: none;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .18s;
  text-align: center;
  box-shadow: 0 2px 10px 0 rgba(185,91,0,0.06);
  outline: none;
}
.btn-primary {
  background: linear-gradient(90deg,var(--gold) 0%, var(--accent) 100%);
  color: #fff;
  letter-spacing: 0.02em;
  border-bottom: 3px solid var(--gold);
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(88deg, var(--accent) 30%, var(--gold) 100%);
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(201,152,66,0.16);
}
.btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 4px 14px 0 rgba(201,152,66,0.08);
}

/* NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 12px 0 rgba(24,83,107,0.07);
  position: sticky;
  top: 0;
  z-index: 1002;
}
.main-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  padding: 0 20px;
  position: relative;
}
.logo-link img {
  height: 52px;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: .01em;
  padding: 4px 8px;
  transition: color 0.13s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--accent);
}
.main-nav .btn-primary {
  margin-left: auto;
  min-width: 162px;
}

/* HIDE MOBILE NAV ON DESKTOP */
.mobile-menu-toggle, .mobile-menu {
  display: none;
}

@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
    padding: 0 8px;
  }
  .logo-link img {
    height: 40px;
  }
}
@media (max-width: 768px) {
  .main-nav a:not(.logo-link):not(.btn-primary) { display: none; }
  .main-nav .btn-primary { display: none; }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 18px;
    background: var(--primary);
    color: #fff;
    border: none;
    font-size: 2.1rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    z-index: 1101;
    box-shadow: 0 2px 10px rgba(24,83,107,0.11);
    transition: background 0.18s, transform 0.16s;
  }
  .mobile-menu-toggle:active {
    background: var(--accent);
    transform: scale(0.95);
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100vw;
  height: 100vh;
  z-index: 2004;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.56,.17,.14,.98);
  -webkit-overflow-scrolling: auto;
  box-shadow: 4px 0 64px rgba(24,83,107,0.14);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--gold);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin: 24px 0 12px 22px;
  cursor: pointer;
  align-self: flex-start;
  box-shadow: 0 2px 14px rgba(185,91,0,0.11);
  transition: background 0.2s, transform 0.13s;
  z-index: 15;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--accent);
  transform: scale(0.96);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 38px;
  margin-top: 24px;
  width: 80vw;
  max-width: 360px;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 15px 0 8px 0;
  border-bottom: 1.5px solid #f8dfa7;
  transition: color 0.13s, border 0.18s;
  min-width: 180px;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--accent);
  border-bottom: 1.5px solid var(--gold);
}

@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 6px 36px 0 rgba(24,83,107,0.10);
  border: 2.5px solid var(--soft-gold);
  min-width: 0;
}
.testimonial-content p {
  color: #222;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.testimonial-author {
  color: var(--primary);
  display: block;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
}
.stars {
  color: var(--accent);
  font-size: 1.15rem;
  letter-spacing: 3px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.faq-accordion h2 {
  font-size: 1.17rem;
  color: var(--primary);
  background: var(--soft-gold-lt);
  padding: 12px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
}
.faq-accordion h2:hover {
  background: var(--soft-gold);
}
.faq-body {
  background: #fff;
  color: var(--dark-text);
  border-radius: 8px;
  padding: 12px 20px 18px 24px;
  border-left: 4px solid var(--gold);
  font-size: 1.02rem;
  margin-bottom: 10px;
  transition: background 0.14s;
  box-shadow: 0 2px 8px 0 rgba(24,83,107,0.06);
}

.faq-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
}
.faq-cta p {
  margin-bottom: 0;
}

/* PRICING TABLE */
table {
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}
table th {
  font-size: 1.08rem;
  background: var(--primary);
  color: #fff;
  padding: 16px 20px;
}
table td {
  background: #fff;
  color: #222;
}
table tr {
  border-bottom: 1px solid #F1F6F9;
}
table tr:last-child {
  border-bottom: none;
}
table .highlight {
  background: var(--soft-gold-lt);
  color: var(--accent);
  font-weight: 700;
  border-radius: 7px;
  padding: 4px 11px;
  margin-left: 10px;
  font-size: 1em;
}

/* CARD, FEATURE, GRID LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ADDRESS MAP, THANK YOU, ETC. */
.address-map {
  background: var(--secondary);
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(24,83,107,0.04);
  padding: 16px 22px;
  margin-top: 6px;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 20px;
}
.thankyou-message {
  text-align: center;
  margin-top: 18px;
  margin-bottom: 24px;
}

/* FOOTER */
footer {
  width: 100%;
  background: #fff;
  margin-top: 48px;
  box-shadow: 0 -4px 18px 0 rgba(24,83,107,0.07);
  padding: 38px 0 30px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .98rem;
  min-width: 174px;
}
.footer-brand img {
  height: 42px;
  margin-bottom: 10px;
}
.footer-contact-short, .footer-contact-short a {
  color: var(--muted);
  font-size: .96rem;
}
.footer-contact-short span {
  display: inline-block;
  margin-bottom: 4px;
}
@media (max-width: 900px) {
  footer .container {
    gap: 12px;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-brand img {
    height: 36px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #222;
  box-shadow: 0 -6px 32px 0 rgba(24,83,107,0.12);
  z-index: 4200;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 20px 8vw 20px 8vw;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: transform .32s;
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
}
.cookie-consent-banner .cookie-message {
  flex: 1 1 0%;
  font-size: 1.02rem;
  color: var(--dark-text);
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  padding: 10px 26px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  margin: 0;
  transition: background 0.21s, color 0.18s;
}
.cookie-consent-banner .btn-accept {
  background: linear-gradient(90deg,var(--gold) 0%, var(--accent) 100%);
  color: #fff;
  font-weight: 700;
}
.cookie-consent-banner .btn-accept:hover,.cookie-consent-banner .btn-accept:focus {
  background: linear-gradient(90deg,var(--accent),var(--gold));
  color: #fff;
}
.cookie-consent-banner .btn-reject {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--accent);
}
.cookie-consent-banner .btn-reject:hover {
  background: var(--soft-gold-lt);
  color: var(--primary);
}
.cookie-consent-banner .btn-settings {
  background: #eee8db;
  color: var(--primary);
}
.cookie-consent-banner .btn-settings:hover {
  background: var(--soft-gold);
  color: #fff;
}
@media (max-width: 768px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 12px;
    padding: 20px 6vw 20px 6vw;
    font-size: 0.96rem;
  }
  .cookie-consent-banner .cookie-actions {
    gap: 10px;
  }
}

/* COOKIE PREFERENCES MODAL POPUP */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 5300;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 41, 51, 0.4);
  backdrop-filter: blur(2.5px);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  padding: 36px 26px;
  border-radius: var(--radius);
  box-shadow: 0 12px 48px rgba(24,83,107,0.15);
  width: 96vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  animation: popup-fadein .38s cubic-bezier(.45,0,.22,.99);
}
@keyframes popup-fadein {
  0% { opacity: 0; transform: scale(.9) translateY(32px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.12rem;
  color: var(--primary);
  margin-bottom: 0;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f2ede3;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal .category-label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 1rem;
}
.cookie-modal .toggle {
  display: flex;
  align-items: center;
  gap: 7px;
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 21px;
}
.cookie-modal .switch input { 
  opacity: 0; width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #eee8db;
  border-radius: 22px;
  transition: background 0.17s;
}
.cookie-modal .switch input:checked + .slider {
  background: linear-gradient(90deg,var(--gold),var(--accent));
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 2px; bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
  box-shadow: 0 2px 4px rgba(185,91,0,0.14);
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(15px);
  background: var(--accent);
}
.cookie-modal .desc {
  font-size: .96rem;
  color: #687a85;
  opacity: 0.95;
}
.cookie-modal .settings-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .settings-actions .btn-primary, .cookie-modal .settings-actions .btn-secondary {
  padding: 8px 20px;
  font-size: 1rem;
  border-radius: 19px;
}

@media (max-width: 520px) {
  .cookie-modal {
    padding: 22px 5vw;
  }
}

/* LUXURY DETAILS */
/* Gold accent line for section headers (optional for luxury premium feel) */
h2, h1 {
  position: relative;
  padding-left: 0;
}
h2:after, h1:after {
  display: block;
  content: '';
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg,var(--gold),var(--accent));
  border-radius: 2.5px;
  margin: 14px 0 0 0;
}
@media (max-width: 600px) {
  h2:after, h1:after {
    width: 32px;
    height: 3px;
    margin: 10px 0 0 0;
  }
}

/* Micro Interactions */
a:not([class]) {
  border-bottom: 1px solid var(--accent);
  transition: color 0.14s, border-bottom 0.16s;
}
a:not([class]):hover {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

/* Responsive Spacing Adjustments */
@media (max-width: 600px) {
  .card, .testimonial-card {
    padding: 14px 10px;
  }
  .content-wrapper {
    gap: 12px;
  }
}

/* Hide outlines when not keyboard nav, for luxury feel. */
:focus {
  outline: 2.5px solid var(--gold);
  outline-offset: 2px;
}

/* SCROLLBAR LUXURY STYLING */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg,var(--gold),var(--accent));
  border-radius: 6px;
}
::-webkit-scrollbar-track {
  background: var(--background);
}

/* MEDIA QUERIES FOR FLEX DIRECTION SWITCHES */
/* Already managed above for .text-image-section and .content-wrapper */

/* UTILITY CLASSES */
.muted {
  color: var(--muted);
}
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }

/* SHADOWS for luxury touch */
.shadow-sm {
  box-shadow: 0 2px 8px 0 rgba(201,175,110,0.09);
}
.shadow-lg {
  box-shadow: 0 10px 38px rgba(185,91,0,0.09);
}

/* HIDE/SHOW UTILITIES (for js manipulation) */
.d-none { display: none !important; }

/* END OF CSS */
