
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.page-02-listing-header-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 16px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .page-02-listing-header-section {
        padding: 80px 32px;
    }
}
@media (max-width: 425px) {
    .page-02-listing-header-section {
        padding: 0px 32px;
    }
}

.page-02-main-header-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* 1. Large High Contrast Serif Heading Title */
.page-02-editorial-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #000000;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 0 0 60px 0;
    text-transform: uppercase;
    text-align: left;
    font-size: clamp(1.8rem, 4.8vw, 4.2rem); /* स्मूथ फ्लूइड रिस्पॉन्सिव स्केलिंग */
}

/* 2. Breadcrumb Navigation Bar Typography */
.page-02-breadcrumb-bar {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-02-crumb-active {
    color: #F7A707; /* आपका सिग्नेचर ब्रांड गोल्ड */
    cursor: pointer;
}

.page-02-crumb-separator {
    color: #F7A707;
    font-weight: 400;
}

.page-02-crumb-current {
    color: #F7A707;
}

/* 3. Solid Horizon Divider Rule */
.page-02-header-divider {
    width: 100%;
    height: 1.5px;
    background-color: #000000;
    margin-bottom: 60px;
}
/* --- Core Styling --- */
.gallery-section {
  width: 100%;
  padding: 30px 0;
  background-color: #ffffff;
}

.gallery-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  
  /* Modern CSS Grid for unequal structures */
  display: grid;
  grid-template-columns: 1.63fr 1fr; /* Left side broader, Right side narrower */
  gap: 24px 30px; /* Exact gap balance as screenshot */
}

/* Base style for image crop and handling */
.img-box {
  width: 100%;
  overflow: hidden;
  display: block;
}

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

/* --- HAR IMAGE KA ALAG SIZE AUR POSITION (DESKTOP & LAPTOP) --- */

/* 1. Exterior Image Size */
.ext-img {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  height: 385px; /* Fixed height for top-left */
}

/* 2. Kitchen Image Size */
.kitchen-img {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  height: 250px; /* Shorter height to match layout */
}

/* 3. Living Room Image Size */
.living-img {
  grid-column: 1 / 2;
  grid-row: 2 / 4; /* Stretches downwards */
  height: 485px; /* Taller height exactly like the design */
}

/* 4. Garden Image Size */
.garden-img {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  height: 240px; 
  margin-top: -110px; /* Pulls up perfectly beneath kitchen image */
}

/* 5. Black Counter Box Button */
.counter-box-wrapper {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
  align-self: end; /* Push to the absolute bottom right */
}

.counter-btn {
  width: 100%;
  height: 85px;
  background-color: #000000;
  border: 4px solid #ffffff;
  outline: 1px solid #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-family: Arial, sans-serif;
  cursor: pointer;
}

.counter-btn .num {
  font-size: 26px;
  font-weight: 600;
}

.counter-btn .txt {
  font-size: 13px;
  letter-spacing: 0.5px;
}


/* --- RESPONSIVE SPECS FOR SMALLER LAPTOPS & TABLETS --- */
@media (max-width: 1024px) {
  .ext-img { height: 320px; }
  .kitchen-img { height: 210px; }
  .living-img { height: 400px; }
  .garden-img { height: 200px; margin-top: -85px; }
}

@media (max-width: 768px) {
  .gallery-wrapper {
    grid-template-columns: 1fr 1fr; /* Balance out columns for tablets */
    gap: 15px;
  }
  
  .ext-img, .living-img {
    grid-column: 1 / 3; /* Full width row on tablet */
    height: 340px;
  }
  
  .kitchen-img, .garden-img {
    grid-column: auto; 
    grid-row: auto;
    height: 220px;
    margin-top: 0; /* Reset desktop pull */
  }
  
  .counter-box-wrapper {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}

/* --- RESPONSIVE SPECS FOR MOBILE PHONES --- */
@media (max-width: 480px) {
  .gallery-wrapper {
    grid-template-columns: 1fr; /* Clean single column stack */
    gap: 12px;
  }
  
  .ext-img, .kitchen-img, .living-img, .garden-img {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 230px; /* Normalized uniform mobile viewing height */
    margin-top: 0;
  }
  
  .counter-box-wrapper {
    grid-column: 1 / -1;
  }
  
  .counter-btn {
    height: 70px;
  }
}




/* --- Estilos Generales de la Sección --- */
.property-details-section {
  width: 100%;
  padding: 40px 20px;
  background-color: #ffffff;
  font-family: 'Playfair Display', Georgia, serif;
  color: #000000;
}

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

/* --- Encabezado --- */
.property-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 3.6rem);
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.2;
}

