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

html {
  scroll-behavior: smooth;
}


/* Remove bullet styles */
ul,
ol {
  list-style: none;
}

/* Remove underline on links inside navs or menus by default */
a {
  text-decoration: none;
}

/* Make images responsive by default */
img {
  vertical-align: middle;
}

/* Inline elements smooth display */
span,
i {
  display: inline-block;
}

/* Buttons reset */
button {
  cursor: pointer;
}

/* ============================================================
   TYPOGRAPHY — HEADINGS (h1–h6)
   ============================================================ */

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span {
  margin: 0;
  padding: 0;
}

/* ============================================================
   ICONS
   ============================================================ */

i {
  font-style: none;
  /* override default italic */
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */

.container {
  max-width: 1140px;
  margin: 0 auto;
}

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

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.grid {
  display: grid;
  gap: 20px;
}

/* Centering */
.text-center {
  text-align: center;
}

/* ============================================================
   BUTTON STYLES
   ============================================================ */

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #0066ff;
  color: #fff;
  border-radius: 6px;
  transition: 0.25s ease;
  font-weight: 500;
}

.btn:hover {
  background: #004bb5;
}



/* ===========================
   TOP BAR
=========================== */
.topbar {
  background: #575A49;
  padding: 10px 0;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.03em;
  min-height: 70px;
  display: flex;
}

.topbar-left,
.topbar-right_text {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: 16px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 200px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 6px;
}


.phone-icon img{
  width: 16px;
}

@media(max-width:767px){
  .topbar {
    min-height: 40px;
}
}

/* ===========================
   HEADER
=========================== */
.header {
  padding: 40px 0 0;
  text-align: center;
}

.header {
  position: relative;
  z-index: 100000;
}

.logo-block {
  margin-bottom: 40px;
}

.shutter-logo {
  width: 200px;
  display: inline-block;
}

.shutter-logo img {
  width: 100%;
  height: 100%;
}

@media(max-width:767px){
  .header {
    padding: 0;
}
.shutter-logo {
    width: 170px;
}

}



/* ===========================
   NAV MENU
=========================== */
.nav-menu ul {
  display: flex;
  justify-content: center;
  padding: 20px 0 30px;
}

.nav-menu .nav-menu_main::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #575A49;
  bottom: -10px;
  left: 0;
  display: inline-block;
  opacity: 0;
  transition: 0.2s linear;
}

.nav-menu a:hover::after {
  bottom: 0;
  opacity: 1;
}

.sub_menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  background-color: #ffffff;
  width: 290px;
}

.sub_menu_inspiration {
  width: 120px;
}

.menu-wrapper li:hover .sub_menu {
  opacity: 1;
}

.menu-wrapper li {
  position: relative;
}

.sub_menu li {
  padding: 13px 20px;
}

.sub_menu li a {
  font-family: "Raleway", sans-serif;
  color: #5b5b5b;
  font-size: 14px;
}

.nav-menu .nav-menu_main {
  position: relative;
  font-family: "Raleway", sans-serif;
  color: #5b5b5b;
  font-size: 16px;
  letter-spacing: 3px;
  transition: 0.2s;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 16px;
  padding-bottom: 16px;
  display: inline-block;
}

.nav-menu .nav-menu_main:hover {
  color: #000;
}

/* --------------------------
   BASE: Hide mobile elements
--------------------------- */
.mobile-menu-btn,
.mobile-menu {
  display: none;
}

/* --------------------------
   MOBILE MENU BUTTON
--------------------------- */
/* .mobile-menu-btn {
  width: 45px;
  margin: 25px auto 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 7px;
  z-index: 9999;
}

.mobile-menu-btn span {
  width: 100%;
  height: 5px;
  background: #928271;
  display: block;
  transition: 0.3s;
  border-radius: 10px;
} */

/* Hamburger becomes X */
/* .mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
} */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(0px, 3px);
    transform-origin: bottom;
}


.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

/* .mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -17px);
} */
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(13px, -17px);
    transform-origin: top;
}

