:root {
  /* Updated Color Scheme - Whitish and Bluish */
  --color-primary: #1e40af;
  --color-primary-light: #3b82f6;
  --color-secondary: #1d4ed8;
  --color-accent: #f59e0b;
  --color-white: #ffffff;
  --color-off-white: #fafbff;
  --color-light-blue: #eff6ff;
  --color-blue-50: #f0f9ff;
  --color-blue-100: #e0f2fe;
  --color-blue-200: #bae6fd;
  --color-blue-500: #0ea5e9;
  --color-blue-600: #0284c7;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-success: #10b981;
  --color-error: #ef4444;
  --color-warning: #f59e0b;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--color-gray-700);
  background: var(--color-off-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: var(--color-white);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav__brand {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 50px;
  width: auto;
  max-width: 180px;
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav__link {
  text-decoration: none;
  color: var(--color-gray-700);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

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

.nav__link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: var(--color-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav__link:hover::after {
  width: 100%;
}

.btn {
  padding: 0.875rem 1.75rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 0.95rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3), 0 0 20px rgba(0,0,0,0.3);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4), 0 0 25px rgba(0,0,0,0.4);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Hero Section - Luxury Residences */
.hero-luxury {
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-left {
  padding-right: 2rem;
}

.hero-content {
  max-width: 500px;
}

.hero-main-title {
  font-size: 4rem;
  font-weight: 900;
  color: #000000;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-developer {
  font-size: 1.2rem;
  color: #666666;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  color: #000000;
  font-weight: 600;
}

.location-pin {
  flex-shrink: 0;
}

.hero-features-box {
  background: #000000;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.diamond-icon {
  flex-shrink: 0;
}

.apartment-info {
  margin-bottom: 2rem;
}

.apartment-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
}

.luxury-text {
  font-size: 1.2rem;
  font-weight: 400;
  color: #666666;
}

.price-info {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.rupee-symbol {
  font-size: 1.8rem;
  font-weight: 900;
  color: #000000;
}

.price-amount {
  font-size: 1.8rem;
  font-weight: 900;
  color: #000000;
}

.enquire-btn {
  background: #FFD700;
  color: #000000;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.enquire-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.hero-right {
  position: relative;
}

.hero-building-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Hero Section with Background Image */
.hero {
  position: relative;
  background: linear-gradient(
      135deg, 
      rgba(30, 64, 175, 0) 0%, 
      rgba(59, 130, 246, 0) 100%
  ), url('images/banner_bg\ 1.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--color-white);
  padding: 180px 0 120px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  transition: background-image 1s ease-in-out;
}

.hero.background-2 {
  background: linear-gradient(
      135deg, 
      rgba(30, 64, 175, 0) 0%, 
      rgba(59, 130, 246, 0) 100%
  ), url('images/banner2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      135deg, 
      rgba(30, 64, 175, 0.7) 0%, 
      rgba(59, 130, 246, 0.6) 50%,
      rgba(14, 165, 233, 0.5) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 3px 3px 8px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5);
  line-height: 1.2;
}

.hero__subtitle {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  font-weight: 600;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7), 0 0 15px rgba(0,0,0,0.4);
}

.hero__description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7), 0 0 15px rgba(0,0,0,0.4);
}

.hero__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.1rem;
}

/* Section Styles */
.section {
  padding: 100px 0;
}

.section--light {
  background: var(--color-blue-50);
}

.section--white {
  background: var(--color-white);
}

.section__title {
  text-align: center;
  font-size: 2.75rem;
  margin-bottom: 1rem;
  color: var(--color-gray-800);
  font-weight: 700;
  position: relative;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-blue-500));
  border-radius: 2px;
}

.section__subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-gray-600);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Overview Section */
.overview-section {
  padding: 80px 0;
  background: var(--color-gray-50);
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.overview-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.overview-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.overview-img:hover {
  transform: scale(1.02);
}

.overview-text {
  padding-left: 1rem;
}

.overview-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.overview-bar {
  width: 4px;
  height: 40px;
  background: linear-gradient(135deg, #20B2AA, #48CAE4);
  margin-right: 1rem;
  border-radius: 2px;
}

.overview-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #20B2AA;
  margin: 0;
}

.overview-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #20B2AA;
  margin-bottom: 1.5rem;
}