.serial-number {
  font-size: 2.1rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: bold;
  color: #F7A707; /* Color ocre del diseño */
  margin-bottom: 18px;
}

.serial-code {
  font-weight: normal;
}

.property-location {
  font-size: 2.1rem;
  font-family: 'Playfair Display', Georgia, serif;
  margin-bottom: 25px;
}


/* --- Global Container Configuration --- */
.asymmetric-gallery-section {
  width: 100%;
  padding: 30px 0;
  background-color: #ffffff;
}

.gallery-layout-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  /* Left side is wider (1.65), Right side is narrower (1) */
  grid-template-columns: 1.65fr 1fr;
  gap: 25px 30px; /* Precise layout margin spaces matching the snap */
}

/* Base Photo Box Engine */
.gallery-photo-card {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-raw-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Stretches and crops perfectly inside designated dimensions */
  display: block;
}

/* --- HAR EK ELEMENT KA ALAG SPECIFIC SIZE AUR POSITIONING --- */

/* 1. Exterior Image - Exact Top Left Dimensions */
.photo-exterior {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  height: 380px; /* Standardizing top height ratio */
}

/* 2. Kitchen Image - Exact Top Right Dimensions */
.photo-kitchen {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  height: 240px; /* Slightly shorter frame as seen on screenshot right side */
}

/* 3. Living Room Image - Bottom Left Extended Block */
.photo-living {
  grid-column: 1 / 2;
  grid-row: 2 / 4; /* Spans down further to allow side stacking */
  height: 480px; /* Taller look on bottom left layer */
}

/* 4. Garden Image - Center Right Fitting */
.photo-garden {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  height: 470px;
  margin-top: -115px; /* Creates the exact upward overlapping fit beneath kitchen */
}

/* 5. Counter Block Structure - Anchored Right Base */
.photo-counter {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
  align-self: end; /* Ensures it sits tightly at the extreme baseline */
}

/* Inner Counter Widget Element Styling */
.counter-display-box {
  width: 100%;
  height: 85px;
  background-color: #063430;
  border: 4px solid #ffffff;
  outline: 1px solid #063430;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #FFC107;
  font-family: Arial, sans-serif;
  cursor: pointer;
  box-sizing: border-box;
}

.counter-digit {
  font-size: 26px;
  font-weight: bold;
  color: #FFC107;
}

.counter-heading {
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #FFC107;
}

/* Existing Counter Box Styling */
.counter-display-box {
  width: 100%;
  height: 85px;
  background-color: #063430;
  border: 4px solid #ffffff;
  outline: 1px solid #063430;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-family: Arial, sans-serif;
  cursor: pointer;
  box-sizing: border-box;
}
.counter-digit {
  font-size: 26px;
  font-weight: bold;
}
.counter-heading {
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* --- POPUP OVERLAY STYLING --- */
.gallery-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(5px);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  user-select: none;
}

.gallery-popup-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Top Right Close Button */
.gallery-close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s ease, transform 0.2s ease;
}

.gallery-close-btn:hover {
  color: #c8a355;
  transform: scale(1.1);
}

/* Image Counter Text (Top Center) */
.gallery-image-counter {
  position: absolute;
  top: 25px;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
}

/* Modal Content Window */
.gallery-modal-content {
  position: relative;
  width: 90%;
  max-width: 1400px;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Active Big Image Box */
.gallery-active-image-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.count-mt-num{
  color: #F7A707;
}

.gallery-big-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-radius: 4px;
  transition: transform 0.25s ease;
}

/* Side Navigation Arrows */
.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 24px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 5;
}

.gallery-nav-btn:hover {
  background: rgba(200, 163, 85, 0.8); /* Muted Gold Hover */
  transform: translateY(-50%) scale(1.1);
}

.gallery-prev-btn { left: -20px; }
.gallery-next-btn { right: -20px; }

/* Bottom Center Controls */
.gallery-bottom-controls {
  position: absolute;
  bottom: 30px;
  display: flex;
  gap: 20px;
}

.gallery-bottom-btn {
  background: #000000;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 8px 22px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}

.gallery-bottom-btn:hover {
  background: #ffffff;
  color: #000000;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .gallery-prev-btn, .gallery-next-btn {
    display: none; /* Mobile par swipe & bottom buttons use honge */
  }
  .gallery-modal-content {
    height: 60vh;
  }
  .gallery-close-btn {
    top: 15px;
    right: 15px;
    font-size: 35px;
  }
}
/* --- RESPONSIVE SPECS FOR SMALL LAPTOPS & TABLETS --- */
@media (max-width: 1024px) {
  .photo-exterior { height: 320px; }
  .photo-kitchen { height: 210px; }
  .photo-living { height: 410px; }
  .photo-garden { height: 210px; margin-top: -85px; }
}