/* --------------------------
   MOBILE MENU PANEL
--------------------------- */
/* --------------------------
   MOBILE MENU FIXED + VISIBLE
--------------------------- */
.mobile-menu {
  position: fixed;
  top: 140px;
  /* directly under the logo block */
  left: 0;
  width: 100%;
  padding: 40px 40px;
  background: #ffffff;
  z-index: 99999;
  /* <-- NOW it stays on top */
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Menu Text Styles */
.mobile-menu ul {
  list-style: none;
  padding-left: 40px;
  margin: 0;
  text-align: left;
}

.mobile-menu ul li {
  margin-bottom: 22px;
}

.mobile-menu ul li a {
  font-family: "Raleway", sans-serif;
  font-size: 12px;
  color: #575A49;
  letter-spacing: 4px;
  text-decoration: none;
}

.submenu {
    display: none;
    list-style: none;
    padding-left: 10px !important;
     margin-top: 20px !important;
    text-align: left;
}

.submenu li {
    margin-bottom: 10px;
}

.submenu li a {
    color: #777;
    font-size: 12px !important;
    letter-spacing: 0 !important;
}

/* Show submenu when active */
.menu-item.open .submenu {
    display: block;
}

/* --------------------------
   FIX HAMBURGER AREA
--------------------------- */
.mobile-menu-btn {
  width: 45px;
  margin: 25px auto;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 7px;
  z-index: 100000;
  /* X always on top */
}

.mobile-menu-btn span {
  width: 100%;
  height: 5px;
  background: #928271;
  border-radius: 10px;
  transition: 0.3s;
}


/* --------------------------
   RESPONSIVE BREAKPOINT
--------------------------- */
@media(max-width: 1024px) {

  /* Hide desktop nav */
  .nav-menu {
    display: none;
  }

  .mobile-menu.active {
    padding: 50px 0;
  }

  /* Show hamburger */
  .mobile-menu-btn {
    display: flex;
  }

  /* Center logo properly */
  .logo-block {
    margin-top: 20px;
    text-align: center;
  }

  /* Adjust header spacing */
  .header-inner {
    display: block;
    text-align: center;
    padding-top: 20px;
  }

  .mobile-menu.active {
    display: block !important;
  }

  .mobile-menu {
    position: absolute;
    top: 100%;
    padding: 0 30px;
  }
}

@media(max-width: 767px) {

  .container {
    width: 100%;
  }

  .header-inner {
    position: relative;
  }

  .topbar-inner.container {
    display: none;
  }

}








/* =============================
   HERO SECTION WRAPPER
============================= */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 900px;
}

/* =============================
   LEFT SIDE
============================= */
.hero-left {
  position: relative;
  background: #737567;
  color: #ffffff;
  padding: 120px 80px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: self-start;
    background: url("./images/SilverFern.png") repeat center;
  background-size: contain;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.88;
    pointer-events: none;
    background-color: #575A49;
    width: 100%;
    height: 100%;
}

/* Fern overlay (bg image placeholder) */
/* .hero-overlay {
  position: absolute;
  inset: 0;
  background: url("./images/SilverFern.png") repeat center;
  background-size: contain;
  opacity: 0.15;
  pointer-events: none;
} */

.hero-title {
  position: relative;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: italic;
  font-size: 90px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #EFEBE7;
}

.hero-sub {
  position: relative;
  font-size: 23px;
  font-weight: 100;
  margin-bottom: 20px;
  padding: 16px 0;
  font-weight: 100;
  font-family: "Raleway", sans-serif;
}

/* Outline Button */
.hero-btn {
  position: relative;
  display: inline-block;
  padding: 27px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 27px;
  letter-spacing: 1.4px;
  transition: 0.3s;
  font-weight: 100;
  font-family: "Raleway", sans-serif;
}

.hero-btn:hover {
  transform: scale(1.1);
}

/* =============================
   RIGHT SIDE (IMAGE)
============================= */
.hero-right {
  position: relative;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================
   ROUND BADGE TOP RIGHT
============================= */
.hero-badge {
  font-family: "Raleway", sans-serif;
  position: absolute;
  top: 60px;
  right: 60px;
  width: 230px;
  height: 230px;
  background: #928271;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.6;
  padding: 40px 20px;
  border: 2px dashed #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
}

/* Hover Grow Effect */
.hero-badge:hover {
  transform: scale(1.1);
}

@media(max-width:1399px) {
  .hero-section {
    min-height: 800px;
  }

  .hero-title {
    font-size: 50px;
  }

  .hero-btn {
    padding: 20px;
    font-size: 18px;
  }

  .hero-badge {
    width: 200px;
    height: 200px;
    font-size: 13px;
  }
}

@media(max-width: 1023px) {
  section.hero-section {
    display: flex;
    flex-direction: column;
  }
  .hero-right {
    height: 600px;
}
.hero-left {
    padding: 50px;
    height: 600px;
}
a.hero-btn {
    text-align: center;
}
}





/* ===============================
   ABOUT SECTION WRAPPER
================================= */
.about-section {
  width: 100%;
  max-width: 1300px;
  margin: 120px auto;
  padding: 0 30px;
}

/* ===============================
   TOP CENTER TEXT BLOCK
================================= */
.about-top {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 120px;
}

.about-top h2 {
  font-family: "Raleway", sans-serif;
  font-size: 35px;
  color: #4d4d4d;
  margin-bottom: 30px;
  font-weight: 200;
  letter-spacing: 1.5px;
}

.about-top p {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
  font-weight: 400;
}

.signature {
  font-family: "Homemade Apple", cursive !important;
  font-size: 22px !important;
  margin-top: 20px;
  color: #54595F !important;
}

/* ===============================
   TWO COLUMN WRAPPER
================================= */
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 30px;
}

