/* --- VARIABLES --- */
:root {
  --primary-color: #f486c4; /* Pink Shade */
  --primary-dark: #d66ba8;
  --primary-light: #ffb6db;
  --text-dark: #1a1a1d;
  --text-light: #ffffff;
  --bg-dark: #1a1a1d;
  --bg-card: #252529;
  --brand-color: #f486c4; /* Deep Teal from screenshot */
  --bg-color: #f0f7f7;    /* Light background from screenshot */
  --text-color: #333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* --- HEADER --- */
.main-header {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  padding: 15px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #000;
}
.brand-name {
  font-family: "Sacramento", cursive;
  font-size: 28px;
  color: var(--primary-color);
}
.header-right {
  display: flex;
  gap: 25px;
  align-items: center;
}
.nav-item {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s;
}
.nav-item:hover {
  color: var(--primary-color);
}
.cart-icon {
  position: relative;
  font-size: 18px;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--primary-color);
  color: #fff;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- HERO SECTION --- */
.hero-banner {
  position: relative;
  width: 100%;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.hero-content {
  position: absolute;
  bottom: 5%;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  padding: 20px;
}
.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}
.cta-button {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 15px 40px;
  font-size: 13px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  font-weight: 600;
}
.cta-button:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

/* --- INTRO SECTION --- */
.intro-section {
  padding: 80px 20px;
  text-align: center;
  background: #fff;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #222;
}
.intro-text {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  color: #555;
}

/* --- ROLES --- */
/* .roles-section {
  background: #f9f9f9;
  padding: 80px 0;
}
.roles-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  width: 90%;
}
.roles-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 4px;
}
.roles-list li {
  margin-bottom: 15px;
  font-size: 1rem;
  position: relative;
  padding-left: 20px;
} */


/* --- OUTFIT CATEGORIES SECTION (Modern Minimal) --- */

.cat-sec-m7x3 {
  background: #fafafa;
  padding: 100px 0;
}

.cat-con-n4j8 {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 80px;
  width: 90%;
}

/* Image Side */
.cat-img-p2k9 img {
  width: 100%;
  max-width: 500px;
  border-radius: 2px;
  filter: grayscale(10%);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.cat-img-p2k9:hover img {
  transform: scale(1.02);
  filter: grayscale(0%);
}

/* Content Side */
.cat-content-r5h1 {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cat-head-w8d2 {
  margin-bottom: 10px;
}

.cat-sub-z3f6 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary-color);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.cat-title-b9m4 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  line-height: 1.15;
  color: #1a1a1d;
  font-weight: 400;
  margin: 0;
}

/* Categories Grid */
.cat-grid-t7k3 {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cat-item-v4n2 {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 25px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.cat-item-v4n2:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cat-item-v4n2:hover {
  padding-left: 10px;
  background: rgba(244, 134, 196, 0.02);
}

.cat-item-v4n2:hover .cat-num-x6p1 {
  color: var(--primary-color);
  transform: scale(1.1);
}

/* Number */
.cat-num-x6p1 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #ccc;
  line-height: 1;
  transition: all 0.3s ease;
  padding-top: 2px;
}

/* Text Content */
.cat-txt-y2m8 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cat-name-c5b9 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1d;
  margin: 0;
  letter-spacing: 0.3px;
  font-family: "Montserrat", sans-serif;
}

.cat-desc-d8r4 {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 968px) {
  .cat-con-n4j8 {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .cat-img-p2k9 {
    text-align: center;
  }
  
  .cat-title-b9m4 {
    font-size: 2.2rem;
  }
  
  .cat-item-v4n2 {
    grid-template-columns: 50px 1fr;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .cat-title-b9m4 {
    font-size: 1.8rem;
  }
  
  .cat-name-c5b9 {
    font-size: 1rem;
  }
  
  .cat-desc-d8r4 {
    font-size: 0.85rem;
  }
}



/* --- VIDEO SLIDER --- */
/* .video-slider-section {
  background: #fff;
  padding: 80px 0;
  overflow: hidden;
}
.center-text {
  text-align: center;
}
.swiper {
  width: 100%;
  padding: 50px 0;
}
.swiper-slide {
  width: 250px;
  height: 400px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  transition: opacity 0.3s;
  opacity: 0.6;
}
.swiper-slide-active {
  opacity: 1;
  box-shadow: 0 10px 30px rgba(244, 134, 196, 0.4);
}
.video-card {
  width: 100%;
  height: 100%;
  position: relative;
}
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 30px;
  pointer-events: none;
  opacity: 0.8;
}
.video-card.playing .play-icon {
  opacity: 0;
} */

/* --- REVIEWS --- */
.reviews-section {
  background: #fafafa;
  padding: 80px 20px;
}
.reviews-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.reviews-header {
  flex: 0 0 300px;
}
.google-badge {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 15px;
}
.badge-icon img {
  width: 50px;
  border-radius: 5px;
}
.stars {
  color: #fbbc04;
}
.reviews-slider-wrapper {
  flex: 1;
  min-width: 0;
}
.review-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  height: 100%;
}
.review-top {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 15px;
  font-weight: bold;
}
.pink-bg {
  background: #e91e63;
}
.blue-bg {
  background: #2196f3;
}
.purple-bg {
  background: #9c27b0;
}
.google-g-icon {
  position: absolute;
  right: 0;
  color: #777;
  font-weight: bold;
}

/* --- FOOTER --- */
/* .main-footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 60px 20px 20px;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-brand h3 {
  font-family: "Playfair Display", serif;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.footer-links a {
  display: block;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--primary-color);
}
.social-icons a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: var(--primary-color);
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  color: #666;
  font-size: 0.8rem;
} 
*/


/* new footer */

/* --- MODERN DARK FOOTER SECTION --- */

.ftr-sec-k2m9 {
  background-color: var(--bg-dark); /* Using your #1a1a1d */
  color: #ffffff;
  padding: 80px 0 30px 0;
  font-family: "Montserrat", sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ftr-container-x5p3 {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}

/* --- MAIN GRID LAYOUT --- */
.ftr-main-row-j8n4 {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 70px;
}

/* Column 1: Brand */
.ftr-col-brand-w2b6 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ftr-logo-text-y7m1 {
  font-family: "Sacramento", cursive; /* Matches your header font */
  font-size: 2rem;
  color: var(--primary-color); /* Pink shade */
  line-height: 1;
}

.ftr-desc-d9x3 {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #b0b0b0; /* Softer white for reading */
  max-width: 300px;
}

/* Social Icons */
.ftr-socials-g5h2 {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.ftr-soc-link-z8n4 {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.ftr-soc-link-z8n4:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(244, 134, 196, 0.3);
}

/* Columns 2 & 3: Links */
.ftr-heading-r5k2 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.ftr-list-m6b8 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ftr-list-m6b8 li a {
  text-decoration: none;
  color: #b0b0b0;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.ftr-list-m6b8 li a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

/* Column 4: CTA */
.ftr-col-cta-t9p4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ftr-cta-text-v2j5 {
  font-size: 0.9rem;
  color: #b0b0b0;
  margin-bottom: 25px;
  line-height: 1.5;
}

.ftr-btn-main-x7n2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(244, 134, 196, 0.2);
}

.ftr-btn-main-x7n2:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 134, 196, 0.4);
}

/* --- BOTTOM BAR --- */
.ftr-bottom-bar-h4n9 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.ftr-copy-c2b5 {
  color: #666;
  font-size: 0.8rem;
}

.ftr-bottom-links-k8v1 {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ftr-bottom-links-k8v1 a {
  color: #666;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s;
}

.ftr-bottom-links-k8v1 a:hover {
  color: var(--primary-color);
}

.ftr-sep-d3m6 {
  color: #444;
  font-size: 0.8rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .ftr-main-row-j8n4 {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .ftr-main-row-j8n4 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ftr-bottom-bar-h4n9 {
    flex-direction: column;
    text-align: center;
  }
}



/* --- FIXED SIGNUP TAB --- */
.signup-tab {
  position: fixed;
  bottom: 0;
  right: 20px;
  width: 300px;
  z-index: 999;
}
.tab-header {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tab-content {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  display: none;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}
.tab-content input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.tab-content button {
  width: 100%;
  padding: 10px;
  background: var(--bg-dark);
  color: #fff;
  border: none;
  cursor: pointer;
}

/* --- MODALS --- */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
  text-align: center;
}
.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  cursor: pointer;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}
.modal-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}
.modal-btn:hover {
  background: var(--primary-dark);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .header-container {
    /*flex-direction: column;*/
    gap: 15px;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .roles-container,
  .reviews-container,
  .design-ways-container {
    flex-direction: column;
  }
  /* .story-section { flex-direction: column; }
    .story-image, .story-content { width: 100%; }
    .packages-header, .reviews-header { width: 100%; text-align: center; }
    .pricing-card { width: 100%; } */
}



/* STORY SECTION STYLES */
.story-section {
    display: flex;
    width: 100%;
    min-height: 100vh; /* Takes up full viewport height */
}

/* LEFT HALF - IMAGE */
.story-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area without distortion */
    display: block;
}

/* RIGHT HALF - CONTENT */
.story-content {
    flex: 1;
    background-color: #3b3b3b; /* Dark charcoal grey similar to image */
    color: #fff;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.2;
    color: #fff;
    opacity: 0.95;
}

.story-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: #dcdcdc;
}

.story-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #e0e0e0;
    font-weight: 300;
}

