/* --- Custom Color Palette --- */
:root {
  --my-orange: #fd7e03;
  --my-yellow: #f9eb30;
  --black: #000;
  --white: #fff;

  --stylish-font: "Caesar Dressing", system-ui;

  /* Soft complementary colors */
  --soft-yellow-bg: #fffbe6; /* Very light yellow for body */
  --soft-off-white: #fffdf0; /* Slightly warmer off-white for main section */
  --light-orange-accent: #ffeee0; /* Light orange for icon backgrounds */
  --dark-text: #2c2c2c; /* Darker grey for main text */
  --medium-text: #5f5f5f; /* Medium grey for descriptions */
  --light-input-bg: #fffefa; /* Very light yellow for input backgrounds */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  /* border: 1px solid red; */
}

body {
  max-width: 100vw;
  overflow-x: hidden;
}

/* UNIVERSAL STYLES */

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-heading .pre {
  padding: 0.25em;
  width: 15em;
  background-color: var(--my-yellow);
  color: black;
  text-align: center;
  display: block;
  margin-bottom: 0.5em;
}

.section-heading h2 {
  font-size: 3em;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--my-yellow);
  line-height: 1em;
  margin: 1rem 0;
}

.section-heading h2 span {
  font-weight: 500;
  color: white;
}

.section-heading h2 span.creative {
  font-weight: 500;
  font-family: "Caesar Dressing", system-ui;
  font-weight: 400;
  font-style: normal;
  color: white;
}

.section-heading .brief {
  text-align: center;
  color: var(--soft-yellow-bg);
  width: 60%;
}

/* SECTION HEADINGS FOR LIGHT */

.section-heading.for-light {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3em;
}

.section-heading.for-light .pre {
  padding: 0.25em;
  width: 15em;
  background-color: var(--my-yellow);
  color: black;
  text-align: center;
  display: block;
  margin-bottom: 0.5em;
}

.section-heading.for-light h2 {
  font-size: 3em;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: center;
  color: black;
}

.section-heading.for-light h2 span {
  font-weight: 800;
  color: var(--my-orange);
}

.section-heading.for-light .brief {
  text-align: center;
  color: black;
  width: 60%;
}

/* BUTTON STYLES */

button:active {
  scale: 0.95;
  transition: scale 0.1s ease-in-out;
}

/* BODY STYLES */

body {
  overflow-x: hidden;
  background-color: var(--white);
}

a {
  text-decoration: none;
}

nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li {
  position: relative;
  font-weight: 400;
}

nav ul li a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
}

/* nav ul li.has-dropdown > a::after {
  content: " ▼";
  font-size: 0.7em;
} */