.overview-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-gray-600);
  margin-bottom: 2.5rem;
  text-align: justify;
}

.overview-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(32, 178, 170, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gray-700);
}

.btn--download {
  background: linear-gradient(135deg, #20B2AA, #48CAE4);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
}

.btn--download:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
}

.btn--download svg {
  transition: transform 0.3s ease;
}

.btn--download:hover svg {
  transform: translateX(3px);
}

/* Brochure Modal Styles */
.brochure-modal {
  max-width: 100px;
  width: 30%;
  max-height: 30vh;
  overflow-y: auto;
  padding: 2rem;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.brochure-modal-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-blue-100);
}

.brochure-modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #20B2AA;
  margin-bottom: 0.5rem;
}

.brochure-modal-subtitle {
  font-size: 1rem;
  color: var(--color-gray-600);
  margin: 0;
}

.brochure-modal .form-group {
  margin-bottom: 1.5rem;
}

.brochure-modal .form-label {
  display: block;
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.brochure-modal .form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--color-gray-200);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--color-white);
}

.brochure-modal .form-input:focus {
  outline: none;
  border-color: #20B2AA;
  box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.1);
}

.brochure-submit {
  width: 100%;
  background: linear-gradient(135deg, #20B2AA, #48CAE4);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
}

.brochure-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
}

.brochure-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.brochure-modal .form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
}

.brochure-modal .success-message {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.brochure-modal .error-message {
  background: rgba(239, 68, 68, 0.1);
  color: var(--color-error);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Project Highlights - New Layout */
.highlights-new {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.highlights-left,
.highlights-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-box {
  background: #20B2AA;
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
  transition: transform 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-5px);
}

.highlight-number {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

.highlight-text {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.highlights-center {
  position: relative;
}

.highlights-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.highlights-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.highlights-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(32, 178, 170, 0.9);
  padding: 1rem 2rem;
  border-radius: 8px;
}

.highlights-title {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

/* Project Highlights - Old Layout (fallback) */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.highlight-item {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--color-blue-100);
}

.highlight-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.highlight-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-blue-500));
  color: var(--color-white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.highlight-title {
  font-size: 1.3rem;
  color: var(--color-gray-800);
  font-weight: 600;
  line-height: 1.4;
}

/* Price List */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.price-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
  transition: all 0.3s ease;
  border: 2px solid var(--color-blue-100);
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-blue-500));
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25);
  border-color: var(--color-primary);
}

.price-type {
  font-size: 1.4rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.price-area {
  font-size: 1.1rem;
  color: var(--color-gray-600);
  margin-bottom: 1.5rem;
}

.price-value {
  font-size: 1.8rem;
  color: var(--color-gray-800);
  font-weight: 700;
}

/* Floor Plans Section */
.floor-plans {
  background: var(--color-light-blue);
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.tab {
  padding: 1rem 2rem;
  background: var(--color-white);
  border: 2px solid var(--color-blue-200);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--color-gray-700);
}

.tab:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.tab.active {
  background: linear-gradient(135deg, var(--color-primary), var(--color-blue-500));
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.tab-content {
  display: none;
  text-align: center;
  background: var(--color-white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
  margin: 0 auto;
  max-width: 900px;
}

.tab-content.active {
  display: block;
}

.floor-plan-title {
  font-size: 1.6rem;
  color: var(--color-gray-800);
  margin-bottom: 2rem;
  font-weight: 600;
}

.floor-plan-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

/* Floor Plan Container and Blur Effect */
.floor-plan-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.floor-plan-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.floor-plan-blur {
  filter: blur(8px);
  transition: filter 0.3s ease;
}

.floor-plan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.floor-plan-container:hover .floor-plan-overlay {
  opacity: 1;
}

.btn--floor-request {
  background: linear-gradient(135deg, #20B2AA, #48CAE4);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
  transform: translateY(20px);
  opacity: 0;
}

.floor-plan-container:hover .btn--floor-request {
  transform: translateY(0);
  opacity: 1;
}

.btn--floor-request:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
}

/* Gallery Section */
/* Amenities Styles */
.amenities-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.amenities-left {
  position: relative;
}

.amenities-building {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.amenities-right {
  padding-left: 2rem;
}

.amenities-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #20B2AA;
  margin-bottom: 1rem;
}

.amenities-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-gray-600);
  margin-bottom: 2.5rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border: 2px solid rgba(32, 178, 170, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.amenity-item:hover {
  border-color: #20B2AA;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(32, 178, 170, 0.15);
}

.amenity-icon {
  width: 60px;
  height: 60px;
  background: rgba(32, 178, 170, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.amenity-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gray-700);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
  background: var(--color-white);
}

.gallery-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
}

.gallery-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(30, 64, 175, 0.95));
  color: var(--color-white);
  padding: 3rem 2rem 2rem;
}