@media (max-width: 768px) {
  .gallery-layout-container {
    grid-template-columns: 1fr 1fr; /* Switch to uniform columns on smaller viewports */
    gap: 16px;
  }
.page-02-banner-main-container {
    margin-left: 0;

}
  
  .photo-exterior, .photo-living {
    grid-column: 1 / 3; /* Grid spans full horizontal row dynamically */
    height: 320px;
  }
  
  .photo-kitchen, .photo-garden {
    grid-column: auto;
    grid-row: auto;
    height: 210px;
    margin-top: 0; /* Resetting the desktop overlay rule */
  }
  
  .photo-counter {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}

/* --- MOBILE DEVICES --- */
@media (max-width: 480px) {
  .gallery-layout-container {
    grid-template-columns: 1fr; /* 1 Column straight stack */
    gap: 30px;
  }
  
  .photo-exterior, .photo-kitchen, .photo-living, .photo-garden, .photo-counter {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 220px; /* Perfectly optimized screen size height values */
    margin-top: 0;
  }
  
  .counter-display-box {
    height: 70px;
            margin-top: 60px;
  }
}
/* --- Caja Desarrollador (Developed By) --- */
.developer-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid #000000;
  padding: 35px 25px;
  margin-bottom: 35px;
  gap: 15px;
}

.dev-label {
  font-weight: bold;
  font-size: 2.1rem;
  font-family: 'Playfair Display', Georgia, serif;
}

.dev-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 1px solid #ccc;
  padding-left: 15px;
}

.dev-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.dev-name {
  font-size: 1.7rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #F7A707;
  line-height: 1.2;
  text-align: center;
}

/* --- Grid de Especificaciones Técnicas --- */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(1fr); 
  column-gap: 50px;
  row-gap: 18px;
}

.spec-item {
  font-size: 2.1rem;
  line-height: 1.5;
  font-family: 'Playfair Display', Georgia, serif;
}

.spec-item strong {
  font-weight: 700;
}

/* Destacar el precio de forma sutil si es necesario */
.price-highlight {
  font-weight: 400;
}

/* --- RESPONSIVE: Laptops y Desktops Pequeños --- */
@media (max-width: 1024px) {
  .specs-grid {
    column-gap: 30px;
    row-gap: 16px;
  }
}

/* --- RESPONSIVE: Tablets (Pasa a una sola columna limpia) --- */
@media (max-width: 768px) {
  .property-details-section {
    padding: 30px 15px;
  }

  .specs-grid {
    grid-template-columns: 1fr; /* Una sola columna vertical */
    row-gap: 14px;
  }
  
  .developer-box {
    display: flex; /* Se expande de forma controlada en tablets */
    max-width: 620px;
  }
}

/* --- RESPONSIVE: Pantallas de Móviles --- */
@media (max-width: 480px) {
  .property-title {
    font-size: 1.6rem;
  }
  
  .developer-box {
    width: 100%;
    justify-content: space-between;
    padding: 12px 15px;
  }
  
  .spec-item {
    font-size: 15px; /* Tamaño de fuente ligeramente más compacto */
  }
}

/* --- Responsive Media Queries --- */

/* For Small Tablets & Mobile Phones (Width: 480px or less) */
@media (max-width: 480px) {
  .developer-box {
    display: flex; /* Full width row layout on mobile */
    width: 100%;
    justify-content: space-between; /* Space ko barabar baant dega */
    padding: 12px 16px;
    gap: 10px;
  }
  
  .dev-label {
    font-size: 14px; /* Choti screens par clean look ke liye */
  }

  .dev-brand {
    padding-left: 12px;
    gap: 8px;
  }

  .dev-name {
    font-size: 10px;
  }
}

/* Ultra Small Devices (For extremely narrow mobile screens) */
@media (max-width: 360px) {
  .developer-box {
    flex-direction: column; /* Content ko upar-neeche stack kar dega vertical layout me */
    align-items: flex-start;
    gap: 8px;
  }

  .dev-brand {
    border-left: none; /* Vertical line ki jagah top border ya gap use hoga */
    border-top: 1px solid #e0e0e0;
    padding-left: 0;
    padding-top: 8px;
    width: 100%;
  }
}