/* DROPDOWNS */
nav ul li ul {
  display: none;
  position: absolute;
  background: var(--white);
  top: 100%; /* Ensure it sits directly below the parent item */
  left: 0;
  list-style: none;
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  min-width: 180px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

nav ul li:hover > ul,
nav ul li ul:hover {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

nav ul li:hover ul {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

nav ul li ul li {
  padding: 10px 20px;
}

nav ul li ul li a {
  color: var(--black);
  font-weight: 400;
}

/* BUTTON */
.nav-btn {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  letter-spacing: -0.03em;
  position: relative;
}

.nav-btn::after {
  content: "";
  position: absolute;
  background-color: #fd7e03;
  width: 2em;
  height: 2em;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

.nav-btn:hover {
  background: var(--my-yellow);
  color: var(--black);
}

.nav-btn:hover .nav-btn::after {
  background-color: #000;
}
/* =========================================
   NEO-PROFESSIONAL NAVBAR (COMPLETE FIX)
   ========================================= */

/* --- 1. Header Container Override --- */
/* We use !important to stop 'main-styles.css' from breaking the layout */
.pro-header {
  position: fixed !important;
  top: 1.5em !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 95% !important; /* Wider on small screens */
  max-width: 1200px !important;
  height: auto !important;
  padding: 0 !important;
  background: transparent !important;
  z-index: 9999;
}

/* --- 2. The Floating Glass Bar --- */
.pro-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8em 2em;
  background-color: rgba(255, 255, 255, 0.95); /* Light Pro Background */
  backdrop-filter: blur(12px); /* Glass Effect */
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Soft Drop Shadow */
  border: 1px solid rgba(0, 0, 0, 0.02);
  width: 100%;
}

/* --- 3. Logo --- */
.pro-logo img {
  height: 40px;
  width: auto;
  display: block;
}

/* --- 4. Navigation Links --- */
.pro-nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.pro-nav ul li {
  position: relative;
}

.pro-nav ul li a {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.6em 1em;
  border-radius: 30px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Active & Hover States */
.pro-nav ul li.active a,
.pro-nav ul li:hover > a {
  background-color: var(--light-orange-accent);
  color: var(--my-orange);
}

/* The Chevron Icon inside the link */
.pro-nav .chevron {
  width: 10px;
  opacity: 0.5;
  transition: transform 0.3s ease;
}

.pro-nav li.has-dropdown:hover .chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* --- 5. Dropdown Menu --- */
.pro-dropdown {
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--white);
  min-width: 260px;
  padding: 1em;
  border-radius: 1em;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Show Dropdown on Hover */
.pro-nav li.has-dropdown:hover .pro-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.pro-dropdown li a {
  text-transform: none; /* Normal case for services */
  font-size: 0.85rem;
  display: block;
  color: var(--medium-text);
  padding: 0.6em 1em;
  background: transparent;
}

.pro-dropdown li a:hover {
  background-color: var(--soft-yellow-bg);
  color: var(--black);
  padding-left: 1.2em; /* Slide effect */
}

/* --- 6. Action Button --- */
.book-btn {
  background-color: var(--black);
  color: var(--my-yellow);
  padding: 0.7em 1.8em;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.book-btn:hover {
  background-color: var(--my-orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(253, 126, 3, 0.3);
}

/* --- 7. Mobile Toggle (Hamburger) --- */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--black);
  border-radius: 2px;
  transition: all 0.3s;
}

/* --- 8. Responsive / Mobile Styles --- */
@media (max-width: 900px) {
  /* Fix the header width on mobile */
  .pro-header {
    width: 92% !important;
    top: 1em !important;
  }

  .pro-navbar {
    padding: 0.8em 1.5em;
  }

  /* Hide Desktop Nav & Button */
  .pro-nav,
  .book-btn {
    display: none;
  }

  /* Show Hamburger */
  .mobile-toggle {
    display: flex;
  }
}

/* --- FIX FOR DROPDOWN DISAPPEARING --- */

/* 1. Adjust positioning to be consistent */
.pro-dropdown {
  top: 100%; /* Align directly to bottom of nav item */
  margin-top: 15px; /* Create the visual gap using margin */
}

/* 2. Create the invisible bridge */
/* This fills the gap between the link and the menu */
.pro-dropdown::before {
  content: "";
  position: absolute;
  top: -20px; /* Move up into the gap */
  left: 0;
  width: 100%;
  height: 20px; /* Height of the gap */
  background: transparent; /* Invisible */
  display: block;
}

/* --- MOBILE MENU OVERLAY STYLES --- */

#mobileMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95); /* Deep dark overlay */
  backdrop-filter: blur(10px); /* Glass effect */
  z-index: 10000;

  /* Flex centering */
  display: flex;
  align-items: center;
  justify-content: center;

  /* Animation State: Hidden by default */
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

/* When Javascript adds the 'active' class */
#mobileMenu.active {
  opacity: 1;
  visibility: visible;
}

#mobileMenu ul {
  list-style: none;
  text-align: center;
  padding: 0;
  width: 100%;
}

#mobileMenu ul li {
  margin: 1.5em 0;
}

#mobileMenu ul li a {
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s;
}

#mobileMenu ul li a:hover {
  color: var(--my-orange);
}

/* --- Mobile Submenu Styles --- */
.mobile-dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-arrow {
  color: var(--my-yellow);
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: 10px;
  display: inline-block;
}

.mobile-submenu {
  display: none; /* Hidden by default */
  background: rgba(255, 255, 255, 0.05);
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.mobile-submenu li {
  margin: 0.8em 0 !important;
}

.mobile-submenu li a {
  font-size: 1rem !important; /* Smaller font for sub-items */
  font-weight: 400 !important;
  color: #ccc !important;
}

/* --- PREMIUM MOBILE MENU OVERLAY --- */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(5, 5, 5, 0.95); /* Deep Black/Grey */
  backdrop-filter: blur(15px); /* Strong Glass Blur */
  -webkit-backdrop-filter: blur(15px);
  z-index: 20000;

  display: flex;
  align-items: center;
  justify-content: center;

  /* Hidden State */
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

/* Active State (Triggered by JS) */
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- CLOSE BUTTON --- */
.mobile-close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  z-index: 20001;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
  padding: 10px;
}

