/* =====================================================
   RESET & BASE LUXURY PREMIUM THEME – SHINE OASIS
   ===================================================== */

/* Reset, Normalize & Box-sizing */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F6F8F3;
  color: #222;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}

:root {
  --primary: #244B5A;
  --secondary: #71B48D;
  --accent: #F6F8F3;
  --luxury-gold: #C4A036;
  --luxury-dark-bg: #202832;
  --luxury-grey: #E6E6E0;
  --luxury-shadow: 0 4px 24px 0 rgba(36,75,90,0.08);
  --radius: 16px;
  --header-height: 70px;
}

/* -----------------------------------------------------
   TYPOGRAPHY: PREMIUM & SOPHISTICATED
----------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.18;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 22px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.125rem;
}

p, li, a, ul {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #222;
}
p {
  margin-bottom: 15px;
}
.subheadline {
  font-size: 1.25rem;
  color: var(--secondary);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

strong, b {
  color: var(--primary);
}

/* Luxury Gold Accent for special */
.gold {
  color: var(--luxury-gold);
}

/* =====================================================
   GENERAL SPACING & CONTAINER STRUCTURE
   ===================================================== */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .container {
    max-width: 98vw;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 768px) {
  .section,
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
header {
  background: #fff;
  border-bottom: 2px solid var(--luxury-grey);
  box-shadow: 0 2px 12px rgba(36,75,90,0.05);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 38px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  text-decoration: none;
  padding: 8px 0 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-bottom .2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--luxury-gold);
  border-bottom: 2px solid var(--luxury-gold);
}
.cta-button {
  background: var(--primary);
  color: #fff;
  font-size: 1.125rem;
  font-family: 'Montserrat', sans-serif;
  padding: 11px 32px;
  border-radius: 34px;
  box-shadow: 0 4px 24px rgba(36,75,90,0.07);
  border: none;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  position: relative;
  transition: background .19s, color .19s, box-shadow .21s;
  display: inline-block;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: var(--luxury-gold);
  color: var(--primary);
  box-shadow: 0 8px 32px rgba(36,75,90,0.17);
  transform: translateY(-2px) scale(1.027);
}

/* ========== MOBILE MENU ========== */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--primary);
  border: none;
  font-size: 2.1rem;
  font-weight: 700;
  cursor: pointer;
  margin-left: 18px;
  margin-right: 0;
  z-index: 51;
}
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-button {
    display: none;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 24px rgba(36,75,90,0.19);
  z-index: 1002;
  transition: transform .41s cubic-bezier(.77,.13,.37,1.11);
  will-change: transform;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 35px 22px 22px 38px;
}
.mobile-menu.open {
  transform: translateX(-100vw);
  right: 0;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--primary);
  position: absolute;
  top: 24px;
  right: 23px;
  cursor: pointer;
  z-index: 1003;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
  width: 100%;
}
.mobile-nav a {
  color: var(--primary);
  text-decoration: none;
  font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  padding: 10px 0 10px 0;
  border-bottom: 1px solid var(--luxury-grey);
  transition: color .21s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--luxury-gold);
}

@media (max-width: 991px) {
  .mobile-menu {
    right: 0;
    transform: translateX(0);
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
}

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

/* ======================= HERO SECTION ======================== */
.hero {
  background: linear-gradient(120deg, #fff 0%, var(--accent) 100%);
  min-height: 38vh;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.hero .content-wrapper {
  gap: 14px;
  margin: 50px 0 38px 0;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .hero {
    min-height: 240px;
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .hero .container {
    flex-direction: column;
    align-items: stretch;
  }
}

/* =============== FEATURES, CARDS, GRIDS =================== */
.features, .features-benefits, .features-usp {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--luxury-shadow);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
  align-items: stretch;
}
.feature {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 28px 23px;
  box-shadow: var(--luxury-shadow);
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 230px;
  transition: box-shadow .19s, transform .23s;
}
.feature:hover, .feature:focus {
  box-shadow: 0 8px 40px 0 rgba(196,160,54,0.10), var(--luxury-shadow);
  transform: translateY(-3px) scale(1.025);
}
.feature img {
  width: 46px;
  margin-bottom: 4px;
}
.feature h3 {
  color: var(--luxury-gold);
  font-size: 1.15rem;
  font-weight: 600;
}

@media (max-width: 991px) {
  .feature-grid {
    flex-direction: column;
    gap: 22px;
  }
  .feature {
    flex: 1 1 100%;
    min-width: unset;
  }
}

/* ============== SERVICES, CARDS, LISTS ================ */
.services-summary, .services-list {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--luxury-shadow);
}
.service-list, .benefit-list, .team-list {
  margin-bottom: 18px;
  margin-top: 14px;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.service-list li, .benefit-list li, .team-list li {
  position: relative;
  padding-left: 20px;
  color: #232323;
}
.service-list li::before, .benefit-list li::before, .team-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--luxury-gold);
  position: absolute;
  left: 2px;
  top: 11px;
}

.service-card {
  background: var(--accent);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--luxury-shadow);
  margin-bottom: 20px;
  margin-top: 12px;
  transition: box-shadow .18s,transform .19s;
}
.service-card:hover {
  transform: translateY(-2px) scale(1.017);
  box-shadow: 0 8px 38px 0 rgba(196,160,54,0.09), var(--luxury-shadow);
}