/* Container Layout */
.info-section {
  width: 100%;
  padding: 0px 20px;
  background-color: #ffffff;
}

.info-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px; /* Space between Proximity and Amenities blocks */
}

/* Headings (Proximity & Amenities) */
.info-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: #F7A707; /* Premium muted gold/ochre color from screenshot */
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

/* Content Text Block */
.info-text {
  font-family: 'Poppins', 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(15px, 1.8vw, 22px);
  font-weight: 500;
  color: #000000;
  line-height: 1.8; /* Perfect spacing between rows */
  text-align: left;
}

/* Slashes and Symbols Styling */
.info-text .slash {
  margin: 0 8px;
  color: #000000;
  font-weight: 400;
}

.info-text .amp {
  margin: 0 4px;
}

/* --- RESPONSIVE ADJUSTMENTS --- */

/* Laptops & Tablets */
@media (max-width: 1024px) {
  .info-container {
    gap: 30px;
  }
  .info-text {
    line-height: 1.7;
  }
}

/* Mobile Devices */
@media (max-width: 600px) {
  .info-section {
    padding: 25px 15px;
  }
  
  .info-container {
    gap: 25px;
  }

  .info-text {
    font-size: 14px;
    line-height: 1.6;
    text-align: justify; /* Keeps it clean on narrow viewports */
  }

  /* Reduces excessive spacing for slashes on narrow widths */
  .info-text .slash {
    margin: 0 4px;
  }
}

/* --- Base Styling --- */
.tabs-section {
  width: 100%;
  padding: 40px 20px;
  background-color: #ffffff;
}

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

/* --- Tab Header Menu --- */
.tabs-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: clamp(30px, 8vw, 100px); /* Adjusts dynamically between laptop & mobile */
  margin-bottom: 40px;
}

.tab-btn {
  background: none;
  border: none;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 48px);
  color: #000000;
  cursor: pointer;
  position: relative;
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: color 0.3s ease;
}

/* Gold text color for the active selection */
.tab-btn.active {
  color: #F7A707; 
}

/* Small elegant dot indicator below active tab */
.tab-btn .dot-indicator {
  position: absolute;
  bottom: 0;
  width: 8px;
  height: 8px;
  background-color: #F7A707;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tab-btn.active .dot-indicator {
  opacity: 1;
  transform: scale(1);
}

/* --- Content Panels --- */
.tab-content {
  display: none; /* Hidden by default */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Class to make active block show smoothly */
.tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Aspect Ratio Maintainer for Maps & Videos */
.responsive-iframe-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
}

.responsive-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Description Typography Styling */
.description-text-box {
  padding: 30px;
  border: 1px solid #e0e0e0;
  background-color: #fafafa;
  font-family: 'Poppins', sans-serif;
}

.description-text-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 15px;
}

.description-text-box p {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
}

/* --- RESPONSIVE ADJUSTMENTS --- */

/* Tablets */
@media (max-width: 768px) {
  .tabs-nav {
    gap: 40px;
    margin-bottom: 25px;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .tabs-section {
    padding: 20px 10px;
  }
  
  .tabs-nav {
    gap: 20px;
    justify-content: space-between;
  }

  .tab-btn {
    font-size: 16px;
    padding-bottom: 8px;
  }
  
  .tab-btn .dot-indicator {
    width: 6px;
    height: 6px;
  }

  .description-text-box {
    padding: 20px 15px;
  }
}

/* --- Description Container Layout --- */
.description-container {
  display: grid;
  grid-template-columns:  1fr; /* 2 Column Split layout on Desktop */
  gap: 40px;
  padding: 40px;
  background-color: #ffffff;
  font-family: 'Poppins', sans-serif;
}

/* --- Left Side: Text Content --- */
.desc-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 2.5vw, 3rem);
  font-weight: 500;
  color: #000000;
  margin-bottom: 20px;
  position: relative;
}



.desc-paragraph {
  font-size: 22px;
  line-height: 1.8;
  color: #555555;
}

/* --- Right Side: Key Highlights --- */
.desc-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background-color: #faf7f2; /* Light elegant beige */
  border-radius: 4px;
  transition: transform 0.2s ease;
}

.highlight-item:hover {
  transform: translateX(5px);
}

.highlight-icon {
  font-size: 24px;
}

.highlight-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 2px;
}