.mobile-close-btn:hover {
  color: var(--my-orange);
  transform: rotate(90deg); /* Cool rotation effect */
}

/* --- CONTENT STYLING --- */
.mobile-menu-content {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  text-align: center;
}

.mobile-branding {
  font-family: "Caesar Dressing", cursive;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.1); /* Subtle Watermark */
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mobile-links {
  list-style: none;
  padding: 0;
}

/* --- ANIMATED LINKS --- */
.mobile-links > li {
  margin-bottom: 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

/* When Active: Staggered Fade In */
.mobile-menu-overlay.active .mobile-links > li {
  transform: translateY(0);
  opacity: 1;
  /* Uses the --i variable from HTML to delay each item */
  transition-delay: calc(0.1s * var(--i));
}

.mobile-links a,
.dropdown-toggle {
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.mobile-links a:hover,
.dropdown-toggle:hover {
  color: var(--my-orange);
}

/* Highlight Link (Contact Us) */
.highlight-link {
  color: var(--my-yellow) !important;
  border: 1px solid var(--my-yellow);
  padding: 0.5em 1em;
  border-radius: 50px;
  display: inline-block;
}

.highlight-link:hover {
  background: var(--my-yellow);
  color: var(--black) !important;
}

/* --- MOBILE SUBMENU --- */
.mobile-submenu {
  display: none; /* Hidden */
  background: rgba(255, 255, 255, 0.05);
  margin-top: 15px;
  border-radius: 10px;
  padding: 10px 0;
  list-style: none;
}

.mobile-submenu li {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-submenu li:last-child {
  border-bottom: none;
}

.mobile-submenu a {
  font-size: 1rem; /* Smaller font */
  font-weight: 400;
  color: #ccc;
}

.mobile-submenu a:hover {
  color: var(--white);
  padding-left: 5px; /* Slide effect */
}

/* Arrow Rotation */
.mobile-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s;
  opacity: 0.7;
}

.mobile-dropdown-item.open .mobile-arrow {
  transform: rotate(180deg);
  color: var(--my-orange);
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100vh;
  background: var(--my-orange);
  clip-path: polygon(0 0, 100% 0, 60% 100%, 0% 100%);
  opacity: 0.8;
  z-index: 2;
}

.hero .info {
  z-index: 4;
  position: absolute;
  left: 10%;
  bottom: 40%;
  transform: translateY(50%);
  width: 50%;
  display: flex;
  gap: 1em;
  flex-direction: column;
}

.hero .info .subtitle {
  background-color: var(--my-yellow);
  height: 2em;
  position: relative;
  width: 12em;
  display: inline-block;
  padding: 0.5em;
  color: #000;
  text-align: center;
}

.hero .info .heading {
  font-size: 3em;
  font-family: "Montsserrat", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1em;
  width: 80%;
  color: white;
}

.hero .info p {
  width: 50%;
  color: var(--my-yellow);
}

.hero .info .subtitle::after {
  content: "";
  width: 200%;
  height: 1px;
  left: 110%;
  top: 50%;
  background: var(--my-yellow);
  position: absolute;
}

.hero .info button {
  width: 10em;
  padding: 0.5em;
  font-size: 1em;
  border: none;
  border-radius: 5em;
  background-color: var(--my-yellow);
  color: #000;
}

.hero .info button:hover {
  background-color: black;
  color: var(--my-yellow);
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-size: cover;
  transform: translateX(100%);
  transition: transform 1s ease;
}

.hero-slide.active {
  transform: translateX(0);
}

.hero-slide.leaving {
  transform: translateX(-100%);
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: var(--white);
  z-index: 10;
  transition: opacity 0.5s ease;
}

.hero-text .subtitle {
  background: var(--my-orange);
  color: var(--my-yellow);
  display: inline-block;
  padding: 6px 15px;
  /* border-radius: 5px; */
  font-weight: 550;
  margin-bottom: 15px;
  letter-spacing: -0.03em;
}

.hero-text h1 {
  font-size: 3rem;
  max-width: 600px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.03em;
}

/* ARROWS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  background: rgba(0, 0, 0, 0.4);
  padding: 14px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  font-size: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: 0.3s;
  backdrop-filter: blur(4px);
}

.arrow.left {
  left: 30px;
}
.arrow.right {
  right: 30px;
}

.arrow:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.6);
}

/* DOTS */
.dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.dots span {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dots span.active {
  background: var(--my-yellow);
}

/* STATS SECTION */

.stats {
  max-width: 80vw;
  border: 1px solid red;
  border-radius: 0.5em;
  margin: 1em auto;
  display: flex;
  background: var(--light-orange-accent);
}

.stats .left-side {
  background-color: var(--my-orange);
  width: 40%;
  padding: 1em;
  border-radius: 0.5em 0 0 0.5em;
}

.stats .left-side h2 {
  font-size: 2.5em;
  letter-spacing: -0.03em;
  line-height: 1em;
}

.stats .left-side button {
  background-color: black;
  padding: 0.5em;
  font-size: 1em;
  color: white;
  border: none;
  margin: 2em 0 1em 0;
  width: 10em;
}

.stats .right-side {
  display: flex;
  flex-direction: column;
  width: 60%;
}

.stats .right-side .top,
.stats .right-side .bottom {
  display: flex;
  width: 100%;
  height: 50%;
}

.stats .right-side .card-yf {
  width: 50%;
  height: 100%;
  background-color: var(--my-yellow);
  display: flex;
  flex-direction: row;
  padding: 1em;
  align-items: center;
  justify-content: space-evenly;
  gap: 1em;
}

.stats .right-side .card-yf img {
  height: 5em;
}

.stats .right-side .card-yf .text-side {
  display: flex;
  flex-direction: column;
}

.stats .right-side .card-yf .text-side h3 {
  font-size: 2.5em;
  letter-spacing: -0.03em;
}

/* CTA */

/* --- Call To Action Container --- */
.call-to-action {
  max-width: 100vw; /* Equivalent to max-w-7xl */
  width: 100%;
  margin: 2rem auto;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04); /* shadow-2xl */
  overflow: hidden;
}

/* Main Grid/Flex Container */
.cta-wrapper {
  display: grid;
  grid-template-columns: 1fr; /* Stacks on mobile */
}

/* --- Left Side: Content --- */
.cta-content {
  background-color: var(--my-orange);
  color: var(--white);
  padding: 2rem 1rem; /* Initial padding */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* min-height: 300px; */
}

.cta-content h2 {
  font-size: 1em; /* 4xl */
  line-height: 1;
  font-weight: 800; /* extabold */
  margin-bottom: 1rem;
  letter-spacing: -0.05em; /* tracking-tighter */
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 400px;
}

/* --- Button Styling --- */
.cta-button {
  width: fit-content;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-text);
  background-color: var(--my-yellow);
  border-radius: 9999px; /* rounded-full */
  border: none;
  cursor: pointer;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1); /* shadow-lg */
  transition: all 0.3s ease-in-out;
  outline: none;
}

