/* ================================
   FONT SETUP
   ================================ */
/* Thin (100) */
@font-face {
  font-family: "MADE Tommy";
  src: url("../fonts/MADE TOMMY Thin.woff2") format("woff2"),
       url("../fonts/MADE TOMMY Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}

/* Light (300) */
@font-face {
  font-family: "MADE Tommy";
  src: url("../fonts/MADE TOMMY Light.woff2") format("woff2"),
       url("../fonts/MADE TOMMY Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

/* Regular (400) */
@font-face {
  font-family: "MADE Tommy";
  src: url("../fonts/MADE TOMMY Regular.woff2") format("woff2"),
       url("../fonts/MADE TOMMY Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

/* Medium (500) */
@font-face {
  font-family: "MADE Tommy";
  src: url("../fonts/MADE TOMMY Medium.woff2") format("woff2"),
       url("../fonts/MADE TOMMY Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

/* Bold (700) */
@font-face {
  font-family: "MADE Tommy";
  src: url("../fonts/MADE TOMMY Bold.woff2") format("woff2"),
       url("../fonts/MADE TOMMY Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

/* ================================
   BASE STYLE
   ================================ */
body {
  margin: 0;
  padding: 0;
  font-family: "MADE Tommy", Arial, sans-serif;
  font-weight: 400; /* Default to regular */
  background: #fff;
  color: #333;
}

body, html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ================================
   GLOBAL CENTERING FIXES
   ================================ */
section {
  max-width: 1200px;      /* constrain width */
  margin: 0 auto;         /* center horizontally */
  padding: 40px 20px;     /* consistent spacing */
  margin-top: 15px;       /* ✅ uniform top gap from previous block */
  margin-bottom: 40px;    /* ✅ uniform bottom gap on desktop */
  box-sizing: border-box;
}

@media (max-width: 768px) {
  section {
    margin-top: 15px;     /* ✅ keep consistent with banner */
    margin-bottom: 20px;  /* ✅ tighter gap on mobile */
  }
}

/* ================================
   SECTION SPACING STANDARD
   ================================ */
section {
  margin-top: 0;         /* ✅ remove top gap */
  margin-bottom: 40px;   /* ✅ consistent gap between sections */
  padding-top: 20px;     /* ✅ breathing room inside */
  padding-bottom: 20px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  section {
    margin-bottom: 20px;   /* ✅ tighter gap on mobile */
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

/* ================================
   HEADER STYLES
   ================================ */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  background: url("../images/header-bg.png") no-repeat center center/cover;
  color: #fff;
  position: relative;
  height: 80px;           /* fixed header height for desktop */
  box-sizing: border-box;
}

/* ===== LOGO ===== */
.logo {
  margin-left: -20px; /* adjust value as needed */
  flex-shrink: 0;     /* prevents it from shrinking */
}

.logo img {
  width: 200px;          /* your desired width */
  height: auto;          /* keeps aspect ratio */
  max-height: 130px;      /* limits vertical size so header won't expand */
  display: block;
}

.header-container {
  max-width: 1000px;      /* match banner width */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 100%;
  box-sizing: border-box;
  padding: 10px 15px
}

/* ===== HEADER TEXT ===== */
.header-text a {
  color: #fff;              /* match header text color */
  text-decoration: none;    /* remove underline */
  font-size: 20px;          /* keep consistent with .header-text */
  font-weight: 500;
  margin: 0 8px;
  tranistion: color 0.3s ease;
}

.header-text a:hover {
  color: #0a4d7a;          
  text-decoration: none;
}

/* ===== RIGHT SIDE (Book button + Social) ===== */
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ===== BOOK BUTTON ===== */
.book-btn {
  display: inline-block;
  background: #ffffff;
  color: #0887bc;
  text-decoration: none;
  padding: 5px 15px;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 500;
  transition: background 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.book-btn:hover {
  color: #ff6b6b;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: #0887bc;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icons a:hover {
  color: #ff6b6b;
}

.header-text-dropdown {
  display: none;
}

/* Show desktop text on desktop only */
.header-text {
  display: block;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  header {
    padding: 5px 10px;       /* reduce vertical padding */
    height: auto;            /* allow shrinking */
  }

  .logo img {
    max-width: 100px;        /* slightly smaller logo */
    height: auto;
  }

  .header-text {
    font-size: 14px;         /* smaller text */
    margin: 0 5px;
  }

  .book-btn {
    font-size: 12px;
    padding: 3px 10px;       /* smaller button */
  }

  .social-icons a {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;       /* smaller icons */
  }

  .header-text {
    display: none; /* hide desktop text */
  }

  .header-text-dropdown {
    display: block;
    position: relative;
    text-align: center;
    flex: 1;
    cursor: pointer;
  }

  .dropdown-title {
  font-size: 16px;  /* make icon larger */
  color: #fff;
  cursor: pointer;
}

  .dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
    background: #0887bc;
    border-radius: 5px;
    display: none;
    position: absolute;
    width: 120px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 10;
    font-size: 11px;  /* <- set mobile-only font size here */
  }

  .dropdown-menu a {
  color: #fff;
  text-decoration: none;
  display: block;
  width: 100%;
}

.dropdown-menu a:hover {
  color: #ff6b6b;
}

  .dropdown-menu li {
    padding: 8px 10px;
    color: #fff;
    font-size: 11px; /* <- ensures each item uses the smaller font */
  }

  .dropdown-menu li:hover {
    background: #066c95;
  }

  .dropdown-menu.show {
    display: block;
  }
}

/* ================================
   BANNER SECTION
   ================================ */

/* Default: show desktop, hide mobile */
.banner-dp {
  display: block;
}
.banner-mb {
  display: none;
}

/* Banner wrapper */
.banner {
  width: 100%;          /* always full width */
  height: auto;         /* allow natural height */
  margin: 0;
  padding: 0;
  overflow: hidden;     /* hide any overflow */
}

.banner img {
  width: 100%;
  height: auto;
  object-fit: contain;   /* ✅ keeps the whole image visible */
  display: block;
}


@media (max-width: 768px) {
  header {
    margin-bottom: 0;   /* ensure no gap */
    padding-bottom: 0;
  }

  .banner-dp {
    display: none;
  }
  .banner-mb {
    display: block;
  }
 
  .banner img {
  width: 100%;
  height: auto;
  display: block;
}

  .banner {
    margin-top: 0;
  }

  .section1 {
    margin-top: 0;         /* ✅ remove extra top gap */
  }
}

/* ================================
   SECTION 1
   ================================ */
/* SECTION 1 - centered layout */
.section1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1350px;
  margin: 0 auto;
  align-items: stretch;   /* ✅ makes both columns equal height */
}

.section1-left {
  flex: 0 0 58%;
  max-width: 58%;
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Left column text */
.section1-left .section1-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #327a9c;
  max-width: 600px;      /* ✅ prevents text from going too wide */
  margin: 10px auto;
  text-align: center;    /* ✅ center text inside block */
}

/* Individual paragraphs */
.section1-left .section1-text p {
  margin: 3px 0;           /* tighter spacing between paragraphs */
}

/* Highlighted words */
.section1-left .highlight {
  background-color: #00acd9; /* blue highlight */
  color: #fff;               /* white text */
  font-weight: bold;
  border-radius: 5px;
  padding: 2px 8px;
  display: inline-block;
}

/* Left column top logo */
.section1-left > img:first-child {
  width: 100%;
  max-width: 450px;
  height: auto;
  margin: 25px auto;     /* auto left/right keeps it centered */
  display: block;        /* safe fallback */
}

/* Bottom images container */
.section1-left-images {
  display: flex;
  justify-content: center;   /* center images horizontally */
  gap: 15px;                 /* spacing between images */
  margin-bottom: 20px;
  flex-wrap: nowrap;          /* keep in one row */
}

/* Each bottom image */
.section1-left-images img {
  width: 175px;           /* increased size */
  height: 175px;          /* equal height */
  object-fit: cover;      /* maintain aspect ratio inside circle */
  display: block;
}

/* Right column - keep square form */
.section1-right {
  flex: 0 0 38%;   /* give right side room */
  max-width: 38%;
  order: 2;
}

/* Blue square wrapper - maintain square */
.section1-form-wrapper {
  width: 100%;
  max-width: 400px;
  height: auto;              /* allow natural height */
  aspect-ratio: auto;        /* disable fixed square */
  padding: 20px;
  background: url("../images/sc1-blue-bg.png") no-repeat center center;
  background-size: cover;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}

/* Header inside form */
.section1-form-wrapper h3 {
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 12px;

  /* ✅ Move it upward */
  margin-top: 5px;   /* lift it higher inside the square */
}

/* Form inside square */
.section1-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  height: auto;
}

.section1-form input,
.section1-form textarea,
.section1-form select {
  width: 85%;
  padding: 8px;
  font-size: 0.75rem;
  color: #327a9c;
  border-radius: 12px;
  border: 2px;
  box-sizing: border-box;
  display: block;
  margin: 2px auto;       /* ✅ same gap for all fields */
  height: 30px;
  resize: none;
}

.section1-form textarea {
  height: 38px; /* same as inputs */
}

.section1-form select {
  width: 85%;
  padding: 5px;
  font-size: 0.75rem;
  color: #327a9c;
  border-radius: 12px;
  border: 2px;
  background: #fff;
  box-sizing: border-box;
  display: block;
  margin: 2px auto 3px;
  height: 32px;
  cursor: pointer;
}

/* Match focus state with inputs */
.section1-form select:focus {
  outline: none;
  border-color: #0887bc;
  box-shadow: 0 0 4px rgba(8, 135, 188, 0.3);
}

/* Placeholder color */
.section1-form input::placeholder,
.section1-form textarea::placeholder {
  color: #327a9c;
  opacity: 1;
}

.section1-form input:focus,
.section1-form textarea:focus {
  outline: none;
}

/* Submit button */
.section1-form button {
  width: 90%;
  max-width: 120px;
  padding: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 15px;
  border: none;
  background: #0887bc;
  color: #fff;
  cursor: pointer;
  margin: 0 auto;
  display: block;
  transition: background 0.3s ease;
}
.section1-form button:hover {
  background: #066c95;
}

/* Privacy checkbox */
.form-privacy {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  color: #fff;
  margin: 5px auto 10px;
  width: 90%;
}

.form-privacy input[type="checkbox"] {
  margin: 0;
  margin-right: 6px;
  width: 12px;
  height: 12px;
  cursor: pointer;
}

.form-privacy label {
  margin: 0;
  line-height: 1.2;
  cursor: pointer;
}

@media (max-width: 768px) {

  /* Section container */
  .section1 {
    flex-direction: column;   /* ✅ stack vertically */
    flex-wrap: nowrap;
  }

  /* Left & right columns */
  .section1-left, .section1-right {
    max-width: 100%;          /* ✅ full width */
    flex: 1 1 100%;
    margin: 5px auto;
  }

  .section1-left { order: 1; }
  .section1-right { order: 2; }

  /* Top logo - scales with screen */
  .section1-left > img:first-child {
    max-width: 300px;
    margin: 15px auto;
  }

  /* Left column text */
  .section1-left .section1-text {
    font-size: 0.9rem;
    max-width: 95%;
  }

  .section1-left .section1-text p {
    margin: 2px 0;
  }

  /* Highlighted text */
  .section1-left .highlight {
    background-color: #00acd9;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    padding: 2px 6px;
    display: inline-block;
  }

  /* Bottom images */
  .section1-left-images {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
    flex-wrap: nowrap; /* keep in one row */
  }

  .section1-left-images img {
    width: 50%;       /* 3 images side by side */
    max-width: 120px; /* prevents too large on wide mobile */
    height: auto;     /* maintain aspect ratio */
    object-fit: cover;
    margin: auto 0 0;
  }

  /* Right column form wrapper */
  .section1-form-wrapper {
    width: 90vw;        
    height: auto;        /* ✅ let it grow with content */
    margin: 0 auto;
    padding: 3vw;
    box-sizing: border-box;
    background-size: cover;
    border-radius: 15px;
  }

  /* Title */
  .section1-form-wrapper h3 {
    font-size: 1.4em;   /* scales with square size */
    margin-bottom: 3vw;
  }

  /* Inputs */
  .section1-form input,
  .section1-form textarea,
  .section1-form select,
  .section1-form button {
    font-size: 0.8rem;
    padding: 2vw;
    border-radius: 2.5vw;
    margin: 3px auto;   /* ✅ spacing even on mobile */
  }

  section1-form {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    gap: 10px;          /* ✅ consistent spacing between fields */
  }

  .section1-form textarea {
    height: 38px; /* same as input */
  }

.section1-form select {
  font-size: 0.85rem;
  padding: 2vw;
  border-radius: 2.5vw;
  width: 85%;
}

  .section1-form input::placeholder,
  .section1-form textarea::placeholder {
    color: #327a9c;
    opacity: 1;
  }

  /* Submit button */
  .section1-form button {
    font-size: 1.2rem;      
    padding: 1.2vw 1vw;  
    border-radius: 2vw; 
    width: 50% !important;          
    max-width: 160px !important;    
    margin: 2vw auto 8vw !important; 
    display: block !important;
  }

  .section1-form button:hover {
    background: #066c95;
  }

  /* Privacy checkbox */
  .form-privacy {
    font-size: 3vw;
  }

  .form-privacy input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    cursor: pointer;
  }

  .form-privacy label {
    margin: 0;
    line-height: 1.2;
    cursor: pointer;
  }
}

/* Medium desktops (≥992px) */
@media (min-width: 992px) {
  .section1-form-wrapper {
    max-width: 340px;   /* tighter box */
    padding: 18px 20px; /* less padding */
  }
}

/* Large desktops (≥1200px) */
@media (min-width: 1200px) {
  .section1-form-wrapper {
    max-width: 360px;   /* slightly bigger, but still compact */
    padding: 20px 25px; /* balance */
  }
}

/* ================================
   SECTION 2
   ================================ */
.section2 { 
  width: 100vw;             /* full viewport width */
  max-width: 100vw;         /* prevent container restriction */
  margin: 0;                /* remove auto-center margins */
  padding: 0;               /* no inner spacing */
  position: relative;
  z-index: 1;
}

.section2 img {
  width: 100vw;             /* stretch full width */
  height: auto;             /* maintain aspect ratio */
  display: block;           /* remove inline gap */
  margin: 0;                /* no gaps */
}

/* ================================
   SECTION 3
   ================================ */
/* SECTION 3 */
.section3 {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

.section3-header {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  color: #327a9c;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.star-icon {
  width: 25px;
  height: 20px;
  margin: 0 10px;
  position: relative;
  top: 1px;
}

.section3-content {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;   /* ✅ keep centered */
}

.section3-left {
  flex: 1;
  text-align: center;
}

.section3-left img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.section3-left video.section3-video {
  width: 100%;
  max-width: 350px;          /* adjust for your layout */
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 65% / 35%;  /* ✅ creates a horizontal oval shape */
  overflow: hidden;
}

.section3-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-left: -10px;
}

.section3-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  position: relative;
}

.section3-icon {
  height: 55px;         /* slightly smaller height */
  width: auto;          /* keep original aspect ratio */
  object-fit: contain;  /* prevent distortion */
  flex-shrink: 0;
}

/* Individual block adjustments to keep text left-aligned */
.section3-block .section3-text-container {
  display: flex;
  justify-content: flex-start;
  text-align: left;
  align-items: center;
  gap: 10px;            /* small gap between icon and text */
}

/* Center icon vertically with text */
.section3-icon-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.section3-text-container p {
  margin: 0;
  font-size: 0.9rem;
}

.section3-bottom {
  margin-top: 10px;
  margin-bottom: 30px;
  text-align: center;
}

.section3-bottom img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.section3-button {
  text-align: center;
  margin: 50px 0;
}

.section3-button .jump-btn {
  display: inline-block;
  background-color: #327a9c; 
  color: #fff;
  font-weight: 450;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 7px 60px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.section3-button .jump-btn:hover {
  background-color: #066c95;   /* darker hover */
  transform: scale(1.05);
}

/* SECTION 3 - Desktop adjustments */
@media (min-width: 769px) {
  /* Reduce horizontal gap between left and right columns */
  .section3-content {
    gap: 5px; /* was 30px before */
  }

  /* Move right blocks closer to left image */
  .section3-right {
    margin-left: -10px; /* negative margin to shift closer */
  }

  /* Stagger blocks vertically */
  .section3-block.block1 {
    margin-top: 20px;  /* first block shifts down */
  }
  .section3-block.block2 {
    margin-top: 30px;  /* second block slightly lower */
    margin-left: 30px;
  }
  .section3-block.block3 {
    margin-top: 30px;     /* third block baseline */
  }
}

@media (max-width: 768px) {
  /* Section header */
  .section3-header {
    font-size: 20px;
    text-align: center;
  }

  /* Left image bigger and centered */
  .section3-left {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
  .section3-left img {
    max-width: 65%;       /* reduce image width (was 80%) */
    margin: 0 auto 10px;
  }

  .section3-left video.section3-video {
    max-width: 70%;
    border-radius: 65% / 35%;
  }

  /* Stack blocks vertically */
  .section3-content {
    flex-direction: column;
    gap: 10px; /* tighter spacing */
    width: 100%;
  }

  /* Block spacing */
  .section3-block {
    display: flex;
    flex-direction: row;      /* ✅ icon left, text right */
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 12px 0;       /* tighter gap */
  }

  /* Icon scaled consistently */
  .section3-icon {
    height: 18px;   /* ✅ small and uniform */
    width: auto;
    flex-shrink: 0;
  }

  /* Text wider + smaller font */
  .section3-text-container {
    flex: 1;
    padding: 0;
    font-size: 0.8rem;
    line-height: 1.4;
    text-align: left;
    word-break: break-word; /* prevent overflow */
  }
  .section3-text-container p {
    margin: 0;
  }

  /* Bottom image centered */
  .section3-bottom img {
    max-width: 90%;
    margin: 15px auto 0;
    display: block;
    height: auto;
  }
}

/* ================================
   SECTION 4
   ================================ */
/* SECTION 4 */
.section4 {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 160px 20px 80px; /* adjust for wave height */
  box-sizing: border-box;
  text-align: center;
  color: #fff;

  /* 🌊 Big wave as full background */
  background: url('../images/big-wave.png') no-repeat top center;
  background-size: 100% auto;  /* full width, keep proportions */
}

.section4-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section4-header {
  font-size: 29px;
  font-weight: 500;
  color: #327a9c;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block; /* shrink to text width */
  position: relative;
  padding: 0 20px;
}

.star-icon {
  width: 25px;       
  height: 20px;
  margin: 0 10px;    
  position: relative;
  top: 1px;       
}

.section4-text {
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px;
}

.section4-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section4 {
    padding: 40px 10px;       /* reduce horizontal padding */
    background-size: cover;   /* ensure full width visible */
    background-position: top center; /* keep it centered */
  }

  .section4-header {
    display: flex;              
    justify-content: center;    
    align-items: center;        /* ✅ vertically align stars + text */
    white-space: nowrap;        
    gap: 6px;
    font-size: 1.2rem;
    margin: 20px auto 15px;     /* ✅ add top spacing before header */
  }

  .section4-header .star-icon {
    width: 14px;
    height: 14px;
    vertical-align: middle;     /* ✅ ensure stars align with text middle */
  }

  .section4-text {
    font-size: 0.85rem;
    max-width: 100%;          /* allow text to fill screen */
    padding: 0 10px;
  }

  .section4-image img {
    width: 95%;              /* scale image to screen */
    height: auto;
  }

  .section4-header .star-icon {
    width: 16px;
    height: 16px;
    top: -3px;
  }
}

/* ================================
   SECTION 5
   ================================ */
.section5 {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 120px 20px; /* adjust spacing to reveal wave */
  box-sizing: border-box;
  text-align: center;

  /* 🌊 Top + Bottom waves as layered backgrounds */
  background: 
    url('../images/small-wave-up.png') no-repeat top center,
    url('../images/small-wave-down.png') no-repeat bottom center;
  background-size: 100% auto, 100% auto; /* stretch full width */
}

.section5-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1; /* keep content above wave */
}

/* Waves edge-to-edge */
.section5-bg-top,
.section5-bg-bottom {
  display: block;
  width: 100vw;                         /* full viewport width */
  max-width: 100vw;
  height: auto;
  margin-left: calc(-50vw + 50%);       /* cancel parent centering */
  position: relative;
  z-index: 0;
}

.section5-content {
  position: relative;
  z-index: 1;  /* ✅ content above waves */
}

/* Section header with stars */
.section5-header {
  text-align: center;
  font-size: 29px;
  font-weight: 500;
  color: #327a9c;
  text-transform: uppercase;
  margin: 0 auto 30px;   /* ✅ fixed margins */
  margin-top: -30px;   /* shift upward */
  margin-bottom: 50px; /* keep good gap below */
  padding: 0;
}

.section5-header .star-icon {
  margin: 0 20px;   /* increase horizontal spacing */
  position: relative;
  top: 1px;         /* keep vertical alignment */
}

.star-icon {
  width: 25px;
  height: 20px;
  margin: 0 10px;
  position: relative;
  top: 1px;
}

/* Two images side by side */
.section5-images {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 40px;
}

.section5-image {
  flex: 0 1 48%;
  max-width: 400px;
  text-align: center;
}

.section5-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Yellow box overlaps wave */
.section5-text-bg {
  position: relative;
  z-index: 2; /* above wave */
  background: url('../images/sc5-yellow-box.png') no-repeat center center;
  background-size: contain;
  padding: 25px 30px;
  min-height: 80px;
  color: #327a9c;
  border-radius: 10px;
  max-width: 700px;
  margin: -30px auto 0 auto; /* pull box into wave */
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.section5-text-bg .highlight-red {
  color: #e75480; /* soft pinkish-red */
  font-weight: 600; /* keep a bit bold for emphasis */
}

/* Viewport — keep it centered & clipped */
.sc5-viewport{
  max-width: 1100px;      /* gives the track a real width to size against */
  margin: 0 auto;
  padding: 0;             /* no peeking */
  overflow: hidden;
  --sc5-gap: 24px;
}

/* Track */
.sc5-track{
  display: flex;
  gap: var(--sc5-gap);
  will-change: transform;
  transition: transform 450ms ease;
}

/* Slides — 2-up on desktop, no shrinking */
.sc5-slide {
  flex: 0 0 calc((100% - var(--sc5-gap, 24px)) / 2);
  max-width: calc((100% - var(--sc5-gap, 24px)) / 2);
  margin: 0;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.sc5-slide img{ 
  width:100%;
  height:auto;
  display:block;
}

.sc5-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;     /* no box */
  border: none;
  padding: 0;
  width: auto;
  height: auto;
  line-height: 1;
  font-size: 28px;             /* size of the arrow */
  color: #327a9c;              /* blue */
  cursor: pointer;
  z-index: 3;
}

.sc5-btn:hover{ 
  color:#245a75; 
}

.sc5-prev{ 
  left:-16px; 
}

.sc5-next{
  right:-16px;
}

@media (max-width: 992px) {
 .sc5-slide{ 
  flex: 0 0 calc(100% - 2px);
}

  .sc5-prev{
  left:-12px;
}
  .sc5-next{
  right:-12px;
 }
}

@media (min-width: 769px) {
  .sc5-viewport {
    padding: 0;           /* no internal padding that shifts math */
    overflow: hidden;
  }
  .sc5-track { gap: var(--sc5-gap, 24px); }
  .sc5-slide {
    flex: 0 0 calc((100% - var(--sc5-gap, 24px)) / 2);
    max-width: calc((100% - var(--sc5-gap, 24px)) / 2);
    margin: 0;
    padding: 0;
    border: 0;
  }
  .sc5-slide img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    border: 0;
  }
}

@media (max-width: 768px) {
  .section5 {
    padding: 20px 10px 0;  
    background-size: 100% auto, 100% auto;
  }

  /* Bottom wave at section bottom */
  .section5::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 60px; /* adjust to your wave height */
    background: url('../images/small-wave-down.png') no-repeat bottom center;
    background-size: 100% auto;
    z-index: 0;
  }

  .section5-inner {
    position: relative;
    z-index: 1; /* keep content above wave */
  }

  /* Header */
  .section5-header {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 0 auto 15px;
    font-size: 1.2rem;
  }

  .section5-header .star-icon {
    width: 16px;
    height: 16px;
  }

  /* Images */
  .section5-images {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
  }

  .section5-image {
    flex: 0 1 45%;
    max-width: 140px;
  }

  /* Yellow box hugs wave */
  .section5-text-bg {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 10px 14px;
    margin-top: -30px;   /* closer to images */
    margin-bottom: 10px; /* good gap for next section */
    line-height: 1.2;
    position: relative;
    z-index: 2; /* ensure it sits on top of wave */
  }

 /* Ensure no white background is visible behind images */
  .sc5-viewport {
    padding: 0;
    overflow: hidden;
  }

  .sc5-track { gap: 0 !important; }                /* no gaps => no peeking */
  .sc5-slide {
    flex: 0 0 100% !important;                     /* 1 slide per view */
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none;
  }
  .sc5-slide img {
    display: block;
    width: 86%;                                    /* smaller visual size */
    max-width: 460px;                              /* optional cap */
    height: auto;
    margin: 0 auto;                                /* perfectly centered */
    border: 0;
  }

  .sc5-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #327a9c;
  font-size: 28px;
  line-height: 1;
  padding: 0 6px;
  cursor: pointer;
  z-index: 3;
}

  .sc5-prev{ 
  left: 6px;
}     
  .sc5-next{
  right: 6px;
}

}

/* === Section 5 carousel – Desktop (default) === */
.sc5-viewport {
  overflow: hidden;     /* hard clip edges */
  padding: 0;           /* no internal padding that could throw off math */
}

.sc5-track {
  display: flex;
  gap: var(--sc5-gap, 26px);
  transition: transform 450ms ease;
  will-change: transform;
}

.sc5-slide {
  /* exactly 2 per view: (100% - gap) / 2 */
  flex: 0 0 calc((100% - var(--sc5-gap, 26px)) / 2);
  max-width: calc((100% - var(--sc5-gap, 26px)) / 2);
  margin: 0;           /* prevent extra spacing that can cause peeking */
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.sc5-slide img {
  display: block;
  width: 100%;
  height: auto;
}

/* Simple blue arrows (no box) */
.sc5-btn {
  background: none;
  border: none;
  color: #327a9c;
  font-size: 28px;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  padding: 0 6px;
  cursor: pointer;
}
.sc5-prev { left: 6px; }
.sc5-next { right: 6px; }

/* === Mobile (≤768px): 1-up, smaller look, no peeking === */
@media (max-width: 768px) {
  .sc5-track {
    gap: 0 !important;              /* removes side leak from gaps */
  }

  /* Keep slide 100% so the JS step = viewport width (clean snap) */
  .sc5-slide {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-shadow: none;               /* optional */
  }

  /* Shrink the IMAGE only to 75% and center it */
  .sc5-slide img {
    width: 70% !important;
    margin: 0 auto !important;
    display: block;
  }

  .sc5-prev { left: 6px; }
  .sc5-next { right: 6px; }
}


/* ================================
   SECTION 6
   ================================ */
.section6 {
  width: 100%;
  text-align: center;
  padding: 10px 0px;
}

.section6-header {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 32px;
  font-weight: 500;
  color: #327a9c;
  text-transform: uppercase;
  margin: 40px auto 30px;   /* ✅ fixed margins */
  padding: 0;
}

.section6-header .star-icon {
  width: 25px;
  height: 20px;
  flex-shrink: 0;  /* prevents resizing */
}

.section6-form {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Form rows */
.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Special class for three items in a row */
.form-row.three-items .form-group {
  flex: 1 1 30%;
}

/* Form group */
.form-group {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  flex: 1 1 100%;
}

/* Labels and inputs */
label {
  margin-bottom: 5px;
  font-weight: 500;
  text-align: left;
}

.required {
  color: red;
}

input, select, textarea {
  padding: 10px 15px;
  border-radius: 25px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

textarea {
  border-radius: 10px;
  resize: vertical;
  max-height: 200px;
}

/* Force checkbox row left aligned */
.section6 .checkbox-row {
  display: flex;
  align-items: center;       /* vertical align checkbox + text */
  justify-content: flex-start; /* align whole row left */
  gap: 8px;                  /* spacing between box and text */
  width: 100%;
  text-align: left;          /* text starts left */
}

/* Checkbox itself */
.section6 .checkbox-row input[type="checkbox"] {
  margin: 0;
  flex-shrink: 0; /* checkbox doesn’t shrink */
}

/* Label sits to the right of checkbox */
.section6 .checkbox-row label {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  cursor: pointer;
  text-align: left;
}

/* Submit button */
button[type="submit"] {
  background-color: #327a9c;
  color: #fff;
  border: none;
  padding: 12px 25px;      /* slightly smaller padding */
  border-radius: 25px;
  font-size: 15px;      /* slightly smaller font */
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  display: block;           /* center button */
  margin: 20px auto 0;      /* top spacing, centered horizontally */
  width: 180px;             /* fixed width for consistency */
  text-align: center;
}

button[type="submit"]:hover {
  background-color: #245a75;
}

/* reCAPTCHA placeholder styling */
.recaptcha-placeholder {
  width: 100%;
  height: 78px;
  background: #f5f5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .section6 {
    width: 100%;
    max-width: 100%;
    padding: 20px 10px 20px; /* reduce top/bottom padding to shift closer */
    margin: 0 auto;
    box-sizing: border-box;
  }

  .section6-header {
    display: flex;              /* flex for full control */
    justify-content: center;    /* center text + stars horizontally */
    align-items: center;        /* vertical align */
    flex-wrap: wrap;            /* allow wrapping without breaking center */
    gap: 6px;
    text-align: center;         /* multiline text centered */
    font-size: 1.2rem;
    margin: 0 auto 30px;
  }

  .section6-header .star-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .section6-form {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .form-row, .form-row.three-items {
    flex-direction: column;
    gap: 15px;
  }

  .form-group {
    flex: 1 1 100%;
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 90%;
    box-sizing: border-box;
    font-size: 0.9rem;
  }

  button[type="submit"] {
    width: 100%;
    max-width: 280px;
    margin: 20px auto 0;
  }

  textarea {
    max-height: 150px;
  }

  .checkbox-row {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    text-align: left;
  }
}

/* ================================
   SECTION 7
   ================================ */
.section7 {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 120px 20px 80px;
  box-sizing: border-box;
  text-align: center;

  /* 🌊 Top wave only */
  background: url('../images/small-wave-up.png') no-repeat top center;
  background-size: 100% auto;
}

.section7-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Wave edge-to-edge */
.section7-bg-top {
  display: block;
  width: 100vw; 
  max-width: 100vw;
  height: auto;
  margin-left: calc(-50vw + 50%);       /* edge-to-edge */
  position: relative;
  z-index: 0;
}

.section7-content {
  position: relative;
  z-index: 1;  /* ✅ keep content above wave */
}

/* Header with stars */
.section7-header {
  position: relative;
  z-index: 1;
  font-size: 32px;
  font-weight: 500;
  color: #327a9c;
  text-transform: uppercase;
  margin: -10px 0 50px; /* bottom margin reduced to 30px for closer spacing with store cards */
}

.star-icon {
  width: 25px;
  height: 20px;
  margin: 0 10px;
  position: relative;
  top: 1px;
}

/* Store locations grid */
.section7-locations {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));  /* ✅ responsive grid */
  gap: 25px;
  justify-content: center;
  margin-bottom: 50px;
}

/* Store card fixed height and width */
.store {
  width: 250px;           /* same as grid column */
  height: 65px;          /* fixed height for uniformity */
  background: #6495cc;
  color: #fff;
  padding: 15px 15px;
  border-radius: 25px;
  border: 3px solid #fff;
  text-align: center;
  font-family: "MADE Tommy", sans-serif;
  box-sizing: border-box;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically center content */
}

/* .store:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  background: #4a7aa5;
} */

.store .shop-name {
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 0;
}

.store .shop-address {
  font-weight: 300;
  font-size: 13px;
}

/* Contact buttons */
.section7-contacts {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 20px; /* horizontal spacing between buttons */
  flex-wrap: wrap;
  margin-top: 0; /* ensures no extra gap above buttons */
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;      /* smaller and consistent with cards */
  border-radius: 25px;
  background-color: #327a9c;
  color: #fff;
  font-family: "MADE Tommy", sans-serif;
  font-size: 16px;          /* slightly smaller */
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  gap: 8px;
  max-width: 140px;         /* same visual width as store card */
  width: 100%;
}

/* Hover effect */
.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  background-color: #245a75;
}

/* Icon size */
.contact-btn i {
  font-size: 16px;
  vertical-align: middle;
}

.contact-btn.whatsapp i {
  font-size: 20px;  /* slightly larger for WhatsApp icon */
}

@media (min-width: 769px) {
  .section7-locations {
    display: grid;
    grid-template-columns: repeat(3, 280px); /* fixed width per card */
    justify-content: center;  /* center the whole grid */
    gap: 25px;                /* spacing between cards */
  }

  .store {
    width: 100%;     /* fills the 280px column */
    max-width: none; /* no extra width limits */
  }
}

@media (max-width: 768px) {
  .section7 {
    padding: 30px 10px 40px;  /* bring title closer to wave */
    background-size: 100% auto;
  }

  .section7-header {
    display: flex;
    justify-content: center;  /* center as a group */
    align-items: center;      /* vertical alignment */
    text-align: center;       /* fallback for wrapping text */
    font-size: 1.2rem;        /* match Section 6 */
    margin: 0 auto 20px;      /* horizontal center + spacing below */
    flex-wrap: wrap;           /* allows wrapping without breaking center */
  }

  /* Ensure stars don’t shrink and stay aligned */
  .section7-header .star-icon {
    flex-shrink: 0;
    display: inline-block;
  }

  /* Locations grid and stores */
  .section7-locations {
    display: flex;              /* switch grid to flex for simplicity */
    flex-direction: column;     /* stack vertically */
    align-items: center;        /* ✅ center all children horizontally */
    gap: 20px;
  }

  .store {
    width: 90%;                 /* responsive width */
    max-width: 320px;           /* don’t stretch too wide */
    margin: 0 auto;             /* ✅ ensure centered */
  }

  /* Contacts */
  .section7-contacts {
    flex-direction: column;
    gap: 15px;
  }

  .contact-btn {
    display: block;        /* ensures full block for centering */
    margin: 0 auto;        /* center horizontally */
    max-width: 140px;      /* optional */
  }

  /* If using icons inside buttons */
  .contact-btn i {
    display: inline-block;
    vertical-align: middle;
  }

  .contact-btn.whatsapp i {
    font-size: 18px;
  }

  .section5-bg-top,
  .section5-bg-bottom,
  .section7-bg-top {
    max-height: 120px;   /* ✅ keeps them slim on mobile */
    height: auto;
  }
}

/* ================================
   SECTION 8 – FAQ
   ================================ */
.section8 {
  width: 100%;
  text-align: center;
  padding: 50px 20px 40px; /* tighter top/bottom padding */
}

/* Section header */
.section8-header {
  font-size: 32px;
  font-weight: 500;
  color: #327a9c;
  text-transform: uppercase;
  margin-bottom: 30px; /* smaller gap below header */
}

.star-icon {
  width: 25px;
  height: 20px;
  margin: 0 10px;
  position: relative;
  top: 1px;
}

/* FAQ container */
.faq-container {
  max-width: 750px;   /* smaller width (was 800px) */
  margin: 0 auto;     /* keep it centered */
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #ccc;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background: none;
  border: none;
  padding: 15px 20px;
  font-family: "MADE Tommy", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #327a9c;
  cursor: pointer;
  position: relative;
}

.faq-question::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #327a9c;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::before {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;     /* reduce padding left/right */
  font-family: "MADE Tommy", sans-serif;
  font-size: 15px;
  color: #333;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 8px 15px 12px 15px; /* smaller padding inside */
}

/* Responsive */
@media (max-width: 768px) {
  .section8-header { font-size: 22px; }
  .faq-question { font-size: 14px; padding: 10px 15px; }
  .faq-answer { font-size: 12px; }

  /* ✅ Mobile centering fixes */
  section {
    padding: 30px 15px;
  }

  .section1,
  .section3-content {
    flex-direction: column;
    align-items: center;
  }
}

/* ================================
   FOOTER
   ================================ */
footer {
  background-color: #1196d7;
  color: #fff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-family: "MADE Tommy", sans-serif;
  font-size: 14px;
  margin-top: 20px;
}

footer p {
  margin: 0;
}

footer a {
  color: inherit;              /* Keeps the same footer font color */
  text-decoration: none;       /* Removes underline */
  font-family: inherit;        /* Keeps the same font style */
  font-size: inherit;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #0a4d7a;
  text-decoration: none;        
}

/* Back to top button */
.scroll-top {
  width: 100%;
  text-align: center;
  padding: 15px 0;
  font-family: "MADE Tommy", sans-serif;
}

/* Button reset */
.scroll-top button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: #9fa1a4;
  text-transform: uppercase;
  text-align: center;
  outline: none;
}

/* Circle for icon */
.scroll-top button span.fa-solid {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #dfe0e1;
  color: #9fa1a4;
  font-size: 20px;
  margin: 0 auto 7px;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease-in-out;
}

/* Text under icon */
.scroll-top .back-to-top-text {
  font-size: 14px;
  color: #9fa1a4;
}

.scroll-top button:hover span.fa-solid {
  background: #4a7aa5;
  color: #fff;
}
.scroll-top button:hover .back-to-top-text {
  color: #4a7aa5;
}

/* Prevent pink staying after click */
.scroll-top button:focus span.fa,
.scroll-top button:active span.fa {
  background: #dfe0e1;
  color: #4a7aa5;
}
.scroll-top button:focus .back-to-top-text,
.scroll-top button:active .back-to-top-text {
  color: #4a7aa5;
}

/* Responsive footer */
@media (max-width: 768px) {
  footer {
    flex-direction: column;     /* stack items vertically */
    text-align: center;         /* center text for neatness */
    gap: 12px;                  /* spacing between lines */
    padding: 20px 15px;         /* slightly tighter padding */
  }

  .back-to-top-container {
    margin: 20px 0 0;           /* reduce space for mobile */
  }
}

/* === Section 3 · Mobile fix pack (place at the very end) === */
@media (max-width: 768px) {
  /* 1) Kill desktop nudge on mobile */
  .section3-right {
    margin-left: 0 !important;
    width: 100%;
  }

  /* 2) Center the big image for sure */
  .section3-left {
    display: block;                /* avoid flex weirdness */
    text-align: center;
    margin: 0 auto 16px;
    width: 100%;
  }
  .section3-left img {
    display: block;
    margin-left: auto;
    margin-right: auto;            /* hard center */
    max-width: 50%;                /* smaller on mobile */
    height: auto;
  }

  /* 3) Stack icon above text and align to left */
  .section3-block {
    display: flex;
    flex-direction: column !important;  /* stack vertically */
    align-items: flex-start !important; /* left edge */
    padding-left: 0 !important;         /* remove left padding so icon sits at section edge */
    padding-right: 12px;                /* safe right gutter */
    box-sizing: border-box;
    width: 100%;
  }

  .section3-icon-container {
    width: 100%;
    display: flex;
    justify-content: flex-start;        /* icon flush left (within section padding) */
    margin-bottom: -5px;
    margin-top: -5px;
  }

  .section3-icon {
    height: 36.5px;
    width: auto;
    flex-shrink: 0;
  }

  /* 4) Text must never cut off */
  .section3-text-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-align: left !important;
  }
  .section3-text-container p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  /* 5) Bottom image centered too */
  .section3-bottom img {
    display: block;
    margin: 0 auto;
    max-width: 85%;
    height: auto;
  }
}

/* ================================
   THANK YOU PAGE
   ================================ */
.thanksPage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #f0f9ff;   /* light sky blue background */
  padding: 20px;
  box-sizing: border-box;
}

.thanksWrap {
  background: #ffffff;   /* white box */
  border-radius: 15px;
  padding: 60px 50px;    /* ✅ more padding inside */
  max-width: 750px;      /* ✅ increase width */
  width: 100%;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.logo2 img {
  max-width: 220px;
  margin-bottom: 30px;
}

.thanksWrap h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0887bc;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.thanksWrap p {
  font-size: 1.2rem;
  color: #327a9c;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Follow Us section */
.followUs {
  text-align: center;        /* center everything */
  margin-top: 25px;
}

.followUs h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0887bc;
  margin-bottom: 15px;
}

.followUs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;     /* ✅ keeps list centered */
  text-align: left;          /* ✅ keeps text aligned with icons */
}

.followUs li {
  margin: 12px 0;
}

.followUs a {
  font-size: 1.1rem;
  color: #327a9c;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.followUs a:hover {
  color: #ff6b6b;            /* hover effect */
}

/* Icon styling */
.followUs i {
  font-size: 1.4rem;
  color: #0887bc;   /* darker blue */
  width: 28px;
  text-align: center;
}


/* ================================
   MOBILE RESPONSIVE
   ================================ */
@media (max-width: 768px) {
  .thanksWrap {
    padding: 25px 20px;
  }

  .thanksWrap h1 {
    font-size: 1.6rem;
  }

  .thanksWrap p {
    font-size: 0.9rem;
  }

  .followUs a {
    font-size: 0.9rem;
  }
}

/* === Section 6: checkbox row — force true left alignment === */
.section6 .form-row.checkbox-row {
  display: grid !important;
  grid-template-columns: 20px 1fr !important; /* [□][label] */
  column-gap: 8px !important;
  align-items: center !important;
  justify-items: start !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
}

.section6 .form-row.checkbox-row input[type="checkbox"] {
  grid-column: 1 !important;
  margin: 0 !important;
}

.section6 .form-row.checkbox-row label {
  grid-column: 2 !important;
  margin: 0 !important;
  line-height: 1.4;
  font-size: 0.95rem;
  white-space: normal;          /* allow wrapping */
  word-break: break-word;       /* never overflow */
  width: auto !important;
}

/* ================================
   MEDIUM SCREENS (LAPTOP ≥ 992px)
   ================================ */
@media (min-width: 992px) {
  body {
    font-size: 16px;
    line-height: 1.7;
  }

  header {
    height: 90px;
    padding: 12px 50px;
  }

  .logo img {
    height: 130px;        /* control height consistently */
    width: auto;         /* let width adjust naturally */
    max-height: none;    /* remove extra constraint */
  }

  .header-text a {
    font-size: 20px;
    margin: 0 10px;
  }

  .banner {
    max-height: 500px;   /* laptop hero height */
  }

  .section1 {
    max-width: 1400px;
    gap: 30px;
  }

  .section1-left .section1-text {
    font-size: 1rem;
  }

  .section1-left-images img {
    width: 190px;
    height: 190px;
  }

  .section1-form-wrapper {
    max-width: 400px;
    padding: 30px;
  }

  .thanksWrap {
    max-width: 820px;
    padding: 70px 55px;
  }

  .thanksWrap h1 {
    font-size: 2.7rem;
  }

  .thanksWrap p {
    font-size: 1.3rem;
  }
}

/* ================================
   LARGE SCREENS (DESKTOP ≥ 1200px)
   ================================ */
@media (min-width: 1200px) {
  body {
    font-size: 18px;
    line-height: 1.8;
  }

  header {
    height: 100px;
    padding: 15px 60px;
  }

  .logo img {
    width: 240px;
  }

  .header-text a {
    font-size: 22px;
    margin: 0 12px;
  }

  .banner {
    max-height: 600px;   /* desktop hero height */
  }

  /* Add breathing space below banner before Section 2 */
  .banner-dp {
    margin-bottom: 40px;
  }

  .section1 {
    max-width: 1500px;
    gap: 5px;
  }

  .section1-left .section1-text {
    font-size: 1.1rem;
  }

  .section1-left-images img {
    width: 200px;
    height: 200px;
    margin-bottom: 10px;
  }

  .section1-form-wrapper {
    max-width: 440px;
    padding: 25px;
  }

  /* Form header */
  .section1-form-wrapper h3 {
    font-size: 1.6rem;     /* make bigger */
    margin-top: -15px;         /* lift upwards */
    margin-bottom: 15px;   /* consistent spacing */
  }

  /* Inputs & selects */
  .section1-form input,
  .section1-form select,
  .section1-form textarea {
    font-size: 0.85rem;   /* slightly larger */
    padding: 10px 12px;   /* enough padding */
    height: 38px;         /* uniform height */
    border-radius: 12px;
  }

  /* Fix select so text doesn’t get cut off */
  .section1-form select {
    line-height: 1.4;     /* let text breathe */
    height: 38px;         /* match input height */
    appearance: none;     /* cleaner look */
    background-position: right 10px center;
  }

  /* Ensure textarea matches inputs */
  .section1-form textarea {
    height: 38px;         /* same as input */
    resize: none;         /* disable resize if not needed */
  }

  .section1-form button {
    font-size: 1rem;
    max-width: 150px;
  }
  
   /* Optional: ensure Section 2 starts cleanly */
  .section2 {
    padding-top: 40px;
    margin-bottom: 20px;
  }

  .thanksWrap {
    max-width: 900px;
    padding: 80px 60px;
  }

  .thanksWrap h1 {
    font-size: 3rem;
  }

  .thanksWrap p {
    font-size: 1.4rem;
  }
}

/* ================================
   MEDIUM SCREENS (LAPTOP ≥ 992px)
   ================================ */
@media (min-width: 992px) {
/* Section container */
  .section3 {
    max-width: 1350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section3-content {
  display: flex;
  justify-content: flex-start;   /* stick them closer instead of centering */
  align-items: flex-start;
  gap: 25px;                     /* ✅ reduce spacing between left & right */
  position: relative;
}

.section3-right {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
  margin-top: 40px;              /* ✅ shift column down to align with image */
  margin-left: -30px;            /* ✅ pull it closer to the image */
}

  /* Left column image */
  .section3-left {
    flex: 0 0 40%;
    max-width: 40%;
    position: relative;
  }

  .section3-left img {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
    margin: 15px auto;
  }

  /* Right column (icons + text stacked) */
  .section3-right {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
  }

  /* Icon styling */
  .section3-icon {
  height: 60px;       /* ✅ consistent height for all icons */
  width: auto;        /* auto-adjust width based on aspect ratio */
  margin-bottom: 10px;
  object-fit: contain; /* prevent distortion */
  display: block;
}

.section3-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;   /* reduced from 40px */
}

.section3-block.block1,
.section3-block.block2,
.section3-block.block3 {
  margin-top: 15px;         /* ❌ remove the extra top margins */
}

  /* Text under each icon */
  .section3-text-container {
    font-size: 0.9rem;   /* smaller text */
    line-height: 1.4;
    text-align: left;
    max-width: 95%;
    margin-top: 5px;
  }

  /* === Section 4 === */
  .section4-header {
    font-size: 32px;
  }
  .section4-text {
    font-size: 1.1rem;
    max-width: 850px;
  }

  /* === Section 5 === */
  .section5-header {
    font-size: 32px;
  }
  .section5-images {
    gap: 50px;
  }
  .section5-image img {
    max-width: 450px;
  }
  .section5-text-bg {
    font-size: 1.2rem;
    padding: 30px 40px;
  }

  /* === Section 6 === */
  .section6-header {
    font-size: 34px;
  }
  .section6-form {
    gap: 25px;
  }

  /* === Section 7 === */
  .section7-header {
    font-size: 34px;
    margin-bottom: 60px;
  }
  .store {
    width: 280px;
    height: 70px;
    font-size: 16px;
  }
  .store .shop-name {
    font-size: 18px;
  }
}

/* ================================
   LARGE SCREENS (DESKTOP ≥ 1200px)
   ================================ */
@media (min-width: 1200px) {
  /* === Section 3 === */
  .section3-header {
    font-size: 38px;
    margin-bottom: 50px;
  }
  .section3-content {
    align-items: flex-start;   /* lock both columns to same top line */
    gap: 20px;                 /* balanced spacing */
  }

  .section3-left {
    flex: 0 0 40%;        /* narrower column */
    max-width: 40%;
  }

  .section3-left img {
    max-width: 350px;     /* smaller image */
    margin: 20px auto;
  }

  .section3-right {
    flex: 0 0 50%;
    max-width: 50%;
    margin-top: 40px;
    gap: 25px;
  }

  .section3-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;   /* keep text left-aligned */
    margin: 0;                 /* reset */
  }

  .section3-icon {
    height: 75px;              /* 🔥 smaller consistent icon size */
    width: auto;
    margin-bottom: 5px;        /* space between icon and text */
    object-fit: contain;
  }

  .section3-text-container {
    font-size: 1.1rem;
    line-height: 1.3;
    max-width: 100%;
  }

  /* === Section 4 === */
  .section4-header {
    font-size: 36px;
  }
  .section4-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 950px;
  }

  /* === Section 5 === */
  .section5-header {
    font-size: 36px;
  }
  .section5-images {
    gap: 60px;
  }
  .section5-image img {
    max-width: 500px;
  }
  .section5-text-bg {
    font-size: 1.3rem;
    line-height: 1.6;
    padding: 40px 50px;
    max-width: 800px;
  }

  /* === Section 6 === */
  .section6-header {
    font-size: 38px;
  }
  .section6-form {
    max-width: 1000px;
    gap: 30px;
  }
  .form-group label {
    font-size: 1rem;
  }
 
  /* === Section 7 === */
  .section7-header {
    font-size: 38px;
  }
  .section7-locations {
    grid-template-columns: repeat(3, 300px);
    gap: 30px;
  }
  .store {
    height: 75px;
    font-size: 17px;
  }
  .store .shop-name {
    font-size: 19px;
  }
}

