/* ---- CSS RESET & NORMALIZE ---- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #FAFAF9;
  color: #212322;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, button:focus {
  outline: 2px solid #A98D51;
  outline-offset: 2px;
  z-index: 2;
}

/* --- Custom Properties for Brand --- */
:root {
  --color-primary: #245B34;
  --color-primary-dark: #183b20;
  --color-secondary: #fff;
  --color-secondary-bg: #F3F4F6;
  --color-accent: #6C9785;
  --color-gold: #A98D51;
  --color-gold-light: #E8D9B4;
  --color-grey: #666;
  --color-border: #E3E3DC;
  --color-success: #397457;
  --color-shadow: rgba(18,28,26,0.12);

  --font-display: 'Montserrat', 'Arial', sans-serif;
  --font-body: 'Roboto', 'Arial', sans-serif;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.14;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
p, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #313528;
  line-height: 1.7;
  margin-bottom: 12px;
}
.subheadline {
  font-size: 1.25rem;
  color: var(--color-accent);
  font-family: var(--font-display);
  margin-bottom: 24px;
}
strong {
  font-weight: 600;
  color: var(--color-primary);
}

/* ---- LAYOUT CONTAINERS ---- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  background: var(--color-secondary);
  border-radius: 22px;
  box-shadow: 0 2px 24px var(--color-shadow);
  padding: 36px 24px 36px 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 30px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 4px 24px var(--color-shadow);
  transform: translateY(-2px) scale(1.02);
  border-color: var(--color-gold);
  z-index: 1;
}

.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;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px var(--color-shadow);
  border-left: 4px solid var(--color-gold);
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  color: #313528;
  font-size: 1.06rem;
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial-card span {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 600;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px var(--color-shadow);
  border-left: 4px solid var(--color-gold-light);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.features-section .features-grid, .features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}
.feature {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 28px 20px;
  text-align: left;
  position: relative;
  transition: box-shadow 0.18s, border 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 210px;
}
.feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
}
.feature h3 {
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.feature p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 0;
}
.feature:hover {
  border-color: var(--color-gold);
  box-shadow: 0 6px 24px var(--color-shadow);
}

.about-values {
  margin-top: 20px;
  background: var(--color-secondary-bg);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 1px 6px var(--color-shadow);
}

.text-section {
  margin-bottom: 26px;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 22px 18px 15px;
  margin-bottom: 20px;
}
.faq-item h2, .faq-item h4 {
  font-size: 1.20rem;
  margin-bottom: 10px;
}
.faq-item p {
  color: #444;
  margin-bottom: 0;
}

/* ---- HERO SECTION ---- */
.hero-section {
  background: linear-gradient(105deg, #fff 65%, var(--color-secondary-bg) 100%);
  padding: 56px 0 48px 0;
  border-bottom: 3px solid var(--color-gold-light);
}
.hero-section h1 {
  color: var(--color-primary);
  font-size: 3rem;
  font-family: var(--font-display);
  margin-bottom: 20px;
}
.hero-section p.subheadline {
  font-size: 1.2rem;
  color: var(--color-accent);
  font-weight: 500;
}

/* ---- PRICING TABLE ---- */
.pricing-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0px 2px 12px var(--color-shadow);
  margin-bottom: 28px;
  overflow: hidden;
  margin-top: 12px;
}
.pricing-table th, .pricing-table td {
  padding: 18px 16px;
  text-align: left;
  font-size: 1rem;
  font-family: var(--font-body);
}
.pricing-table thead th {
  background: var(--color-primary);
  color: #fff;
  font-size: 1.07rem;
  font-family: var(--font-display);
  font-weight: 600;
}
.pricing-table tbody tr {
  border-bottom: 1px solid var(--color-border);
}
.pricing-table tbody tr:last-child {
  border-bottom: none;
}
.pricing-features {
  margin-bottom: 24px;
}
.pricing-features li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}
.pricing-features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
  position: absolute;
  left: 8px;
  top: 10px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-secondary);
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  border: none;
  border-radius: 9px;
  padding: 13px 32px;
  cursor: pointer;
  box-shadow: 0 2px 12px var(--color-shadow);
  transition: background 0.18s, color 0.18s, transform 0.14s;
  margin-top: 14px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-primary);
  color: var(--color-gold);
  transform: translateY(-2px) scale(1.03);
}

.btn-secondary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-primary);
  background: #fff;
  border: 2px solid var(--color-primary);
  border-radius: 9px;
  padding: 11px 26px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-gold-light);
  border-color: var(--color-gold);
  color: var(--color-primary-dark);
}

/* ---- HEADER & NAVIGATION ---- */
header {
  background: #fff;
  border-bottom: 1.5px solid var(--color-border);
  z-index: 80;
  position: sticky;
  top: 0;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 10px 0;
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-primary);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  position: relative;
  transition: color 0.16s, border-bottom 0.18s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}
.header-flex .btn-primary {
  margin: 0 0 0 16px;
  font-size: 1rem;
  padding: 10px 24px;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 2rem;
  cursor: pointer;
  display: none;
  margin-left: 12px;
  z-index: 110;
  transition: color 0.15s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: var(--color-gold);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,91,52, 0.92);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.82,.02,.42,1.04);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  margin: 26px 24px 0 0;
  cursor: pointer;
  z-index: 202;
  align-self: flex-end;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 48px 32px 24px 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.28rem;
  color: #fff;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-bottom 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}