.cta-button:hover {
  transform: scale(1.03);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1); /* shadow-xl */
}

.cta-button:focus {
  box-shadow: 0 0 0 4px rgba(253, 126, 3, 0.5); /* focus:ring-4 focus:ring-my-orange/50 */
}

/* --- Right Side: Image --- */
.cta-image {
  position: relative;
  min-height: 250px;
  background-color: #f3f4f6;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Responsive Design (Media Queries) --- */

/* Adjust padding for medium screens */
@media (min-width: 768px) {
  .cta-content {
    padding: 3rem; /* md:p-12 */
  }
  .cta-content h2 {
    font-size: 3rem; /* md:text-5xl */
  }
}

/* Layout for large screens (lg breakpoint - 1024px) */
@media (min-width: 1024px) {
  .cta-wrapper {
    grid-template-columns: 1fr 1fr; /* Two columns */
  }
  .cta-content {
    padding: 4rem; /* lg:p-16 */
  }
  .cta-content h2 {
    font-size: 3.5rem; /* lg:text-5xl */
  }
  .cta-image {
    min-height: auto; /* Allow image height to be determined by grid */
  }
}

/* Adjustments for extra-large screens (xl breakpoint) */
@media (min-width: 1280px) {
  .cta-content h2 {
    font-size: 4rem; /* xl:text-6xl */
  }
}

/* ABOUT US SECTION */

.about-us {
  display: flex;
  max-width: 100vw;
  align-items: center;
  margin: auto;
  padding: 2em 15vw;
  background-color: var(--soft-yellow-bg);
}

.about-us .text-side,
.about-us .img-side {
  width: 50%;
  padding: 1em;
}

.about-us .text-side h2 {
  font-size: 4em;
  /* font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1em; */
  position: relative;
  line-height: 0.9em;
  font-weight: 500;
  font-family: "Caesar Dressing", system-ui;
  font-weight: 400;
  font-style: normal;
}

.about-us .text-side h2::before {
  content: "";
  position: absolute;
  width: 25%;
  height: 3px;
  background-color: #000;
  right: 110%;
  top: 50%;
}

.about-us .text-side .more-info {
  width: 10em;
  padding: 0.5em;
  font-size: 1em;
  border: none;
  /* border-radius: 5em; */
  background-color: black;
  color: var(--my-yellow);
  margin-top: 1em;
}

.about-us .text-side .more-info:hover {
  background-color: var(--my-orange);
}

.about-us .img-side {
  position: relative;
  width: 50%;
  height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2em;
}

/* FIRST IMAGE - top-left large rounded shape */
.about-us .img-side::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 10%;
  width: 60%;
  height: 60%;
  background: url("/assets/images/img-1.jpg") center/cover no-repeat;
  border-radius: 1em;
  transition: all 0.4s ease;
}