/* ============== CARDS & CARD CONTAINER =================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--luxury-shadow);
  padding: 25px 22px;
  transition: box-shadow .16s, transform .18s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 42px 0 rgba(36,75,90,0.10), var(--luxury-shadow);
  transform: scale(1.017);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* ============== TESTIMONIALS =================== */
.testimonials, .testimonials-clients {
  background: #FFF;
  padding-top: 48px;
  padding-bottom: 36px;
}
.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 24px 24px 24px;
  background: #fafaf6;
  border-radius: var(--radius);
  box-shadow: 0 2px 24px rgba(36,75,90,0.07);
  min-width: 265px;
  max-width: 360px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  transition: box-shadow .18s,transform .20s;
}
.testimonial-card .stars {
  color: var(--luxury-gold);
  font-size: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.testimonial-card p {
  color: #222;
  margin-bottom: 10px;
}
.testimonial-card .client-details {
  color: var(--secondary);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 32px 0 rgba(196,160,54,0.08), var(--luxury-shadow);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .testimonial-row {
    flex-direction: column;
    gap: 18px;
  }
}

/* =========== CTA SECTIONS =========== */
.cta {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--luxury-shadow);
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
}
.cta h2, .cta p, .cta a {
  color: #fff;
}
.cta a.cta-button {
  background: var(--luxury-gold);
  color: var(--primary);
}
.cta a.cta-button:hover, .cta a.cta-button:focus {
  background: #fff;
  color: var(--primary);
}

/* ============= MISC & FORMS ============== */
input[type="text"], input[type="email"], textarea {
  border: 1.5px solid var(--luxury-grey);
  border-radius: 9px;
  padding: 10px 15px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 16px;
  outline: none;
  background: #fff;
}
input:focus, textarea:focus {
  border-color: var(--luxury-gold);
  box-shadow: 0 2px 18px rgba(196,160,54,0.06);
}
.search-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.search-bar input {
  border-radius: 19px;
  border: 1.5px solid var(--secondary);
  padding: 10px 18px;
  font-size: 1rem;
  width: 230px;
  background: #f6f6f6;
  transition: border-color .18s;
}
.post-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.post-preview {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--luxury-shadow);
  padding: 22px 18px;
  min-width: 220px;
  flex: 1 1 220px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow .18s,transform .18s;
}
.post-preview a {
  color: var(--primary);
  text-decoration: underline;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  transition: color .18s;
}
.post-preview a:hover {
  color: var(--luxury-gold);
}
.category-tag {
  display: inline-block;
  background: var(--luxury-gold);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.91rem;
  padding: 3px 14px;
  border-radius: 11px;
  margin-top: 9px;
  font-weight: 600;
}

/* ================ TEXT SECTION TEMPLATES ================ */
.text-section {
  margin-bottom: 16px;
  margin-top: 8px;
}
.text-section ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-left: 22px;
  margin-bottom: 8px;
}
.text-section li {
  position: relative;
}
.text-section li:before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 999px;
  display: inline-block;
  margin-right: 8px;
  position: absolute;
  left: -13px;
  top: 8px;
}
.map-section {
  margin-top: 12px;
  font-size: 1rem;
}

/* ============= FOOTER =============*/
footer {
  background: var(--luxury-dark-bg);
  color: #fff;
  margin-top: 64px;
}
.footer-contact {
  background: var(--luxury-dark-bg);
  padding: 46px 0 0 0;
}
.footer-contact .container {
  display: flex;
  flex-direction: column;
}
.footer-contact .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
.footer-contact .contact-info {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.footer-contact .contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact .contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #fff;
}
.footer-nav {
  flex: 1 1 170px;
  margin-right: 22px;
}
.footer-nav h3 {
  color: var(--luxury-gold);
  font-size: 1.05rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
  font-weight: 700;
}
.footer-nav ul, .footer-nav li {
  list-style: none;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.99rem;
  font-family: 'Open Sans', sans-serif;
  padding: 5px 0;
  transition: color .18s;
  display: inline-block;
}
.footer-nav a:hover {
  color: var(--luxury-gold);
}