.gallery-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gallery-description {
  opacity: 0.9;
  font-size: 1rem;
}

/* Location Section */
.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.location-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
}

.location-image {
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.location-info h3 {
  font-size: 2rem;
  color: var(--color-gray-800);
  margin-bottom: 2rem;
  font-weight: 600;
}

.location-advantages {
  list-style: none;
}

.location-advantages li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-blue-100);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  color: var(--color-gray-700);
}

.location-advantages li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 1rem;
  background: var(--color-blue-50);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-advantages li:last-child {
  border-bottom: none;
}

/* About Us Section */
.about-section {
  padding: 80px 0;
  background: var(--color-white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #20B2AA;
  margin-bottom: 1.5rem;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-gray-600);
  margin-bottom: 2rem;
  text-align: justify;
}

.about-rera {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(32, 178, 170, 0.05);
  border-radius: 8px;
  border-left: 4px solid #20B2AA;
}

.about-rera p {
  margin: 0.5rem 0;
  font-size: 1rem;
  color: var(--color-gray-700);
}

.about-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #20B2AA;
  border-radius: 12px;
  color: white;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info {
  flex: 1;
}

.contact-label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0 0 0.25rem 0;
}

.contact-number {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

/* Contact Form Container */
.contact-form-container {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.form-header-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #20B2AA, #48CAE4);
  border-radius: 16px 16px 0 0;
}

.form-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #20B2AA;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.form-subtitle {
  font-size: 1rem;
  color: var(--color-gray-600);
  margin-bottom: 2rem;
}

.input-with-icon {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.input-with-icon .form-input {
  padding-left: 3rem;
}

.btn--callback {
  width: 100%;
  background: linear-gradient(135deg, #20B2AA, #48CAE4);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
}

.btn--callback:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(32, 178, 170, 0.4);
}

/* Price Button Styles */
.btn--price {
  background: linear-gradient(135deg, #20B2AA, #48CAE4);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.btn--price:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(32, 178, 170, 0.4);
}

/* Disclaimer Section */
.disclaimer-section {
  background: var(--color-gray-100);
  padding: 2rem 0;
  border-top: 1px solid var(--color-gray-200);
}

.disclaimer-text {
  font-size: 0.9rem;
  color: var(--color-gray-600);
  text-align: center;
  line-height: 1.6;
  margin: 0;
  max-width: 1000px;
  margin: 0 auto;
}

/* Contact Form Section */
.contact-form {
  background: linear-gradient(135deg, var(--color-blue-50) 0%, var(--color-light-blue) 100%);
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 4rem;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
  border: 1px solid var(--color-blue-100);
}

.form-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--color-gray-800);
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-subtitle {
  text-align: center;
  color: var(--color-gray-600);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  display: block;
  margin-bottom: 0.7rem;
  font-weight: 600;
  color: var(--color-gray-700);
  font-size: 1rem;
}

.form-input {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid var(--color-blue-100);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--color-off-white);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 1.25rem;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-blue-500));
  border: none;
  border-radius: 12px;
  color: var(--color-white);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: 500;
}

.form-message--success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-message--error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.modal.hidden {
  display: none;
}

.modal-content {
  position: relative;
  max-width: 95%;
  max-height: 95%;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
      opacity: 0;
      transform: scale(0.8);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}

.modal-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: var(--color-white);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-gray-700);
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.modal-close:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: rotate(90deg);
}

.modal-caption {
  background: var(--color-white);
  padding: 1.5rem;
  text-align: center;
  border-radius: 0 0 12px 12px;
  color: var(--color-gray-700);
  font-weight: 500;
}