.story-text:last-of-type {
    margin-bottom: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .story-section {
        flex-direction: column; /* Stack vertically on tablet/mobile */
        min-height: auto;
    }

    .story-image {
        height: 500px; /* Fixed height for image on mobile */
        width: 100%;
    }

    .story-content {
        width: 100%;
        padding: 60px 30px;
    }

    .story-title {
        font-size: 2.2rem;
    }
}


/* DESIGN WAYS SECTION STYLES */
.design-ways-section {
    background-color: #ffffff; /* White background */
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.design-ways-container {
    max-width: 1200px;
    width: 90%;
    display: flex;
    flex-direction: row;
    align-items: center; 
    gap: 80px; /* Generous gap between text and image */
}

/* CONTENT SIDE */
.design-ways-content {
    flex: 1;
    text-align: left;
    padding-left: 20px; /* Slight inset for visual balance */
}

.design-ways-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #111;
    margin-bottom: 30px;
    line-height: 1.2;
}

.design-ways-list {
    list-style: none;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    padding: 0;
    margin-bottom: 40px; /* Space before button */
}

.design-ways-list li {
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 15px; 
}

/* Custom bullet dot */
.design-ways-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.design-ways-list strong {
    font-weight: 700;
    font-style: italic; 
    color: #000;
}