.highlight-text p {
  font-size: 13px;
  color: #777777;
  margin: 0;
}

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Tablets (1 Column Structure) */
@media (max-width: 850px) {
  .description-container {
    grid-template-columns: 1fr; /* Stack vertically */
    gap: 30px;
    padding: 30px;
  }
  
  .desc-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Inline badges on tablet */
    gap: 15px;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .description-container {
    padding: 20px 15px;
    gap: 25px;
  }
  
  .desc-paragraph {
    font-size: 14px;
    line-height: 1.6;
  }

  .desc-highlights {
    grid-template-columns: 1fr; /* Reset to individual full rows */
    gap: 10px;
  }
  
  .highlight-item {
    padding: 12px 15px;
  }
}


/* Master Layout Base Setup */
.page-02-ad-banner-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 24px 120px 24px; /* बॉटम पैडिंग एक्स्ट्रा है ताकि ओवरलैपिंग बॉक्स नीचे वाले सेक्शन को न दबाए */
    box-sizing: border-box;
}

.page-02-banner-main-container {
    width: 100%;
    max-width: 1100px; /* प्रीमियम कॉम्पैक्ट ग्रिड अलाइनमेंट */
    margin: 0 auto;
    margin-left: 100px;
    position: relative;
}

/* --- Banner Ad Area Wireframe Box Structure --- */
.page-02-banner-space-viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.05; /* इमेज के अनुसार वर्टिकल रेक्टेंगल आस्पेक्ट रेशियो */
    background-color: #EAEAEA; /* लाइट ग्रे बैकग्राउंड */
    border: 1px solid #000000; /* थिन ब्लैक आउटर बॉर्डर */
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
        margin-left: 100px;
}

/* स्क्रीनशॉट की तरह डायगोनल क्रॉस लाइन्स बनाने का लॉजिक */
.page-02-wireframe-cross-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.page-02-wireframe-cross-line.line-diagonal-1 {
    background: linear-gradient(to top right, transparent calc(50% - 0.5px), #000000 50%, transparent calc(50% + 0.5px));
}

.page-02-wireframe-cross-line.line-diagonal-2 {
    background: linear-gradient(to bottom right, transparent calc(50% - 0.5px), #000000 50%, transparent calc(50% + 0.5px));
}

/* Placeholder Text Centered Elements */
.page-02-banner-placeholder-text {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    background-color: #EAEAEA; /* लाइन्स के ऊपर टेक्स्ट को साफ दिखाने के लिए थोड़ा पैडिंग बैकग्राउंड */
    padding: 10px 20px;
    text-align: center;
}

.page-02-ad-label {
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    color: #000000;
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.page-02-ad-dimensions {
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    color: #000000;
    font-size: clamp(14px, 2vw, 20px);
    font-weight: 500;
}

/* --- Absolute Overlapping Solid Black Action Badge --- */
.page-02-banner-action-badge {
    background-color: #000000;
    box-sizing: border-box;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 350px;
    height: 350px; 
    position: absolute;
    right: -250px;
    bottom: -250px;
    z-index: 20;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Badge Premium Typography Context */
.page-02-badge-gold-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #C4A77D; /* आपका स्पेसिफिक ब्रांड गोल्ड कलर शेड */
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.03em;
    margin: 0;
}

.page-02-badge-footer-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.page-02-badge-white-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0;
}

.page-02-badge-action-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    align-self: flex-start;
    transition: color 0.2s ease;
}

.page-02-badge-action-link:hover {
    color: #F7A707;
}

/* --- Media Queries Handle All Form Factor Devices Fluidly --- */

@media (max-width: 1024px) {
    /* लैपटॉप और टैबलेट स्क्रीन पर ओवरलैप बाहर न भागे इसलिए राइट मार्जिन एडजस्टमेंट */
    .page-02-banner-action-badge {
        right: 0;
    }
}

@media (max-width: 640px) {
    .page-02-banner-space-viewport {
        aspect-ratio: 1 / 1; /* मोबाइल पर परफेक्ट स्क्वायर कस्टमाइज़ेशन */
    }
    
    .page-02-ad-banner-section {
        padding: 40px 16px 60px 16px; /* पैडिंग रीसेट */
    }



    /* मोबाइल स्क्रीन्स पर लेआउट टूटे नहीं, इसलिए इसे नीचे स्टैक्ड रिस्पॉन्सिव कर दिया गया है */
    .page-02-banner-action-badge {
        position: relative;
        right: 0;
        bottom: -250px;
        margin: 24px auto 0 auto;
        width: 100%;
        height: auto;
        padding: 30px 24px;
        gap: 24px;
        text-align: center;
        align-items: center;
    }
    
    .page-02-badge-footer-group {
        align-items: center;
    }
    
    .page-02-badge-action-link {
        align-self: center;
    }

    .page-02-banner-main-container {
    width: 100%;
    max-width: 1100px; /* प्रीमियम कॉम्पैक्ट ग्रिड अलाइनमेंट */
    margin: 0 auto;
    position: relative;
}

.page-02-badge-gold-title {
font-size: 1.5rem;
}
.page-02-badge-white-text {
    font-size: 11px;
    
}
.asymmetric-gallery-section {
    
    padding: 0px 0;
    
}
}

/* Master Layout Setup Context */
.page-02-property-gallery-section {
    width: 100%;
    background-color: #ffffff;
    padding: 40px 16px 80px 16px;
    box-sizing: border-box;
    margin-top: 100px;
}

@media (min-width: 768px) {
    .page-02-property-gallery-section {
        padding: 150px 32px 100px 32px;
    }
    .page-02-banner-main-container {
    margin-left: 0;

}
}


.page-02-gallery-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px; /* ग्रिड और पेजिनेशन के बीच की दूरी */
}

