/* ========== CSS VARIABLES ========== */
:root {
  /* Colors */
  --color-primary: #D91A6C;    /* Fuchsia */
  --color-secondary: #F5F5F5;  /* Light Grey */
  --color-white: #FFFFFF;
  --color-dark: #111111;
  --color-muted: #555555;
  --light-pink: rgba(217, 26, 108, 0.25);
  
  /* Fonts */
  --font-primary: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-secondary: 'Satoshi', 'Helvetica Neue', 'Inter', system-ui, sans-serif;
}

/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700,900&display=swap');

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

html{
  overflow-x: hidden;
}

body {
  font-family: var(--font-secondary);
  background: var(--color-white);
  overflow-x: hidden;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  padding: 0.5rem;
  transition: background 0.3s ease;
}

.site-header.scrolled {
  background: var(--color-secondary);
}

.header-container {
  max-width: 85vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ========== HAMBURGER (2 lines, top longer) ========== */
.hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 40px;
  z-index: 1001;
}

.hamburger-line {
  height: 2.5px;
  background-color: var(--color-primary);
  transition: background-color 0.2s ease;
  border-radius: 2px;
}

.line-top {
  width: 60px;  /* longer */
}

.line-bottom {
  width: 42px;  /* shorter */
}

.hamburger:hover .hamburger-line {
  background-color: var(--color-primary);
}

/* ========== FULLSCREEN MENU ========== */
.fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-secondary);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 1s cubic-bezier(0.2, 0.9, 0.4, 1.1), visibility 0s 0.5s;
}

.fullscreen-menu.open {
  transform: translateY(0);
  visibility: visible;
  transition: transform 1s cubic-bezier(0.2, 0.9, 0.4, 1.1), visibility 0s 0s;
}

/* Menu header: logo left, X right */
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}

.close-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.close-btn:hover {
  color: var(--color-primary);
}

/* Center content */
.menu-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.menu-nav {
  width: 100%;
  max-width: 500px;
  text-align: center;
}

.nav-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.nav-links-list a {
  text-decoration: none;
  font-family: var(--font-secondary);
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark);
  transition: color 0.2s ease;
  display: inline-block;
}

.nav-links-list a:hover {
  color: var(--color-primary);
}

/* Phone number - smaller than nav links */
.menu-phone a {
  text-decoration: none;
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--color-dark);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  transition: color 0.2s;
}

.menu-phone a:hover {
  color: var(--color-primary);
}

/* ========== BOUNCY ANIMATION ========== */
.bouncy-link {
  animation: bouncePop 0.7s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

@keyframes bouncePop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.28);
  }
  100% {
    transform: scale(1);
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-links-list a {
    font-size: 1.8rem;
  }
  .menu-phone a {
    font-size: 1rem;
  }
  .logo img {
    height: 60px;
  }
  .site-header {
    padding: 0.5rem 1.8rem;
  }
  .menu-header {
    padding: 1rem 1.5rem;
  }

  .hamburger{
    gap: 10px;
    margin-right: 1rem;
  }

  .hamburger-line{
    height: 2px;
  }

  .line-top {
    width: 40px;  /* longer */
  }

  .line-bottom {
    width: 28px;  /* shorter */
  }

  .nav-links-list {
    margin-top: 5vh;
  }

}

/* Prevent scroll when menu open */
body.menu-open {
  overflow: hidden;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 1.5rem;
}