/* ================================
   STAR ICONS – Responsive Sizes
   ================================ */
.star-icon {
  width: 22px;
  height: 18px;
  margin: 0 8px;
  position: relative;
  top: 1px;
}

/* Medium screens (≥ 992px) */
@media (min-width: 992px) {
  .star-icon {
    width: 26px;
    height: 22px;
    margin: 0 10px;
  }
}

/* Large screens (≥ 1200px) */
@media (min-width: 1200px) {
  .star-icon {
    width: 30px;
    height: 26px;
    margin: 0 12px;
  }
}

/* === Section 3 – Final Mobile Fix Pack === */
@media (max-width: 768px) {
  /* Make right column take full width */
  .section3-right {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 -5px !important;   /* just safe side gutters */
    box-sizing: border-box !important;
  }

  /* Each block stacks vertically */
  .section3-block {
    width: 100% !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;   /* ✅ only affects the icon */
  }

  /* Center icon only */
  .section3-icon {
    height: 34px !important;
    width: auto !important;
    margin: 0 auto 10px auto !important; /* ✅ centers horizontally */
    display: block !important;
  }

  /* Text stays full width + left aligned */
  .section3-text-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 0 !important;     /* ✅ remove side gaps */
    margin: 0 !important;
    text-align: left !important; /* ✅ force left align */
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }

  .section3-text-container p {
    margin: -5px 0 5px 0 !important;
    text-align: left !important; /* ✅ ensure text doesn’t center */
  }

  /* Left image still full width on top */
  .section3-left img {
    max-width: 60% !important;
    margin: 0 auto 10px !important;
    display: block !important;
  }
}