/* --- 3-Column Symmetrical Architecture Layout Grid --- */
.page-02-gallery-layout-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 60px 30px;
    width: 100%;
}

@media (min-width: 600px) {
    .page-02-gallery-layout-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* टैबलेट पर २ कॉलम */
    }
}

@media (min-width: 960px) {
    .page-02-gallery-layout-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)); /* लैपटॉप/डेस्कटॉप स्क्रीन पर परफेक्ट ३ कॉलम रो */
    }
}


/* --- Container Base Styling --- */
.cta-action-section {
  width: 100%;
  margin-top: 200px;
  padding: 50px 20px;
  background-color: #ffffff;
}

.cta-action-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px; /* Space between the two primary blocks */
}

/* --- Common Card Architecture --- */
.cta-card-wrapper {
  flex: 1; /* Distributes width evenly between both buttons */
  text-decoration: none;
  display: block;
  padding: 8px; /* The margin spacing that creates the outer double-line track */
  box-sizing: border-box;
  transition: opacity 0.25s ease;
}

.cta-card-wrapper:hover {
  opacity: 0.9;
}

.cta-card-inner {
  width: 100%;
  padding: 35px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* Keeps text left-aligned inside boxes */
  gap: 8px;
}

/* Typography Structure */
.cta-small-title {
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: normal;
  color: #ffffff;
  opacity: 0.9;
}

.cta-main-title {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

/* --- Theme Schemes (Colors & Double-Borders) --- */

/* Left Theme (Black Structure) */
.cta-contact-theme {
  border: 1px solid #063430; /* Outer line */
}

.cta-contact-theme .cta-card-inner {
  background-color: #063430; /* Dark inner block fill */
}

/* Right Theme (Gold/Ochre Structure) */
.cta-share-theme {
  border: 1px solid #F7A707; /* Outer line matching premium gold palette */
}

.cta-share-theme .cta-card-inner {
  background-color: #F7A707; /* Gold inner block fill */
}

/* --- RESPONSIVE ADJUSTMENTS --- */

/* Tablets */
@media (max-width: 992px) {
  .cta-action-container {
    gap: 20px;
  }
  
  .cta-card-inner {
    padding: 30px 25px;
  }
}

/* Mobile Devices (Auto-stacking vertically) */
@media (max-width: 768px) {
  .cta-action-container {
    flex-direction: column; /* Switches from side-by-side to stacked layout */
    gap: 20px;
  }
  
  .cta-card-wrapper {
    width: 100%; /* Spans full horizontal boundary on mobile viewports */
  }
  
  .cta-card-inner {
    padding: 25px 20px;
  }
}


/* Master Grid Layout Context */
.page-01-enquiry-grid-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 24px;
    box-sizing: border-box;
}

.page-01-enquiry-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    /* डिफ़ॉल्ट रूप से मोबाइल पर १ कॉलम लेआउट रहेगा */
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
}