/* SECOND IMAGE - bottom-right smaller rounded shape */
.about-us .img-side::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  background: url("/assets/images/img-2.jpg") center/cover no-repeat;
  border-radius: 1em;
  border: 15px solid var(--soft-yellow-bg);
  transition: all 0.4s ease;
}

/* ABOUT US FULL STORY */

.about-us.full-story {
  display: flex;
  flex-direction: column;
  max-width: 100vw;
  margin: auto;
  padding: 2em 15vw;
  background-color: var(--soft-yellow-bg);
}

.about-us.full-story h2 {
  font-size: 4em;
  /* font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1em; */
  position: relative;
  line-height: 0.9em;
  font-weight: 500;
  font-family: "Caesar Dressing", system-ui;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 0.75em;
}

.about-us.full-story h2::before {
  content: "";
  position: absolute;
  width: 25%;
  height: 3px;
  background-color: #000;
  right: 110%;
  top: 50%;
}

.about-us.full-story .story-sections {
  display: flex;
  flex-direction: column;
  gap: 3em;
  align-items: center;
}

.about-us.full-story .story-sections .section {
  display: flex;
  gap: 2em;
}

.about-us.full-story .story-sections .section.even {
  flex-direction: row-reverse;
}

.about-us.full-story .story-sections .section .highlight,
.about-us.full-story .story-sections .section p {
  width: 50%;
}

.about-us.full-story .story-sections .section .highlight {
  height: 10em;
  background-color: #000;
  border-radius: 1em;
}

.about-us.full-story .more-info {
  width: 15em;
  border-radius: 3em;
  padding: 0.75em;
  font-size: 1rem;
  border: none;
  /* border-radius: 5em; */
  background-color: black;
  color: var(--my-yellow);
  margin-top: 1em;
}

/* SERVICES SECTION */

.services {
  background-color: var(--my-orange);
  padding: 5vh 15vw;
  display: flex;
  flex-direction: column;
}

.services .card-wrapper {
  display: flex;
  flex-direction: row;
  /* flex-wrap: wrap; */
  justify-content: space-evenly;
  padding: 1em 0 2em 0;
  gap: 1em;
}

.services .wrapper {
  width: 33%;
  display: flex;
  flex-direction: column;
}

.services .wrapper.centre .service-card:first-of-type {
  margin-top: 5em;
}

.services .wrapper .service-card {
  width: 100%;
  min-height: 10em;
  background-color: var(--soft-yellow-bg);
  padding: 1em;
  border-radius: 0.5em;
  margin-top: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75em;
  cursor: pointer;
}

.services .wrapper .service-card p {
  text-align: center;
}

.services .wrapper .service-card a {
  width: 100%;
}

.services .wrapper .service-card a button {
  background-color: black;
  padding: 0.75em;
  color: var(--soft-yellow-bg);
  border: none;
  width: 100%;
  cursor: pointer;
  border-radius: 0.2em;
}

.services .service-card .icon {
  width: 30%;
  justify-self: center;
}

.services .card-wrapper .service-card:hover {
  scale: 1.02;
  transition: scale 0.5s ease-in-out;
  border: 1px solid var(--my-yellow);
}

/* .services .card-wrapper .service-card.centre {
  margin-top: 3em;
} */