/* Show/hide nav elements on mobile */
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .header-flex .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ---- FOOTER ---- */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 38px 0 24px 0;
  font-size: 1rem;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 54px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-right: 10px;
}
.footer-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  transition: color 0.15s;
  font-size: 1rem;
}
.footer-nav a:hover {
  color: var(--color-gold);
  text-decoration: underline;
}
.footer-contact span {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  font-size: 1rem;
  color: #fff;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  filter: brightness(1.7);
}
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  justify-content: center;
  transition: background 0.16s;
}
.footer-social img {
  width: 20px;
  height: 20px;
}
.footer-social a:hover {
  background: var(--color-gold);
}

/* ---- LISTS ---- */
ul {
  list-style: none;
  padding-left: 0;
}
ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 1rem;
}
ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  position: absolute;
  left: 2px;
  top: 10px;
}

/* ---- UTILITY CLASSES ---- */
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }

/* ---- RESPONSIVE DESIGN ---- */
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .content-wrapper {
    padding: 26px 12px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .hero-section { padding: 34px 0 22px; }
  .footer-flex {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .section {
    padding: 24px 6vw;
    margin-bottom: 36px;
  }
  .features-section .features-grid,
  .features-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-grid {
    gap: 14px;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 15px;
  }
  .container {
    max-width: 100vw;
    padding-left: 3vw;
    padding-right: 3vw;
  }
  h1 { font-size: 1.2rem; }
  .content-wrapper {
    padding: 10vw 2vw 12vw 2vw;
  }
  .about-values { padding: 10vw 2vw; }
  .testimonial-card, .faq-item, .card {
    padding: 18px 10px !important;
  }
}


/* ---- MICRO-INTERACTIONS & ANIMATIONS ---- */
.btn-primary, .btn-secondary, .main-nav a, .footer-nav a, .mobile-menu-toggle, .mobile-menu-close, .footer-social a {
  transition: background 0.17s, color 0.17s, box-shadow 0.14s, transform 0.13s;
}
.card, .testimonial-card, .faq-item {
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.17s;
}
.card:hover, .testimonial-card:hover, .faq-item:hover {
  box-shadow: 0px 6px 28px var(--color-shadow);
  transform: translateY(-2px) scale(1.02);
}

/* ---- COOKIES CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 2.5px solid var(--color-gold);
  box-shadow: 0 -2px 20px var(--color-shadow);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  z-index: 2200;
  animation: cookieBannerIn 0.44s cubic-bezier(.79,0,.38,1);
}
@keyframes cookieBannerIn { from { transform: translateY(110%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-banner p {
  color: var(--color-primary);
  font-size: 1rem;
  flex: 1 1 240px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 7.5px 26px;
  border-radius: 8px;
  border: 1.5px solid transparent;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  background: var(--color-gold);
  color: #fff;
  cursor: pointer;
  transition: background 0.17s, color 0.16s, border 0.16s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-primary);
  color: var(--color-gold);
  border-color: var(--color-gold-light);
}
.cookie-btn.reject {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--color-secondary-bg);
  color: var(--color-primary-dark);
  border-color: var(--color-gold);
}
.cookie-btn.settings {
  background: var(--color-gold-light);
  color: var(--color-primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-primary);
  color: #fff;
}

/* Cookies Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,91,52, 0.6);
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieOverlayIn 0.26s cubic-bezier(.79,0,.38,1);
}
@keyframes cookieOverlayIn { 0% { opacity: 0; } 100% { opacity: 1; } }

.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 48px var(--color-shadow);
  max-width: 420px;
  width: 92vw;
  padding: 38px 24px 28px 24px;
  position: relative;
  animation: cookieModalIn 0.32s ease-in;
}
@keyframes cookieModalIn { 0% { transform: translateY(50px) scale(0.96); opacity: 0; } 100% { transform: none; opacity: 1; } }
.cookie-modal h2 {
  font-size: 1.35rem;
  color: var(--color-primary);
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--color-secondary-bg);
  border-radius: 10px;
  margin-bottom: 16px;
  padding: 12px 10px;
}
.cookie-category label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
}
.cookie-category input[type=checkbox],
.cookie-category input[type=radio] {
  accent-color: var(--color-gold);
  width: 1.1em;
  height: 1.1em;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 1.55rem;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .modal-close:hover {
  color: var(--color-gold);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 6vw;
  }
  .cookie-modal {
    padding: 24px 8px 18px 8px;
  }
}

/* ---- ACCESSIBILITY & USABILITY ---- */
::selection {
  background: var(--color-gold-light);
}
::-webkit-scrollbar {
  width: 7px;
  background: var(--color-secondary-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold-light);
  border-radius: 50px;
}

/* ---- PAGE-SPECIFIC STYLES (FOR CONSISTENCY) ---- */
/* CTA Section */
.cta-section, .pricing-cta-section, .services-cta-section, .contact-cta-section, .faq-cta-section {
  background: linear-gradient(100deg, #f8f2e6 70%, #fff 100%);
  border: 1.5px solid var(--color-gold-light);
  border-radius: 20px;
  text-align: center;
  margin-bottom: 44px;
  padding: 36px 6vw 38px 6vw;
  box-shadow: 0px 1.5px 10px var(--color-shadow);
}
.cta-section h2, .pricing-cta-section h2 {
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 16px;
}

.gallery-highlights-section h1, .gallery-highlights-section h2 {
  color: var(--color-primary);
}
/* Thank You Page */
.thank-you-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px var(--color-shadow);
  padding: 40px 24px;
  text-align: center;
}
.thank-you-section h1 {
  color: var(--color-primary);
  font-size: 2rem;
}
.thank-you-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  list-style: none;
  margin-bottom: 20px;
}
.thank-you-section li {
  color: var(--color-primary);
  display: flex;
  align-items: center;
}
.thank-you-section li img {
  margin-right: 8px;
}

/* Hide position: absolute for content -- restrict as per requirement */

/* ---- END OF STYLES ---- */