.social-links {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-links h3 {
  color: var(--luxury-gold);
  font-size: 1.03rem;
  margin-bottom: 6px;
}
.social-links a {
  display: inline-block;
  margin-right: 14px;
}
.social-links img {
  width: 33px;
  transition: filter .16s;
  filter: grayscale(60%);
}
.social-links a:hover img {
  filter: grayscale(0%) brightness(1.15);
}
footer .copyright {
  color: #afbbc5;
  font-size: 0.93rem;
  text-align: center;
  margin: 34px auto 32px auto;
  letter-spacing: 0.1em;
}

@media (max-width: 991px) {
  .footer-contact .content-wrapper {
    flex-direction: column;
    gap: 26px;
  }
  .footer-contact {
    padding: 34px 0 0 0;
  }
}

/* ============= COOKIE CONSENT BANNER ============== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0px -8px 48px 0px rgba(36,75,90,0.10);
  z-index: 1100;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 36px;
  padding: 22px 16px 22px 16px;
  transition: transform .33s cubic-bezier(.8,.12,.22,1.01);
  will-change: transform;
}
.cookie-banner.hide { transform: translateY(100%); }
.cookie-banner p {
  margin-right: 9px;
  font-size: 1rem;
  color: #333;
  max-width: 390px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-banner button {
  border-radius: 22px;
  padding: 8px 22px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-right: 7px;
  cursor: pointer;
  transition: background .18s, color .17s;
  outline: none;
}
.cookie-banner .accept {
  background: var(--luxury-gold);
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .reject {
  background: #ddd;
  color: var(--primary);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner .settings {
  background: none;
  color: var(--primary);
  text-decoration: underline;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  color: var(--luxury-gold);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 7px;
  }
  .cookie-banner p {
    margin-right: 0;
    margin-bottom: 5px;
  }
}

/* -------- COOKIE PREFERENCES MODAL -------- */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(36,75,90,0.45);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .24s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  max-width: 420px;
  min-width: 300px;
  box-shadow: 0 8px 48px rgba(36,75,90,0.20);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  margin-bottom: 4px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cookie-toggle {
  accent-color: var(--luxury-gold);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 8px;
  justify-content: flex-end;
}
.cookie-modal button.close-modal {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.6rem;
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal button.close-modal:hover {
  color: var(--luxury-gold);
}
@media (max-width:500px) {
  .cookie-modal-content {
    min-width: unset;
    padding: 13vw 4vw 7vw 6vw;
  }
}

/* =========================================================
   LUXURY MICRO-INTERACTIONS, EFFECTS, UTILS
   ========================================================= */
::-webkit-scrollbar {
  width: 12px;
  background: #fafaf6;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--luxury-grey);
  border-radius: 8px;
}
a {
  transition: color .18s, border-bottom .18s;
}

.button,
.btn {
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  border-radius: 13px;
  border: none;
  padding: 9px 29px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .19s, color .17s, box-shadow .21s, transform .17s;
}
.button:hover, .btn:hover, .button:focus, .btn:focus {
  background: var(--luxury-gold);
  color: var(--primary);
  box-shadow: 0 8px 32px rgba(36,75,90,0.17);
  transform: translateY(-1px) scale(1.025);
}

hr {
  border: 0;
  border-top: 1px solid var(--luxury-grey);
  margin: 30px 0;
}

/* =============== LUXURY ACCENT & SUBTLE SHADOWS =============== */
.gold-divider {
  height: 2px;
  background: var(--luxury-gold);
  width: 60px;
  border-radius: 1px;
  margin: 0 0 32px 0;
}

.shadow-up {
  box-shadow: 0 8px 32px 0 rgba(36,75,90,0.13);
}
.rounded {
  border-radius: var(--radius);
}

/* ============ RESPONSIVE HEADING SIZES =========== */
@media (max-width: 600px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.28rem; }
  h3 { font-size: 1.02rem; }
  .cta-button, .button, .btn {
    font-size: 1rem;
    padding: 8px 13vw;
  }
}

/* ====================================================
   SPECIAL PAGE ELEMENTS – THANK YOU, POLICY TEXTS
==================================================== */
.thank-you-section {
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--luxury-shadow);
  margin-top: 40px;
  margin-bottom: 70px;
  padding: 60px 30px;
}
.privacy-policy, .gdpr-policy, .cookie-policy, .terms-conditions {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--luxury-shadow);
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 40px 28px;
}
.privacy-policy h1, .gdpr-policy h1, .cookie-policy h1, .terms-conditions h1 {
  font-size: 2rem;
  margin-bottom: 21px;
}

/* =====================================================
   MISC: ACCESSIBILITY, FOCUS STYLES, VISUAL FEEDBACK
   ===================================================== */
:focus-visible {
  outline: 2px solid var(--luxury-gold);
  outline-offset: 2px;
}

[tabindex="0"]:focus {
  box-shadow: 0 0 0 2px var(--luxury-gold);
}

/* Hide visually but keep accessible */
.sr-only {
  border: 0 !important;
  clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

/* ================ END OF STYLE.CSS ================ */