.services .card-wrapper .service-card h3 {
  position: relative;
  font-size: 1.2em;
  font-weight: 800;
  margin-bottom: 1em;
  text-align: center;
}

.services .card-wrapper .service-card h3::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 2px;
  border-radius: 2em;
  bottom: -0.75em;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--my-orange);
}

.services .card-wrapper .service-card .img {
  width: 100%;
  height: 10em;
  border-radius: 0.3em;
}

/* WHY US SECTION */

.why-us {
  display: flex;
  flex-direction: row-reverse;
  max-width: 100vw;
  margin: auto;
  padding: 2em 15vw;
  background-color: var(--soft-yellow-bg);
}

.why-us .text-side,
.why-us .img-side {
  width: 50%;
  padding: 1em;
}

.why-us .text-side h2 {
  /* font-size: 3em;
  font-weight: 800;
  letter-spacing: -0.03em;
  position: relative; */

  font-size: 4em;
  /* font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1em; */
  position: relative;

  font-weight: 500;
  font-family: "Caesar Dressing", system-ui;
  font-weight: 400;
  font-style: normal;
}

.why-us .text-side h2::before {
  content: "";
  position: absolute;
  width: 25%;
  height: 3px;
  background-color: #000;
  left: 60%;
  top: 50%;
}

.why-us .text-side .more-info {
  width: 10em;
  padding: 0.5em;
  font-size: 1em;
  border: none;
  /* border-radius: 5em; */
  background-color: black;
  color: var(--my-yellow);
  margin-top: 1em;
}

.why-us .text-side .more-info:hover {
  background-color: var(--my-orange);
}

.why-us .text-side .points {
  margin-top: 1em;
}

.why-us .text-side .points p {
  display: flex;
  gap: 0.25em;
  align-items: center;
  margin-bottom: 0.25em;
}