/* LEFT BOX */
.about-left {
  background: #e7e2db;
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: self-start;
}

.about-left h3 {
  font-family: "Raleway", sans-serif;
  font-size: 35px;
  color: #4d4d4d;
  margin-bottom: 30px;
  font-weight: 200;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.about-left p {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

/* UNDERLINE LINK */
.about-link {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: #4d4d4d;
  text-decoration: none;
  border-bottom: 2px solid #4d4d4d;
  padding-bottom: 16px;
  transition: 0.2s;
}

.about-link:hover {
  opacity: 0.6;
}

/* RIGHT IMAGE */
.about-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(max-width:1023px) {
  .about-two-col {
    display: flex;
    flex-direction: column-reverse;
  }

  .about-right {
    height: 400px;
  }
  .about-left {
    padding: 40px 30px;
}

  .about-two-col-mid {
    display: flex;
    flex-direction: column;
  }
  .about-section {
    padding: 0;
}
.about-top {
    padding: 0 30px;
    margin: 0 auto 20px
}
.about-section {
    margin: 40px auto;
}
}







/* ============================== finance SECTION ==============================*/
.finance-section {
  width: 100%;
  max-width: 1200px;
  margin: 100px auto;
  text-align: center;
  padding: 0 20px;
}

.finance-title {
  font-size: 28px;
  color: #6b5f55;
  margin-bottom: 40px;
  font-style: italic;
  font-weight: 100;
  font-family: "Cormorant Garamond", serif;
}

/* TABS */
.finance-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  border-radius: 5px;
  overflow: hidden;
  gap: 10px;
}

.finance-tab {
  font-family: "Raleway", sans-serif;
  padding: 14px 50px;
  background: #efefef;
  border: 1px solid #d7d7d7;
  font-size: 14px;
  color: #6d6d6d;
  cursor: pointer;
  letter-spacing: 1px;
  transition: 0.2s ease;
  width: 526px;
  height: 50px;
  font-size: 16px;
  letter-spacing: 1px;
}

.finance-tab.active {
  background: #a08f7d;
  color: #fff;
  border-color: #a08f7d;
}

/* CONTENT */
.finance-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.finance-left img {
  max-width: 240px;
}

.finance-right {
  text-align: left;
  max-width: 500px;
}

.finance-right h3 {
  font-size: 32px;
  color: #5a4f46;
  margin-bottom: 12px;
  font-style: italic;
  line-height: 1.4;
  font-family: "Cormorant Garamond", serif;
  font-weight: 100;
}

.finance-right p {
  font-size: 16px;
  color: #777;
  line-height: 1.7;
  font-family: "Raleway", sans-serif;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .finance-content {
    flex-direction: column;
    text-align: center;
  }

  .finance-right {
    text-align: center;
  }
}

@media(max-width:1023px){
  .finance-tabs {
    flex-direction: column;
}
.finance-tab {
    width: 100%;
}
.finance-section {
    margin: 40px auto;
}
}


/* ==============================
   FAMILY SECTION
============================== */
.family-section {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  background-image: url('./images/bedroom-shutters-white.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.family-bg {
  width: 100%;
  height: 100%;
  background-color: #65554C;
  opacity: 0.4;
}

/* Background Image */
/* .family-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
} */

/* Center Content Overlay */
.family-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  padding: 20px;
}

.family-content h2 {
  font-family: "Raleway", sans-serif;
  font-size: 35px;
  line-height: 1.3;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-weight: 300;
}

.family-content p {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto;
  font-weight: 200;
  font-style: italic;
}

/* White text readability enhancement */
.family-content h2,
.family-content p {
  text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.4);
}

/* Bottom Right Badge */
.family-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 160px;
  height: 160px;
  object-fit: contain;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 1024px) {
  .family-content p {
    font-size: 18px;
    padding: 0 20px;
  }

  .family-badge {
    width: 140px;
    height: 140px;
    bottom: 30px;
    right: 30px;
  }

  .family-section {
    height: 600px;
  }
  .family-content h2 {
    font-size: 35px;
}
.family-content p {
    font-size: 18px;
}
.family-content {
    width: 100%;
}
}