/* BUTTON STYLE */
.btn-black-small {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 1px solid #000;
}

.btn-black-small:hover {
    background-color: #fff;
    color: #000;
}

/* IMAGE SIDE */
.design-ways-image {
    flex: 1;
    display: flex;
    justify-content: flex-start; /* Image aligns left within its column */
}

.design-ways-image img {
    width: 100%;
    max-width: 600px; /* Slightly larger image allowance */
    height: auto;
    display: block;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .design-ways-container {
        flex-direction: column-reverse; /* Stack image on top of text for mobile */
        gap: 40px;
        text-align: left;
    }

    .design-ways-image {
        width: 100%;
        justify-content: center;
    }
    
    .design-ways-image img {
        max-width: 100%; 
    }

    .design-ways-content {
        width: 100%;
        padding: 0 20px;
    }

    .design-ways-title {
        font-size: 2.2rem;
    }
    
    .design-ways-title br {
        display: none; /* Let text wrap naturally on mobile */
    }
}

/* --- CUSTOMIZATION SERVICES SECTION (Modern Premium UI) --- */

.cus-sec-k8m4 {
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.cus-sec-k8m4::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244, 134, 196, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cus-wrap-h3n7 {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 100px;
  position: relative;
  z-index: 1;
}

/* --- LEFT CONTENT SIDE --- */

.cus-content-p9j2 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Badge */
.cus-badge-w5d8 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 134, 196, 0.1);
  padding: 8px 20px;
  border-radius: 30px;
  width: fit-content;
  border: 1px solid rgba(244, 134, 196, 0.2);
}