/* Footer */
.footer {
  background: var(--color-gray-800);
  color: var(--color-white);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer p {
  opacity: 0.8;
  margin-bottom: 1rem;
}

.footer a {
  color: var(--color-blue-200);
  text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .location-content {
      grid-template-columns: 1fr;
      gap: 3rem;
  }

  .overview-content {
      grid-template-columns: 1fr;
      gap: 3rem;
  }

  .overview-text {
      padding-left: 0;
  }

  .highlights-new {
      grid-template-columns: 1fr;
      gap: 2rem;
  }

  .amenities-content {
      grid-template-columns: 1fr;
      gap: 3rem;
  }

  .amenities-right {
      padding-left: 0;
  }

  .about-content {
      grid-template-columns: 1fr;
      gap: 3rem;
  }

  .hero__title {
      font-size: 2.8rem;
  }

  .hero-container {
      grid-template-columns: 1fr;
      gap: 3rem;
  }

  .hero-left {
      padding-right: 0;
  }

  .hero-main-title {
      font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .nav__menu {
      display: none;
  }

  .hero {
      padding: 140px 0 80px;
      background-attachment: scroll;
  }

  .hero__title {
      font-size: 2.2rem;
  }

  .hero-main-title {
      font-size: 2.5rem;
  }

  .hero-developer {
      font-size: 1.1rem;
  }

  .hero-features-box {
      padding: 1.5rem;
  }

  .feature-row {
      font-size: 0.9rem;
  }

  .apartment-text {
      font-size: 1.5rem;
  }

  .rupee-symbol,
  .price-amount {
      font-size: 1.5rem;
  }

  .enquire-btn {
      padding: 0.875rem 2rem;
      font-size: 1rem;
  }

  .hero__subtitle {
      font-size: 1.3rem;
  }

  .hero__actions {
      flex-direction: column;
      align-items: center;
  }

  .section {
      padding: 60px 0;
  }

  .section__title {
      font-size: 2.2rem;
  }

  .overview-title {
      font-size: 2rem;
  }

  .overview-subtitle {
      font-size: 1.3rem;
  }

  .tabs {
      flex-direction: column;
      align-items: center;
  }

  .tab {
      width: 100%;
      max-width: 300px;
      text-align: center;
  }

  .gallery-grid {
      grid-template-columns: 1fr;
  }

  .price-grid {
      grid-template-columns: 1fr;
  }

  .highlights {
      grid-template-columns: 1fr;
  }

  .form-container {
      padding: 2.5rem 2rem;
      margin: 0 1rem;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 15px;
  }

  .hero__title {
      font-size: 1.8rem;
  }

  .hero-main-title {
      font-size: 2rem;
  }

  .hero-developer {
      font-size: 1rem;
  }

  .hero-features-box {
      padding: 1rem;
  }

  .feature-row {
      font-size: 0.8rem;
      margin-bottom: 0.75rem;
  }

  .apartment-text {
      font-size: 1.3rem;
  }

  .luxury-text {
      font-size: 1rem;
  }

  .rupee-symbol,
  .price-amount {
      font-size: 1.3rem;
  }

  .enquire-btn {
      padding: 0.75rem 1.5rem;
      font-size: 0.9rem;
  }

  .hero-building-image {
      height: 300px;
  }

  .hero__subtitle {
      font-size: 1.1rem;
  }

  .section__title {
      font-size: 1.8rem;
  }

  .overview-title {
      font-size: 1.8rem;
  }

  .overview-subtitle {
      font-size: 1.2rem;
  }

  .overview-description {
      font-size: 1rem;
  }

  .overview-features {
      gap: 1rem;
  }

  .feature-item {
      gap: 0.75rem;
  }

  .feature-icon {
      width: 40px;
      height: 40px;
  }

  .feature-text {
      font-size: 1rem;
  }

  .brochure-modal {
      width: 95%;
      padding: 1.5rem;
  }

  .brochure-modal-title {
      font-size: 1.5rem;
  }

  .brochure-modal .form-input {
      padding: 0.75rem;
  }

  .brochure-submit {
      padding: 0.875rem 1.5rem;
      font-size: 1rem;
  }

  .highlights-title {
      font-size: 1.5rem;
  }

  .amenities-title {
      font-size: 2rem;
  }

  .amenities-subtitle {
      font-size: 1.1rem;
  }

  .amenities-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
  }

  .about-title {
      font-size: 2rem;
  }

  .contact-form-container {
      padding: 1.5rem;
  }
}

/* Tawk.to Chatbot Customization */
#tawk-widget {
  z-index: 9999 !important;
}