@media (max-width: 768px) {


  .family-badge {
    width: 120px;
    height: 120px;
    bottom: 20px;
    right: 20px;
  }
}

/* @media (max-width: 480px) {
  .family-content h2 {
    font-size: 20px;
  }

  .family-content p {
    font-size: 14px;
  }

  .family-badge {
    width: 100px;
    height: 100px;
    bottom: 15px;
    right: 15px;
  }
} */



/* ===============================
   FEATURE SECTION
=============================== */
.features-section {
  background: #f1f1f0;
  /* light grey like screenshot */
  padding: 100px 20px;
  text-align: center;
}

/* Heading */
.features-heading {
  font-family: "Raleway", sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: #6b6f5d;
  margin-bottom: 60px;
  font-weight: 400;
  line-height: 1.4;
}

/* GRID */
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}

/* Each Feature Box */
.feature-box svg {
  width: 80px;
  margin-bottom: 20px;
}

.feature-box h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  color: #4d4d4d;
  margin-bottom: 15px;
  line-height: 1.4;
  font-style: italic;
  font-weight: 100;
}

.feature-box p {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  color: #6f6f6f;
  line-height: 1.6;
  font-weight: 300;
}

/* ===============================
   RESPONSIVE
=============================== */

/* Large Tablet */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
  .features-section {
    padding: 40px 20px;
}
.feature-box h3 {
    line-height: 1;
}
}

/* Mobile */
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}




/* =========================================
   CTA FERN SECTION
========================================= */
.cta-fern-section {
  position: relative;
  width: 100%;
  height: 837px;
  text-align: center;
  overflow: hidden;
  background-image: url("./images/SilverFern.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* Fern Image Overlay */
.fern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.88;
  pointer-events: none;
  background-color: #575A49;
  width: 100%;
  height: 100%;
}

.fern-overlay img {
  width: 650px;
  height: auto;
}

/* Center Content */
.cta-fern-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 5;
}

.cta-fern-text {
  font-size: 32px;
  line-height: 1.4;
  color: #EFEBE7;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 30px;
  font-style: italic;
  font-weight: 200;
  letter-spacing: 1px;
}

.cta-fern-subtext {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  color: #EFEBE7;
  margin-bottom: 45px;
  letter-spacing: 0.5px;
  font-weight: 100;
}

/* Button & Lines */
.cta-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.cta-line_one,
.cta-line_two {
  width: 90px;
  height: 1px;
  background: #ffffff;
  position: absolute;
}

.cta-line_one {
  position: absolute;
  z-index: 9;
  margin-left: 150px;
}

.cta-line_two {
  position: absolute;
  z-index: 9;
  right: 0;
  margin-right: 150px;
}

.cta-btn {
  font-family: "Raleway", sans-serif;
  color: #EFEBE7;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 2px;
  padding: 16px 0;
  border-bottom: 2px solid #EFEBE7;
  transition: 0.3s ease;
}



/* =========================================
   RESPONSIVE STYLES
========================================= */

@media(max-width:1399px) {
  .cta-line_one {
    margin-left: 15px;
  }

  .cta-line_two {
    margin-right: 15px;
  }
}

@media (max-width: 1024px) {
  .cta-fern-text {
    font-size: 26px;
  }

  .fern-overlay img {
    width: 520px;
  }
  .cta-fern-section {
    height: 500px;
    padding: 0 20px;
}

.cta-line_one {
    top: 50px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}
.cta-line_two {
    bottom: 50px;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

}

@media (max-width: 768px) {
  .cta-fern-text {
    font-size: 22px;
  }

  .cta-fern-subtext {
    font-size: 14px;
  }

  .cta-line_one,
  .cta-line_two {
    width: 50px;
  }

  .fern-overlay img {
    width: 420px;
  }
}

@media (max-width: 480px) {
  .cta-fern-text {
    font-size: 19px;
    line-height: 1.5;
  }

  .cta-btn-wrapper {
    gap: 15px;
  }

  .cta-btn-wrapper .line {
    width: 35px;
  }

  .fern-overlay img {
    width: 300px;
  }
}




/* ===============================
   Reviews Section
=============================== */
.reviews-section {
  padding: 120px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.reviews-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 300;
  color: #575A49;
  font-style: italic;
  margin: auto;
  ;
}

/* Write a Review Button */
.btn-wrapper {
  display: flex;
  justify-content: end;
}

.review-btn {
  padding: 10px 28px;
  background: #0096CC;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  display: inline-flex;
  transition: 0.2s;
  margin-bottom: 20px;
  gap: 5px;
}

.sb-btn-icon svg {
  width: 16px;
}

.review-btn:hover {
  background: #CC3F3A;
}


/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 60px;
}