.cus-icon-t2k6 {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.cus-label-r4m1 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-color);
  font-weight: 600;
}

/* Heading */
.cus-heading-b7x3 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  line-height: 1.1;
  color: #1a1a1d;
  font-weight: 400;
  margin: 0;
  letter-spacing: -1px;
}

/* Intro Text */
.cus-intro-c6n9 {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
  max-width: 520px;
}

/* Options Container */
.cus-options-d4k8 {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 20px;
}

/* Individual Option */
.cus-option-v2m7 {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  cursor: pointer;
}

.cus-option-v2m7:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-color);
}

.cus-opt-head-y5b3 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.cus-num-z8f1 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: 600;
  min-width: 35px;
}

.cus-opt-title-w9h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a1a1d;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.cus-opt-desc-x3p6 {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
  padding-left: 50px;
}

/* CTA Buttons Group */
.cus-cta-group-n7k2 {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.cus-btn-primary-m4x8 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1d;
  color: #ffffff;
  padding: 16px 35px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid #1a1a1d;
}

.cus-btn-primary-m4x8:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(244, 134, 196, 0.3);
}

.cus-btn-secondary-p6d9 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #1a1a1d;
  padding: 16px 35px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid #1a1a1d;
}

.cus-btn-secondary-p6d9:hover {
  background: #1a1a1d;
  color: #ffffff;
  transform: translateY(-2px);
}

/* --- RIGHT IMAGE SIDE --- */

.cus-image-side-q3h5 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cus-img-frame-t8m2 {
  position: relative;
  width: 100%;
  max-width: 550px;
}