/* Screen Size Adaptations (Responsive Grid Columns split) */
@media (min-width: 640px) {
    .page-01-enquiry-container {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* टैबलेट पर २x२ का ग्रिड */
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .page-01-enquiry-container {
        grid-template-columns: repeat(4, minmax(0, 1fr)); /* डेस्कटॉप/लैपटॉप पर परफेक्ट ४ कॉलम रो */
        gap: 20px;
    }
}

/* Individual Grid Card Structure */
.page-01-enquiry-card {
    width: 100%;
    aspect-ratio: 1.15 / 1; /* स्क्रीनशॉट के रेक्टेंगल आस्पेक्ट रेशियो को मेंटेन करता है */
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-01-enquiry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.page-01-enquiry-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px; /* टेक्स्ट और लिंक बटन के बीच का स्पेस */
}

/* Typography Editorial Elements */
.page-01-enquiry-text {
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 1.55;
    margin: 0;
}

.page-01-enquiry-link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    text-decoration: none;
    align-self: flex-start;
    display: inline-block;
    position: relative;
}



/* --- Color Assignments Matching Reference Screenshot --- */

/* Off-White / Soft Gray Variant style definitions */
.page-01-bg-soft-gray {
    background-color: #F4F4F4; /* सॉफ़्ट न्यूट्रल ग्रे */
}

.text-dark {
    color: #000000;
}

/* Highlighted Signature Gold Variant style definitions */
.page-01-bg-brand-gold {
    background-color: #F7A707; /* आपका स्पेसिफिक प्रीमियम गोल्ड शेड */
}

.text-light {
    color: #ffffff;
}

.font-medium {
    font-weight: 500;
}

/* --- Dynamic Hover State Rules --- */

/* 1. जब ग्रे कार्ड पर होवर हो, तो उसका बैकग्राउंड गोल्ड करें */
.page-01-enquiry-card.page-01-bg-soft-gray:hover {
    background-color: #F7A707; /* आपका ब्रांड गोल्ड कलर */
}

/* 2. होवर होने पर ग्रे कार्ड के अंदर के टेक्स्ट को व्हाइट करें */
.page-01-enquiry-card.page-01-bg-soft-gray:hover .page-01-enquiry-text.text-dark {
    color: #ffffff !important;
}

/* 3. होवर होने पर ग्रे कार्ड के अंदर के 'Click Here' लिंक को व्हाइट करें */
.page-01-enquiry-card.page-01-bg-soft-gray:hover .page-01-enquiry-link.text-dark {
    color: #ffffff !important;
}


/* --- Smooth Transitions Setup (यदि पहले से नहीं जोड़ा है) --- */
.page-01-enquiry-card {
    /* बैकग्राउंड चेंज को स्मूथ बनाने के लिए */
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.35s ease;
}

.page-01-enquiry-text, 
.page-01-enquiry-link {
    /* टेक्स्ट का कलर बदलने वाले इफ़ेक्ट को स्मूथ बनाने के लिए */
    transition: color 0.3s ease;
}


/* --- BANNER AD SECTION CONTAINER --- */
.agent-page-banner-ad-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 40px 100px 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.agent-page-banner-ad-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- MAIN BANNER AD PLACEHOLDER BOX --- */
.agent-page-banner-ad-box {
    width: 100%;
    aspect-ratio: 16 / 9; /* Standard banner aspect ratio */
    max-height: 820px;
    border: 1px solid #737373;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    box-sizing: border-box;
}

/* Background Cross Lines (Placeholder SVG) */
.agent-page-banner-svg-cross {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Center Text Inside Banner */
.agent-page-banner-text-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}

.agent-page-banner-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 400;
    color: #a3a3a3;
    letter-spacing: 1px;
    line-height: 1.1;
    text-transform: uppercase;
}

.agent-page-banner-dimensions {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.1rem);
    font-weight: 400;
    color: #a3a3a3;
    letter-spacing: 0.5px;
    line-height: 1.1;
}


/* --- FLOATING BLACK BADGE CARD (Bottom-Right Offset) --- */
.agent-page-banner-badge-card-link {
    text-decoration: none !important;
    position: absolute;
    bottom: -60px;
    right: -40px;
    z-index: 10;
}