/* Card */
.review-card {
  font-size: 15px;
  color: #141B38;
  font-family: "Raleway", sans-serif;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-top h4 {
  font-size: 14px;
  font-weight: 600;
}

.review-date {
  font-size: 13px;
  color: #888;
}

.google-logo {
  width: 22px;
}

/* Stars */
.stars {
  color: #0096cc;
  font-size: 16px;
  margin: 12px 0;
}

/* Review Text */
.review-text {
  line-height: 1.6;
  color: #434960;
  font-size: 16px;
}

/* Divider Line */
.divider {
  margin-top: 20px;
  height: 1px;
  background: #eee;
  width: 100%;
}

/* ===============================
   Responsive
=============================== */

/* Tablet */
@media (max-width: 1080px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 700px) {

  .reviews-header {
    flex-direction: column;
    gap: 20px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-btn {
    margin-top: 10px;
  }
}

/* Small Mobile */
@media (max-width: 1023px) {
  .reviews-section {
    padding: 40px 20px;
  }

}



/* ===============================
   FOUR IMAGE GALLERY
=============================== */
.four-image-gallery {
  padding: 40px 20px;
}

.gallery-row {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  /* matches spacing in screenshot */
}

/* Each item */
.gallery-item {
  width: 100%;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  /* visually matches screenshot */
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
  /* screenshot has no rounded corners */
}

/* ===============================
   RESPONSIVE
=============================== */

/* Tablet */
@media (max-width: 1024px) {
  .gallery-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .gallery-item img {
    height: 260px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .gallery-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .gallery-item img {
    height: 240px;
  }
}



/* =========================================
   CONTACT SECTION
========================================= */
.contact-section {
  background: #f5f1ed;
  /* exact light-beige background */
  padding: 80px 40px;
}

.title-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.title-wrapper h2 {
  color: #575A49;
  font-family: "Raleway", sans-serif;
  font-size: 35px;
  font-weight: 200;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 1.5px;
}

.title-wrapper p {
  color: #575A49;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.2em;
  letter-spacing: 1.2px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* LEFT SIDE */
.contact-left {
  width: 50%;
}

.contact-left h2 {
  color: #575A49;
  font-family: "Raleway", sans-serif;
  font-size: 30px;
  font-weight: 200;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.contact-left p {
  color: #575A49;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: 200;
  line-height: 1.2em;
  margin-bottom: 15px;
}

.contact-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #4f4f4f;
  margin-bottom: 30px;
}

.contact-info {
  font-size: 15px;
  color: #4f4f4f;
  margin-bottom: 8px;
}

.contact-social {
  margin-top: 20px;
}

.social-icon {
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

/* RIGHT SIDE */
.contact-right {
  width: 50%;
}

.contact-right h3 {
  color: #575A49;
  font-family: "Raleway", sans-serif;
  font-size: 30px;
  font-weight: 200;
  text-transform: uppercase;
  line-height: 1.3em;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.card-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.card-icons img {
  width: 268px;
  height: auto;
}

.supergold img {
  width: 156px;
  height: auto;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
}
  .title-wrapper h2 {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}
.title-wrapper p {
    text-align: center;
}
.contact-left h2 {
    font-size: 22px;
}
.contact-left {
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-left p {
    text-align: center;
}
.contact-right {
    width:100%;
        display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-right h3 {
    font-size: 22px;
}
.card-icons img {
    width: 240px;
    height: auto;
}

}

@media (max-width: 600px) {
  .contact-section {
    padding: 60px 20px;
  }

  .contact-right h3 {
    margin-top: 20px;
  }
}



/* ============================
   FOOTER
============================ */
.footer-section {
  background: #ffffff;
  padding: 60px 40px;
  border-top: 1px solid #efefef;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo */
.footer-logo {
  height: 125px;
  /* matches screenshot proportion */
  width: auto;
}

/* Right Section */
.footer-right {
  text-align: right;
}

.footer-right p {
  margin: 2px 0;
  font-size: 14px;
  color: #928271;
  font-family: "Raleway", sans-serif;
}

/* Small Tablet */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-right {
    text-align: center;
  }

  .footer-logo {
    height: 100px;
  }

}

/* Mobile */
/* @media (max-width: 500px) {
  .footer-section {
    padding: 40px 20px;
  }

  .footer-logo {
    height: 55px;
  }

  .footer-right p {
    font-size: 13px;
  }
} */