.why-us .img-side {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-us .img-side div {
  width: 80%;
  height: 20em;
  border-radius: 1em;
}

/* TESTIMONIALS SECTION */

.testimonials {
  display: flex;
  max-width: 100vw;
  margin: auto;
  padding: 2em 15vw;
  background-color: var(--my-yellow);
  overflow-y: hidden;
}

.testimonials .text-side,
.testimonials .img-side {
  width: 50%;
  padding: 1em;
}

.testimonials .text-side h2 {
  font-size: 3em;
  font-weight: 800;
  letter-spacing: -0.03em;
  position: relative;
  line-height: 1em;
}

.testimonials .text-side h2 span {
  font-weight: 500;
}

.testimonials .text-side h2::before {
  content: "";
  position: absolute;
  width: 25%;
  height: 3px;
  background-color: #000;
  right: 110%;
  top: 25%;
}

.testimonials .text-side .more-info {
  width: 10em;
  padding: 0.5em;
  font-size: 1em;
  border: none;
  /* border-radius: 5em; */
  background-color: black;
  color: white;
  margin-top: 1em;
}

.testimonials .text-side .more-info:hover {
  background-color: var(--my-orange);
}

.testimonials .img-side {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: flex-end;
  overflow: hidden; /* ensure it's hidden */
  position: relative;
  height: 28em; /* height of 3 cards (8em each + gaps) */
}

.testimonials .img-side .testimon-track {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1em;
}

.testimonials .img-side .testimon-card {
  border-left: 5px solid var(--black);
  border-right: 1px solid var(--black);
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  height: 8em;
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}

.testimonials .img-side .testimon-card.even {
  align-self: flex-start;
}

.testimonials .img-side .testimon-card .circular {
  border-radius: 50%;
  height: 7em;
  width: 7em;
}

.testimonials .img-side .testimon-card .texter {
  display: flex;
  flex-direction: column;
  width: 50%;
  line-height: 1;
}

.testimonials .img-side .testimon-card .texter p {
  line-height: 1;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* CTA SECTION */

.cta {
  width: 100vw;
  background: url(/assets/images/img-7.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding: 5em 10vw;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--my-orange);
  opacity: 0.9;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta .section-heading {
  align-items: flex-start;
  text-align: left;
  z-index: 3;
  width: 50%;
  gap: 0.75em;
}

.cta .section-heading h2 {
  line-height: 1em;
  text-align: left;
  color: var(--soft-off-white);
}

.cta .section-heading h2 span {
  font-weight: 500;
  color: var(--my-yellow);
}

.cta .section-heading p:nth-of-type(2) {
  text-align: left;
}

.cta .cta-image {
  width: 40%;
  border-radius: 0.75em;
  border: 1px solid var(--my-yellow);
}

.cta > img::before {
  content: "";
  position: absolute;
  border: 1px solid var(--soft-off-white);
  width: 20em;
  height: 100%;
  border-radius: 0.75em;
  background-color: #a71d1d;
  left: -3em;
  bottom: -2em;
  z-index: 10;
}

.cta .subscribe {
  width: 10em;
  padding: 0.5em;
  font-size: 1em;
  border: none;
  background-color: #000;
  color: var(--my-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta .subscribe:hover {
  background-color: var(--my-orange);
  border: 1px solid var(--my-yellow);
}

.cta .subscribe img {
  height: 1.5cap;
}

.cta.v2 {
  width: 100vw;
  background: url(/assets/images/img-7.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding: 5em 10vw;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.cta.v2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: black;
  opacity: 0.9;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta.v2 .subscribe {
  width: 10em;
  padding: 0.5em;
  font-size: 1em;
  border: none;
  background-color: var(--my-orange);
  color: var(--my-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

/* FOOTER SECTION */

.footer {
  /* background: url(/bgs/bg-black.jpg); */
  background-color: white;
  background-size: cover;
  background-repeat: no-repeat;
  /* background: linear-gradient(135deg, #000 0%, #111 100%); */
  color: #fff;
  padding: 3em 1em;
  /* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); */
  display: flex;
  justify-content: center;
  gap: 1em;
  max-width: 90vw;
  margin: auto;
}

.footer .section {
  padding: 1em;
}

.footer .logo {
  width: 160px;
  margin-bottom: 1em;
}

.footer .section h3 {
  margin-bottom: 1em;
  color: var(--my-orange);
  font-size: 1.2rem;
  font-weight: 500;
}

.footer .section.links {
  padding-right: 2em;
}

.footer .section.links h3 {
  padding-top: 1em;
}

.footer .section li {
  list-style: none;
  margin-bottom: 0.5em;
  color: black;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer .section li:hover {
  color: var(--my-orange);
}

.footer .section .right-arrow {
  height: 1cap;
  width: auto;
}

.footer .contacts {
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  margin-bottom: 0.8em;
  padding: 0 0 0 0.5em;
}

.footer .contacts p {
  margin: 0;
  font-size: 0.95rem;
  color: black;
}

.footer .contacts .icon {
  width: 20px;
  /* filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(93deg)
    brightness(105%) contrast(105%); */
}

.footer .section.form {
  background: var(--my-orange);
  padding: 1.5em;
  border-radius: 10px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.footer .section.form h3 {
  color: var(--my-yellow);
}

.footer .section.form form {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}

.footer textarea {
  resize: none;
  font-family: "Myriad Pro", sans-serif;
  font-size: 1.1rem;
}

.footer .section.form input,
.footer .section.form textarea {
  width: 100%;
  padding: 0.8em;
  background: white;
  border: 1px solid var(--my-yellow);
  border-radius: 6px;
  color: black;
  font-size: 0.95rem;
}

.footer .section.form input::placeholder,
.footer .section.form textarea::placeholder {
  color: #bbb;
}

.footer .section.form input:focus,
.footer .section.form textarea:focus {
  outline: none;
  border: 1px solid hsl(56, 96%, 57%);
}

.footer .section.form button {
  padding: 0.8em;
  background: hsl(56, 96%, 57%);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.footer .section.form button:hover {
  background: hsl(56, 96%, 50%);
  transform: scale(1.05);
}

.copyrights {
  display: flex;
  margin: 1em auto;
  padding: 1em;
  font-size: 0.75rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.copyrights a {
  color: var(--my-orange);
}

.copyrights::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 80%;
  background-color: black;
}

/* Popup Styles */
#popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

#popup {
  background: var(--white);
  padding: 2em;
  border-radius: 1em;
  text-align: center;
  position: relative;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2em;
  cursor: pointer;
  color: #aaa;
}

#close-popup:hover {
  color: #000;
}

#popup h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
  color: var(--my-orange);
}

#popup p {
  margin-bottom: 1.5em;
}

#popup button {
  background-color: var(--my-orange);
  color: white;
  border: none;
  padding: 0.75em 1.5em;
  border-radius: 5em;
  cursor: pointer;
  font-size: 1em;
}

#popup button:hover {
  background-color: #e66a00;
}