.cus-main-img-r5n3 {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.cus-img-frame-t8m2:hover .cus-main-img-r5n3 {
  transform: scale(1.02);
}

/* Decorative Accent Box */
.cus-accent-box-w9b4 {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: var(--primary-color);
  opacity: 0.15;
  border-radius: 8px;
  z-index: 1;
  transition: all 0.5s ease;
}

.cus-img-frame-t8m2:hover .cus-accent-box-w9b4 {
  transform: translate(10px, 10px);
  opacity: 0.25;
}

/* --- RESPONSIVE DESIGN --- */

@media (max-width: 1024px) {
  .cus-wrap-h3n7 {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .cus-heading-b7x3 {
    font-size: 2.8rem;
  }

  .cus-image-side-q3h5 {
    order: -1;
  }
}

@media (max-width: 768px) {
  .cus-sec-k8m4 {
    padding: 80px 0;
  }

  .cus-heading-b7x3 {
    font-size: 2.2rem;
  }

  .cus-intro-c6n9 {
    font-size: 0.95rem;
  }

  .cus-option-v2m7 {
    padding: 20px;
  }

  .cus-opt-desc-x3p6 {
    padding-left: 0;
    margin-top: 8px;
  }

  .cus-cta-group-n7k2 {
    flex-direction: column;
  }

  .cus-btn-primary-m4x8,
  .cus-btn-secondary-p6d9 {
    width: 100%;
  }

  .cus-accent-box-w9b4 {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .cus-heading-b7x3 {
    font-size: 1.8rem;
  }

  .cus-opt-title-w9h4 {
    font-size: 1rem;
  }
}



/* how it works section */
    .how-it-works-section {
        padding: 60px 20px;
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-title {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        color: var(--brand-color);
        margin-bottom: 10px;
    }

    .section-subtitle {
        color: #555;
        margin-bottom: 50px;
        font-size: 1.1rem;
    }

    .workflow-container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 20px;
        position: relative;
    }

    /* The Step Box */
    .step-item {
        flex: 1;
        min-width: 150px;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    /* Icons Circle */
    .icon-box {
        width: 70px;
        height: 70px;
        border: 2px solid var(--brand-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--bg-color);
        margin-bottom: 20px;
        color: var(--brand-color);
        font-size: 30px;
        transition: all 0.3s ease;
    }

    .step-item:hover .icon-box {
        background-color: var(--brand-color);
        color: #fff;
    }

    .step-title {
        font-family: 'Playfair Display', serif;
        font-weight: 600;
        font-size: 1.2rem;
        color: var(--brand-color);
        margin-bottom: 8px;
    }

    .step-desc {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.4;
        max-width: 180px;
    }

    /* Connecting Line (Desktop Only) */
    @media (min-width: 768px) {
        .workflow-container::before {
            content: '';
            position: absolute;
            top: 35px; /* Halfway down the icon */
            left: 50px;
            right: 50px;
            height: 1px;
            border-top: 2px dashed #b0c4c1;
            z-index: 1;
        }
    }

    .cta-container {
        margin-top: 50px;
    }

    .btn-detail {
        background-color: var(--brand-color);
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 25px;
        font-size: 1rem;
        cursor: pointer;
        text-decoration: none;
        transition: background 0.3s;
    }

    .btn-detail:hover {
        background-color: #143832;
    }

    /* Placeholder SVG Icons styles */
    svg {
        width: 32px;
        height: 32px;
        fill: currentColor;
    }



    /* --- NEW PRICING SECTION (Randomized Classes) --- */

.prc-sec-z8j2 {
  background-color: #d8d8d8; /* Light gray background from image */
  padding: 80px 20px;
  font-family: "Montserrat", sans-serif;
}

.prc-con-w4m1 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Card Container */
.prc-crd-q3l5 {
  background: #e6e6e6; /* Gray card bottom */
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.prc-crd-q3l5:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Image Area (Top Half) */
.prc-img-v9k2 {
  background: #ffffff; /* White background for sketch */
  height: 350px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ddd;
}

.prc-pic-b4n7 {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Keeps the sketch proportion correct */
  padding: 20px;
  transition: transform 0.5s ease;
}

.prc-crd-q3l5:hover .prc-pic-b4n7 {
  transform: scale(1.03);
}

/* Content Area (Bottom Half) */
.prc-inf-d4n7 {
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  height: 280px; /* Fixed height for alignment */
  justify-content: space-between;
}

/* Features List */
.prc-lst-r2b8 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.prc-lst-r2b8 li {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 6px;
  opacity: 0.7;
}

/* Title (Serif) */
.prc-ttl-g6h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  color: #1a1a1d;
  text-transform: uppercase;
  margin: 20px 0 auto 0; /* Pushes to middle */
  letter-spacing: -0.5px;
}

/* Bottom Row: Price & Arrow */
.prc-btm-y5c1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 20px;
}

.prc-prc-x9f4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.5px;
}

.prc-arr-s2d6 {
  color: #333;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.prc-crd-q3l5:hover .prc-arr-s2d6 {
  transform: translateX(5px);
  color: #000;
}


/* --- TESTIMONIALS SECTION (Minimal Modern Design) --- */
/* --- MINIMAL WIDE TESTIMONIALS SECTION --- */

.tst-sec-x9j2 {
  background: #ffffff;
  padding: 120px 0;
  font-family: "Montserrat", sans-serif;
}

.tst-container-m4k8 {
  max-width: 1000px; /* Constrained width for the 'wide card' look */
  margin: 0 auto;
  width: 90%;
  position: relative;
}

/* Header */
.tst-header-p2b5 {
  text-align: center;
  margin-bottom: 60px;
}

.tst-label-h7n3 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-color);
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.tst-title-w8c4 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: #1a1a1d;
  font-weight: 400;
  margin: 0;
}

/* Slider Wrapper */
.tst-slider-wrapper-z5d1 {
  position: relative;
  /* Extra padding on sides for the absolute positioned arrows */
  padding: 0 20px; 
}

/* The Card */
.tst-card-b3v9 {
  background: #ffffff;
  border: 1px solid #eaeaea; /* Very subtle border */
  border-radius: 12px;
  padding: 60px 80px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03); /* Soft, luxurious shadow */
}