.agent-page-banner-badge-card {
    width: 250px;
    height: 250px;
    background-color: #0b0b0b;
    padding: 30px 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agent-page-banner-badge-card-link:hover .agent-page-banner-badge-card {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.agent-page-badge-main-text {
    font-family: 'Times New Roman', Georgia, serif;
    font-size: 1.65rem;
    font-weight: 400;
    color: #c8a355; /* Gold Brand Tone */
    line-height: 1.25;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

.agent-page-badge-sub-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: block;
    margin-top: auto;
    margin-bottom: 2px;
}

.agent-page-badge-action-text {
    font-family: 'Times New Roman', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #ffffff;
    display: block;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 900px) {
    .agent-page-banner-badge-card-link {
        bottom: -40px;
        right: -20px;
    }
    .agent-page-banner-badge-card {
        width: 200px;
        height: 200px;
        padding: 20px;
    }
    .agent-page-badge-main-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .agent-page-banner-ad-section {
        padding: 40px 20px 80px 20px;
    }

    .agent-page-banner-ad-box {
        aspect-ratio: 4 / 3;
    }

    /* Mobile screen par offset overlap adjust */
    .agent-page-banner-badge-card-link {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: -30px;
        display: flex;
        justify-content: flex-end;
        width: 100%;
    }

    .agent-page-banner-badge-card {
        width: 170px;
        height: 170px;
        padding: 16px;
    }

    .agent-page-badge-main-text {
        font-size: 1.1rem;
    }

    .agent-page-badge-sub-text {
        font-size: 0.62rem;
    }

    .agent-page-badge-action-text {
        font-size: 0.85rem;
    }
}
/* --- MAIN BANNER AD PLACEHOLDER BOX (STRICT SQUARE) --- */
.agent-page-banner-ad-box {
    width:700px;           /* Fixed Width */
    height: 700px;          /* Fixed Height for exact Square */
    max-width: 100%;        /* Screen se bahar na jaye */
    margin: 0 auto;         /* Center Align */
    border: 1px solid #737373;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    box-sizing: border-box;
}

/* --- FLOATING BLACK BADGE CARD --- */
.agent-page-banner-badge-card-link {
    text-decoration: none !important;
    position: absolute;
    bottom: -35px;
    right: -35px;
    z-index: 10;
}

.agent-page-banner-badge-card {
    width: 180px;
    height: 180px;
    background-color: #0b0b0b;
    padding: 20px 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agent-page-banner-badge-card-link:hover .agent-page-banner-badge-card {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 600px) {
    .agent-page-banner-ad-box {
        width: 300px;       /* Mobile Par Perfect Small Square */
        height: 300px;
    }

    .agent-page-banner-badge-card-link {
        bottom: -20px;
        right: -10px;
    }

    .agent-page-banner-badge-card {
        width: 140px;
        height: 140px;
        padding: 12px;
    }

    .agent-page-badge-main-text {
        font-size: 1.1rem;
    }

    .agent-page-badge-sub-text {
        font-size: 0.6rem;
    }

    .agent-page-badge-action-text {
        font-size: 0.75rem;
    }
}

/* Individual Grid Card Structure */
.page-01-enquiry-card {
    width: 100%;
    aspect-ratio: 1 / 1; /* Pure Square Aspect Ratio (Width and Height Same) */
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 24px; /* Padding thoda adjust kiya taaki content fit rahe */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-01-enquiry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.page-01-enquiry-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px; /* Square shape ke mutabiq spacing adjust ki hai */
}

/* Typography Editorial Elements */
.page-01-enquiry-text {
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.5;
    margin: 0;
}

.page-01-enquiry-link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    text-decoration: none;
    align-self: flex-start;
    display: inline-block;
    position: relative;
}


/* Container & Section Setup */
.banner-ad-section {
    width: 100%;
    max-width: 700px; /* Layout Limit */
    margin: 40px auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.banner-ad-wrapper {
    position: relative;
    width: 100%;
}

/* 1:1 Aspect Ratio Box (700px x 700px relative) */
.banner-slider-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    background-color: #e5e5e5;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Slide Transition Setup */
.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Size Spec Badge */
.banner-size-badge {
    position: absolute;
    top: -40px;
    right: 15px;
    background-color: rgba(6, 52, 48, 0.85); /* Premium Dark Teal Accent */
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 0;
    z-index: 10;
    backdrop-filter: blur(4px);
}

/* Bottom Right Deals Card Badge */
.deals-badge-card {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 220px;
    aspect-ratio: 1 / 1;
    background-color: #063430;
    color: #ffffff;
    text-decoration: none;
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 15;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.deals-badge-card:hover {
    transform: translateY(-4px);
    background-color: #08211f; /* Smooth Dark Teal Hover */
}

/* Deals Typography */
.deals-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.deals-title {
    font-family: 'Playfair Display', Georgia, serif;
    color: #F7A707; /* Gold Tone */
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0;
    letter-spacing: 1px;
}

.deals-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #cccccc;
    margin: 6px 0 0 0;
}

.deals-link {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-top: 4px;
}

/* Responsive adjustments for Mobile Screen */
@media (max-width: 600px) {
    .deals-badge-card {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        aspect-ratio: auto;
        margin-top: 15px;
    }
    
    .banner-ad-section {
        padding: 0 10px;
    }
}