/* Custom Chat Widget Button */
.tawk-widget-button {
  background: linear-gradient(135deg, #FFD700, #FFA500) !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4) !important;
  transition: all 0.3s ease !important;
}

.tawk-widget-button:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6) !important;
}

/* Chat Widget Header */
.tawk-widget-header {
  background: linear-gradient(135deg, #FFD700, #FFA500) !important;
}

/* Chat Widget Close Button */
.tawk-widget-close-button {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #000 !important;
}

/* Chat Widget Input */
.tawk-widget-input {
  border: 2px solid #FFD700 !important;
  border-radius: 8px !important;
}

.tawk-widget-input:focus {
  border-color: #FFA500 !important;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1) !important;
}

/* Chat Widget Send Button */
.tawk-widget-send-button {
  background: linear-gradient(135deg, #FFD700, #FFA500) !important;
  border-radius: 8px !important;
}

/* Custom Chat Toggle Button */
.chat-toggle-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  border: none;
  border-radius: 50px;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  font-weight: 600;
  font-size: 0.9rem;
}

.chat-toggle-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

.chat-toggle-btn svg {
  width: 24px;
  height: 24px;
  stroke: #000;
  stroke-width: 2;
}

.chat-badge {
  white-space: nowrap;
  font-weight: 600;
}

/* Responsive Chat Button */
@media (max-width: 768px) {
  .chat-toggle-btn {
    bottom: 15px;
    right: 15px;
    padding: 12px 16px;
    font-size: 0.8rem;
  }
  
  .chat-toggle-btn svg {
    width: 20px;
    height: 20px;
  }
  
  .chat-badge {
    display: none;
  }
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-blue-200);
  border-radius: 50%;
  border-top-color: var(--color-white);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Gallery Section Styles */
.gallery-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #3182ce, #2b77cb);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.gallery-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gallery-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.gallery-slide {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-slide.active {
  display: block;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-slide img:hover {
  transform: scale(1.02);
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 40px 30px 30px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-slide:hover .slide-caption {
  transform: translateY(0);
}

.slide-caption h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.slide-caption p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

/* Navigation Buttons */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.gallery-nav.prev {
  left: 20px;
}

.gallery-nav.next {
  right: 20px;
}

.gallery-nav svg {
  color: #2d3748;
}

/* Slider Dots */
.gallery-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.05);
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(45, 55, 72, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: #3182ce;
  transform: scale(1.2);
}

/* Image Modal/Popup */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.modal.hidden {
  opacity: 0;
  visibility: hidden;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: -40px;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

#modalImage {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-caption {
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 1.1rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  margin-top: 15px;
  max-width: 80%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .gallery-section {
      padding: 60px 0;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .gallery-container {
      height: 350px;
  }
  
  .gallery-nav {
      width: 40px;
      height: 40px;
  }
  
  .gallery-nav.prev {
      left: 10px;
  }
  
  .gallery-nav.next {
      right: 10px;
  }
  
  .slide-caption {
      padding: 20px 20px 20px;
  }
  
  .slide-caption h4 {
      font-size: 1.3rem;
  }
  
  .slide-caption p {
      font-size: 0.9rem;
  }
  
  .modal-close {
      top: -30px;
      right: -30px;
      font-size: 24px;
      width: 35px;
      height: 35px;
  }
}

@media (max-width: 480px) {
  .gallery-container {
      height: 280px;
  }
  
  .section-title {
      font-size: 1.8rem;
  }
  
  .section-subtitle {
      font-size: 1rem;
  }
}


/* Privacy Policy Footer Link Styles */
.privacy-footer-link a:hover,
.site-footer .footer-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.privacy-footer-link a[href*="privacyPolicy"]:hover {
    background: #1e40af;
    color: white;
}

.privacy-footer-link a[href*="tel"]:hover {
    background: #10b981;
    color: white;
}

.site-footer .footer-links a[href*="privacyPolicy"]:hover {
    background: rgba(255, 255, 255, 0.3);
}

.site-footer .footer-links a[href*="tel"]:hover {
    background: #059669;
}

.compact-privacy-footer a:hover {
    text-decoration: underline !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-footer .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .site-footer .footer-links a {
        width: 200px;
        justify-content: center;
    }

    .privacy-footer-link p {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .compact-privacy-footer p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}