/* Quote Mark */
.tst-quote-mark-f6g2 {
  font-family: "Playfair Display", serif;
  font-size: 6rem;
  line-height: 0;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: 50px;
  left: 40px;
}

/* Review Text */
.tst-review-text-k9m1 {
  font-size: 1.35rem; /* Large, readable text */
  line-height: 1.6;
  color: #333;
  font-weight: 300; /* Light weight for elegance */
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  font-family: "Playfair Display", serif; /* Editorial feel */
}

/* Footer (Author Info) */
.tst-footer-l5p8 {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #f0f0f0;
  padding-top: 25px;
  margin-top: auto; /* Pushes to bottom if content is short */
}

/* Avatar Circle */
.tst-avatar-r2x4 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-light); /* Soft pink background */
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
}

/* Author Text */
.tst-author-info-j8n6 {
  display: flex;
  flex-direction: column;
}

.tst-name-q4c7 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #000;
  margin: 0 0 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tst-location-s3v2 {
  font-size: 0.8rem;
  color: #888;
  font-weight: 400;
}

/* Navigation Buttons (Floating on sides) */
.tst-nav-btn-y7k3 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: #333;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.tst-prev-u2m9 {
  left: -25px; /* Pulls it slightly outside the card */
}

.tst-next-x4p1 {
  right: -25px;
}

.tst-nav-btn-y7k3:hover {
  background: #1a1a1d;
  color: #fff;
  border-color: #1a1a1d;
}

/* Responsive */
@media (max-width: 768px) {
  .tst-card-b3v9 {
    padding: 40px 30px;
    min-height: auto;
  }
  
  .tst-review-text-k9m1 {
    font-size: 1.1rem;
  }
  
  .tst-quote-mark-f6g2 {
    font-size: 4rem;
    top: 30px;
    left: 20px;
  }
  
  /* Hide floating arrows on mobile, or move them below */
  .tst-nav-btn-y7k3 {
    display: none; 
  }
}



/* --- WORKS / PORTFOLIO SECTION (Masonry) --- */

.wrk-sec-x9m2 {
  background: #ffffff;
  padding: 100px 0;
}

.wrk-container-j4n8 {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}

/* Header */
.wrk-header-p6h3 {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.wrk-sub-t2k5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-color);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.wrk-title-w8c4 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: #1a1a1d;
  font-weight: 400;
  margin: 0 0 15px 0;
}

.wrk-desc-v5n9 {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Masonry Grid Setup */
.wrk-grid-m3b7 {
  column-count: 3;        /* Creates 3 columns */
  column-gap: 30px;       /* Space between columns */
}

/* Individual Item */
.wrk-item-z8n4 {
  break-inside: avoid;    /* Prevents item from splitting across columns */
  margin-bottom: 30px;    /* Space between items vertically */
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  transform: translateZ(0); /* Fix for some browser rendering issues */
}

.wrk-img-wrap-k2p6 {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #f0f0f0; /* Loading placeholder color */
}

.wrk-img-r5x2 {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.wrk-img-wrap-k2p6:hover .wrk-img-r5x2 {
  transform: scale(1.05);
}

/* Hover Overlay */
.wrk-overlay-h7j3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.wrk-img-wrap-k2p6:hover .wrk-overlay-h7j3 {
  opacity: 1;
}

.wrk-info-d4m9 {
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.wrk-img-wrap-k2p6:hover .wrk-info-d4m9 {
  transform: translateY(0);
}

.wrk-cat-s2b8 {
  font-size: 0.75rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.wrk-name-q9v5 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #fff;
  margin: 0;
  font-weight: 400;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .wrk-grid-m3b7 {
    column-count: 2; /* 2 Columns on tablet */
  }
}

@media (max-width: 600px) {
  .wrk-grid-m3b7 {
    column-count: 1; /* 1 Column on mobile */
  }
  
  .wrk-title-w8c4 {
    font-size: 2.2rem;
  }
}