/* ================================
   Section 3 – iPad Pro / Tablet View (992–1199)
   ================================ */
@media (min-width: 992px) and (max-width: 1199px) {

  /* Add breathing space below banner before Section 2 */
  .banner-dp {
    margin-bottom: 40px;
  }

  /* Optional: ensure Section 2 starts cleanly */
  .section2 {
    padding-top: 40px;
    margin-bottom: 20px;
  }

  .section3 {
    padding: 40px 20px;
  }

  /* Left video smaller */
  .section3-left {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .section3-left video.section3-video {
    max-width: 330px;
    border-radius: 65% / 35%;
  }

  /* Align and center content */
  .section3-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }

  .section3-right {
    flex: 0 0 50%;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px;
  }

  .section3-block,
  .section3-block.block1,
  .section3-block.block2,
  .section3-block.block3 {
    margin: 12px; !important;
  }

  .section3-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: relative;
  }

  /* Slight left offset for 1st and 3rd */
  .section3-block.block1 { margin-left: -12px; }
  .section3-block.block3 { margin-left: -12px; }

  /* Bigger icons */
  .section3-icon {
    height: 50px !important; /* increased from 40px */
    width: auto;
  }

  .section3-text-container {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
  }

  .section3-text-container p { margin: 0; }
}

/* Uncap and stop clipping the banner on desktop */
.banner {
  overflow: visible !important;   /* was: hidden */
  height: auto !important;
  max-height: none !important;    /* kills any earlier max-height */
}

.banner img {
  width: 100% !important;
  height: auto !important;        /* natural aspect ratio */
  object-fit: contain !important; /* keep the whole image visible */
  object-position: center bottom; /* optional: bias to bottom */
  display: block;
}

/* In case earlier media queries capped the banner */
@media (min-width: 992px) {
  .banner { max-height: none !important; }
}
@media (min-width: 1200px) {
  .banner { max-height: none !important; }
}