.hero-headline {
  font-family: var(--font-primary);
  font-size: 4.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-tagline {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.hero-subtext {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.hero-cta {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-family: var(--font-secondary);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.hero-cta:hover {
  background: #b5135a;
  transform: scale(1.05);
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Responsive hero */
@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.5rem;
  }
  .hero-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
  }
  .hero-subtext {
    font-size: 0.7rem;
  }
  .hero-cta {
    padding: 0.8rem 1.8rem;
    font-size: 0.7rem;
  }
}

/* ========== SECTION 2: BRAND STORY STYLES ========== */
/* Add to your existing style.css */

.brand-section {
  position: relative;
  width: 100%;
  background: var(--color-dark);
  background-image: url('/images/bg.png');
  background-position: center;
  background-size: cover;
  padding: 2rem 0;
  overflow-x: hidden;
  padding-bottom: 5rem;
}

.brand-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.brand-container {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== MARQUEE (right to left) ===== */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  margin-bottom: 4rem;
}

.marquee-track {
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 5rem;
  animation: scrollRightToLeft 20s linear infinite;
  width: fit-content;
}

.marquee-logo {
  height: 50px;
  width: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}

@keyframes scrollRightToLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== HEADLINE (gray → white letter by letter on scroll) ===== */
.headline-wrapper {
  margin-bottom: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 10rem;
}

/* Text split styling */
.scroll-headline {
  font-family: var(--font-primary);
  font-size: 4.5rem;
  font-weight: 100;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Individual characters - start gray, transition to white */
.scroll-headline .char {
  color: var(--color-primary);
  transition: color 0.2s ease;
}

.scroll-headline .char.revealed {
  color: var(--color-white);
}

/* ===== Sub-description ===== */
.brand-subdesc {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  color: var(--color-white);
  max-width: 600px;
  margin-bottom: 4rem;
  line-height: 1.5;
}

/* ===== 2-COLUMN LAYOUT ===== */
.brand-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Left Column */
.brand-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tilted-text{
  margin-bottom: 1.5rem;
}

.tilted-underline {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 500;
  color: var(--color-white);
  position: relative;
}

.tilted-underline::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-white);
}

.brand-writeup {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 1px;
  word-spacing: 1px;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}

.rounded-cta {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  text-decoration: none;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 40px;
  width: fit-content;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.rounded-cta:hover {
  background: #b5135a;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(217, 26, 108, 0.2);
}

/* Right Column */
.brand-right {
  width: 100%;
}

.brand-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.brand-image:hover {
  transform: scale(1.02);
}

/* ===== UPDATED RESPONSIVE STYLES ===== */
/* Replace your existing @media queries with these */

/* Tablet (992px and below) */
@media (max-width: 992px) {
  .brand-container {
    max-width: 95vw;
    padding: 0 1.5rem;
  }
  
  .brand-two-col {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .scroll-headline {
    font-size: 3rem;
    text-align: center;
  }
  
  .tilted-underline {
    font-size: 2.5rem;
  }
  
  .brand-left {
    order: 2;
    text-align: center;
    align-items: center;
  }
  
  .brand-right {
    order: 1;
  }
  
  .tilted-text {
    text-align: center;
  }
  
  .tilted-underline::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
  }
  
  .brand-writeup {
    text-align: center;
    font-size: 1rem;
  }
  
  .rounded-cta {
    margin: 0 auto;
  }
  
  .brand-subdesc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .headline-wrapper {
    margin-bottom: 5rem;
    margin-top: 5rem;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .brand-section {
    padding: 1rem 0;
   padding-bottom: 4rem;
  }
  
  .brand-container {
    padding: 0 1rem;
    max-width: 100vw;
  }
  
  /* Marquee adjustments */
  .marquee-wrapper {
    margin-bottom: 2rem;
  }
  
  .marquee-content {
    gap: 3rem;
    animation-duration: 8s; /* Faster on mobile */
  }
  
  .marquee-logo {
    height: 30px;
    width: 70px;
  }
  
  /* Headline */
  .headline-wrapper {
    margin-bottom: 1rem;
    margin-top: 10rem;
    gap: 0.5rem;
  }
  
  .scroll-headline {
    font-size: 2rem;
    text-align: center;
    word-break: break-word;
  }
  
  /* Subdescription */
  .brand-subdesc {
    font-size: 0.9rem;
    padding: 0 1rem;
    margin-bottom: 2rem;
  }
  
  /* 2 Column Layout */
  .brand-two-col {
    gap: 2rem;
  }
  
  /* Left Column */
  .brand-left {
    gap: 1.5rem;
  }
  
  .tilted-underline {
    font-size: 1.8rem;
  }
  
  .brand-writeup {
    font-size: 0.9rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
    padding: 0 0.5rem;
  }
  
  .rounded-cta {
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
  }
  
  /* Fix for letter animation on mobile */
  .scroll-headline .char {
    display: inline-block;
  }
}

/* Fix for GSAP/SplitType text on mobile */
@media (max-width: 768px) {
  .scroll-headline {
    line-height: 1.3;
  }
  
  /* Ensure letters don't overflow */
  .scroll-headline .char {
    white-space: normal;
    word-break: break-all;
  }
}

/* Ensure images don't overflow on all devices */
img {
  max-width: 100%;
  height: auto;
}

/* Fix for container padding consistency */
.brand-container {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 1200px) {
  .brand-container {
    max-width: 95vw;
  }
}

@media (max-width: 768px) {
  .brand-container {
    max-width: 100%;
    padding: 0 1rem;
  }
}

/* Optional: Add smooth transition for all responsive changes */
.brand-section,
.brand-container,
.scroll-headline,
.brand-writeup,
.marquee-logo {
  transition: all 0.3s ease;
}

/* ========== OUR PROMISE SECTION ========== */
.promise-section {
  position: relative;
  width: 100%;
  padding: 5rem 0;
  overflow: hidden;
}

/* Subtle fuchsia radial gradient — light and focused behind text */
.promise-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  background: radial-gradient(at center, rgba(217, 26, 108, 0.25) 0%, rgba(217, 26, 108, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.promise-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Title Wrapper - no underline */
.promise-title-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.promise-title {
  font-family: var(--font-primary);
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin: 0;
}

/* Main Content Row */
.promise-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Quote SVGs */
.promise-quote-left,
.promise-quote-right {
  flex-shrink: 0;
}

.promise-quote-left svg,
.promise-quote-right svg {
  width: 40px;
  height: auto;
}

/* Center Text - smaller */
.promise-text {
  flex: 1;
  text-align: center;
}

.promise-text p {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-dark);
  margin: 0;
}

@media (max-width: 600px) {

  .promise-container{
    padding: 0 1rem;

  }

  .promise-content {
    flex-direction: row;
    gap: 0.75rem;
  }
  
  .promise-quote-left {
    order: 1;
  }
  
  .promise-text {
    order: 2;
    flex: 1;
  }

  .promise-quote-left svg,
  .promise-quote-right svg {
    width: 25px;
    height: auto;
  }
  
  .promise-quote-right {
    order: 3;
    transform: none;
  }
  
  .promise-title {
    font-size: 1.5rem;
  }
  
  .promise-text p {
    font-size: 0.9rem;
  }
}

/* ========== EXPLORE OUR SET SERVICES SECTION ========== */
.sets-section {
  position: relative;
  width: 100%;
  padding: 5rem 0;
  background-color: transparent;
  background-image: linear-gradient(180deg, var(--color-white) 60%, rgba(217, 26, 108, 0.25) 100%);
}

.sets-container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header: 2 columns */
.sets-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: center;
}

/* Left Column - Title */
.sets-title-col {
  display: flex;
  flex-direction: column;
}

.sets-title {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 500;
  color: var(--color-dark);
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.sets-title-underline {
  width: 200px;
  height: 3px;
  background: var(--color-muted);
}

/* Right Column - Description */
.sets-description {
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-muted);
  margin: 0;
  width: 45vw;
}

/* 2x2 Grid Cards */
.sets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Card Styles */
.set-card {
  position: relative;
  display: block;
  text-decoration: none;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.set-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.set-card-image {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 8px;
}

.set-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.set-card:hover .set-card-image img {
  transform: scale(1.05);
}

.set-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

.set-card:hover .set-card-overlay {
  opacity: 1;
}

.set-card-title {
  position: absolute;
  bottom: 2.7rem;
  left: 2rem;
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 400;
  color: white;
  z-index: 2;
  transition: transform 0.3s ease;
}

.set-card:hover .set-card-title {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
  .sets-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .sets-title {
    font-size: 2.2rem;
  }
  
  .sets-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .sets-section {
    padding: 3rem 0;
  }
  
  .sets-container {
    padding: 0 0.5rem;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sets-title-col{
    align-items: center;
  }
  
  .sets-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .sets-title-underline{
    width: 70px;
  }
  
  .sets-description {
    font-size: 0.85rem;
    width: 90vw;
    text-align: center;
  }
  
  .sets-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .set-card-image{
    height: 250px;
  }
  
  .set-card-title {
    font-size: 1.35rem;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ========== WHY CHOOSE US - IMAGE GRID LAYOUT ========== */
.why-choose-grid-section {
  position: relative;
  width: 100%;
  padding: 5rem 0;
  background-color: transparent;
  background-image: linear-gradient(180deg, var(--color-white) 60%, rgba(217, 26, 108, 0.25) 100%);
}

.why-choose-grid-container {
  max-width: 85vw;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.why-choose-grid-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-choose-grid-title {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  margin: 0 0 1rem 0;
}

.why-choose-grid-desc {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.why-choose-grid-underline {
  width: 80px;
  height: 3px;
  background: var(--color-primary);
  margin: 0 auto;
}

/* Desktop Layout - 3 columns */
.why-choose-desktop-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

/* Center stack (two landscapes) */
.center-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Card Base - ALL CARDS have position relative for overlay */
.grid-card {
  position: relative;
  background: transparent;
  overflow: hidden;
  border-radius: 8px;
}

.grid-card-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.grid-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.grid-card:hover .grid-card-image img {
  transform: scale(1.03);
}

/* Portrait cards aspect ratio */
.portrait-card .grid-card-image {
  height: 75vh;
}

/* Landscape cards aspect ratio */
.landscape-top .grid-card-image,
.landscape-bottom .grid-card-image {
  height: 40vh;
}

/* Caption overlay INSIDE the image at bottom */
.grid-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  backdrop-filter: blur(5px);
  border-radius: 0 0 12px 12px;
  pointer-events: none;
}

.caption-accent {
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  margin-bottom: 0.75rem;
}

.caption-title {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.25rem 0;
}

.caption-desc {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.4;
}

/* Hide mobile layout on desktop */
.why-choose-mobile-layout {
  display: none;
}

/* Responsive */
@media (max-width: 992px) {
  .why-choose-grid-title {
    font-size: 2.5rem;
  }
  
  .caption-title {
    font-size: 1rem;
  }
  
  .caption-desc {
    font-size: 0.8rem;
  }
  
  .grid-card-caption {
    padding: 1rem;
  }
}

@media (max-width: 768px) {

  .why-choose-grid-section {
    padding: 3rem 0;
  }
  
  .why-choose-grid-container {
    padding: 0 1rem;
    max-width: none;
  }
  
  .why-choose-grid-title {
    font-size: 1.8rem;
  }
  
  .why-choose-grid-desc {
    font-size: 1rem;
  }
  
  /* Hide desktop layout */
  .why-choose-desktop-layout {
    display: none;
  }
  
  /* Show mobile layout */
  .why-choose-mobile-layout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .mobile-portrait-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  
  .portrait-mobile .grid-card-image {
    height: 40vh;
  }
  
  .grid-card {
    border-radius: 8px;
  }
  
  .grid-card-image {
    border-radius: 8px;
  }
  
  .grid-card-caption {
    padding: 1rem;
  }
  
  .caption-title {
    font-size: 1.1rem;
  }
  
  .caption-desc {
    font-size: 0.8rem;
  }
}

/* ========== CTA SECTION ========== */
.cta-section {
  position: relative;
  width: 100%;
  padding: 5rem 0;
  background-color: transparent;
  background-image: linear-gradient(0deg, var(--color-white) 56%, var(--light-pink) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-card {
  position: relative;
  width: 85vw;
  height: fit-content;
  background-image: url('https://images.pexels.com/photos/5875750/pexels-photo-5875750.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-align: left;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 7rem 5rem;
}

.cta-title {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: white;
  margin: 0 0 1rem 0;
}

.cta-subtext {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-button-rounded {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  text-decoration: none;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button-rounded:hover {
  background: #b5135a;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(217, 26, 108, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content {
    padding: 6rem 1rem;
  }
  
  .cta-card {
    width: 95vw;
    height: auto;
    padding: 3rem 0;
    justify-content: center;
    text-align: center;
  }
  
  .cta-title {
    font-size: 1.5rem;
  }
  
  .cta-subtext {
    font-size: 0.8rem;
  }
  
  .cta-button-rounded {
    padding: 0.6rem 1.3rem;
    font-size: 0.8rem;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--color-white);
  background-image: url('/images/bg2.png');
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-inner {
  width: 70vw;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.footer-col {
  flex: 0 0 auto;
}

.footer-col:first-child {
  width: 400px;
}

.footer-col:nth-child(2) {
  width: 220px;
}

.footer-col:last-child {
  width: 220px;
}

.footer-logo img {
  height: 100px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-desc {
  font-family: var(--font-secondary);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.footer-contact p {
  font-family: var(--font-secondary);
  font-size: 1rem;
  color: var(--color-muted);
  margin: 0.3rem 0;
}

.footer-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--color-dark);
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.footer-ig img {
  width: 25px;
  height: 25px;
}

.footer-ig:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-dark);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 1rem;
}

.footer-col a {
  font-family: var(--font-secondary);
  font-size: 1rem;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-bottom p {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0.3rem 0;
  margin-bottom: 1rem;
}

.footer-bottom a {
  color: var(--color-primary);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 2rem 1.5rem;
  }

  .footer-inner {
    width: 100%;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-col:first-child,
  .footer-col:nth-child(2),
  .footer-col:last-child {
    width: 100%;
    text-align: left;
  }

  .footer-desc {
    max-width: 70vw;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 1.5rem;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-contact p{
    margin-bottom: 0.6rem;
  }

  .footer-ig {
    margin: 1rem auto 0;
  }

  .wtf{
    display: none;
  }
}

/* ========== COMING SOON OVERLAY ========== */
.coming-soon-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.coming-soon-card {
  background: var(--color-white);
  border-radius: 24px;
  padding: 2.5rem 3rem;
  text-align: center;
  max-width: 400px;
  margin: 1rem;
  animation: bounceIn 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
  cursor: default;
}

.coming-soon-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

.coming-soon-message {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  color: var(--color-dark);
  margin-bottom: 2rem;
  line-height: 1.4;
}

.coming-soon-close {
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.coming-soon-close:hover {
  background: #b5135a;
  transform: scale(1.02);
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .coming-soon-card {
    padding: 1.5rem;
  }
  
  .coming-soon-message {
    font-size: 1rem;
  }
  
  .coming-soon-icon {
    font-size: 3rem;
  }
}