
	/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Plus Jakarta Sans;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Container responsive utilities */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Navigation Styles */
.custom-navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.custom-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand/Logo Styles */
.navbar-brand {
  margin-right: auto;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mini {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.logo-mini-inner {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #d97706, #fbbf24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mini-line {
  width: 0.125rem;
  height: 1.5rem;
  background: white;
  border-radius: 0.125rem;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 2rem;
}

.desktop-nav .nav-link {
  color: #374151 !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav .nav-link:hover {
  color: #111827 !important;
  background: rgba(180, 83, 9, 0.1);
}

.desktop-phone-btn {
  background: #b4926d;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 0.9rem;
}

.desktop-phone-btn:hover {
  background: #92400e;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.3);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
}

.hamburger-line {
  width: 1.5rem;
  height: 0.125rem;
  background: #374151;
  border-radius: 0.125rem;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger-line:not(:last-child) {
  margin-bottom: 0.25rem;
}

/* Hamburger Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(0.3rem, 0.3rem);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(0.3rem, -0.3rem);
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-nav-menu.active {
  visibility: visible;
  opacity: 1;
}

.mobile-nav-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 350px;
  height: 100%;
  background: white;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-nav-menu.active .mobile-nav-content {
  transform: translateX(0);
}

/* Mobile Nav Header */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-brand .brand-text {
  font-size: 1.25rem;
}

.mobile-nav-close {
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  color: #6b7280;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.mobile-nav-close:hover {
  background: #f3f4f6;
  color: #374151;
}

/* Mobile Nav Body */
.mobile-nav-body {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
}

.mobile-nav-links {
  margin-bottom: 2rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  color: #374151;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

.mobile-nav-link:hover {
  background: #f3f4f6;
  color: #111827;
  transform: translateX(0.25rem);
}

.mobile-nav-link i {
  width: 1.25rem;
  text-align: center;
  color: #b4926d;
}

.mobile-nav-link span {
  font-weight: 500;
}

/* Mobile Nav Actions */
.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.mobile-phone-btn,
.mobile-enquiry-btn,
.mobile-download-btn {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
}

.mobile-phone-btn {
  background: #b4926d;
  color: white;
}

.mobile-phone-btn:hover {
  background: #92400e;
  color: white;
}

.mobile-enquiry-btn {
  background: #065f46;
  color: white;
}

.mobile-enquiry-btn:hover {
  background: #047857;
  color: white;
}

.mobile-download-btn {
  background: #374151;
  color: white;
}

.mobile-download-btn:hover {
  background: #1f2937;
  color: white;
}

/* Mobile Nav Footer */
.mobile-nav-footer {
  padding: 1.5rem;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
}

.mobile-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.contact-item i {
  color: #b4926d;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* Show/Hide Mobile Elements */
@media (max-width: 991px) {
  .desktop-nav,
  .desktop-phone-btn {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }
}

@media (min-width: 992px) {
  .mobile-nav-menu {
    display: none;
  }
}

/* Responsive Mobile Navigation */
@media (max-width: 576px) {
  .mobile-nav-content {
    width: 100%;
    max-width: none;
  }

  .mobile-nav-header {
    padding: 1rem;
  }

  .mobile-nav-body {
    padding: 1rem;
  }

  .mobile-nav-footer {
    padding: 1rem;
  }

  .brand-text {
    font-size: 1.25rem;
  }

  .logo-mini {
    width: 2rem;
    height: 2rem;
  }

  .logo-mini-inner {
    width: 1.75rem;
    height: 1.75rem;
  }

  .logo-mini-line {
    height: 1.25rem;
  }
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 6rem 0 2rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background: url("./images/gallery/banner.png") center / cover no-repeat;*/
  z-index: -2;
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: -1;
}

/* RERA Card Styles */
.rera-card {
  background: 
    linear-gradient(
      rgba(45, 92, 74, 0.8), /* overlay color */
      rgba(45, 92, 74, 0.8)
    );
  backdrop-filter: blur(1px);
  color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  margin-bottom: 1.5rem;
  width: 100%;
}

.rera-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: left;
}

.rera-content {
  font-size: 0.9rem;
}

.rera-item {
  margin-bottom: 1rem;
  line-height: 1.4;
  word-break: break-word;
}

.siah-section {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid #047857;
  margin: 1.5rem 0;
}

.account-details {
  margin-top: 1.5rem;
}

.account-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  gap: 1rem;
}

.account-label {
  font-weight: 600;
  flex-shrink: 0;
}

.account-value {
  text-align: right;
  flex: 1;
  word-break: break-word;
}

/* Responsive RERA Card */
@media (max-width: 768px) {
  .rera-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .rera-title {
    font-size: 1.5rem;
  }

  .rera-content {
    font-size: 0.85rem;
  }

  .account-row {
    flex-direction: column;
    gap: 0.25rem;
  }

  .account-value {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .rera-card {
    padding: 1.25rem;
  }

  .rera-title {
    font-size: 1.3rem;
  }

  .rera-content {
    font-size: 22px;
  }
}

/* Enquire Button */
.enquire-section {
  margin-top: 1.5rem;
}

.enquire-btn {
  background: #b4926d;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 0.5rem;
  width: 100%;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.enquire-btn:hover {
  background: #000;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(180, 83, 9, 0.3);
}

.enquire-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.enquire-left {
  display: flex;
  align-items: center;
}

.enquire-icon {
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* Responsive Enquire Button */
@media (max-width: 768px) {
  .enquire-btn {
    padding: 0.875rem;
    font-size: 0.9rem;
  }

  .enquire-left span {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .enquire-btn {
    padding: 0.75rem;
    font-size: 0.8rem;
  }

  .enquire-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0.5rem;
  }

  .enquire-left span {
    font-size: 0.75rem;
  }
}

/* Brand Section */
.brand-section {
  text-align: center;
  padding: 2rem 0;
}

.logo-container {
  margin-bottom: 2rem;
}

.logo-circle {
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.logo-inner {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, #d97706, #fbbf24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-line {
  width: 0.125rem;
  height: 4rem;
  background: white;
  border-radius: 0.125rem;
}

.brand-title {
  color: #111827;
}

.main-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: #374151;
  margin-top: 1rem;
}

/* Responsive Brand Section */
@media (max-width: 768px) {
  .brand-section {
    padding: 1.5rem 0;
  }

  .logo-circle {
    width: 5rem;
    height: 5rem;
  }

  .logo-inner {
    width: 4rem;
    height: 4rem;
  }

  .logo-line {
    height: 3rem;
  }

  .main-title {
    font-size: 3rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .logo-circle {
    width: 4rem;
    height: 4rem;
  }

  .logo-inner {
    width: 3.5rem;
    height: 3.5rem;
  }

  .logo-line {
    height: 2.5rem;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1rem;
  }
}

/* Download Section */
.download-section {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  max-width: 90vw;
  width: auto;
}

.download-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid #d1d5db;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  min-width: 400px;
}

.download-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-mockup {
  flex-shrink: 0;
}

.phone-screen {
  width: 3rem;
  height: 4rem;
  background: #e5e7eb;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.phone-screen::before {
  content: "";
  width: 2.5rem;
  height: 3rem;
  background: #9ca3af;
  border-radius: 0.25rem;
  position: absolute;
}

.phone-screen i {
  color: white;
  font-size: 1.5rem;
  z-index: 1;
  position: relative;
}

.download-text {
  flex: 1;
  color: #374151;
  font-weight: 500;
  line-height: 1.3;
}

.download-text p {
  margin: 0;
  font-size: 0.9rem;
}

.download-btn {
  background: #b4926d;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 0.9rem;
}

.download-btn:hover {
  background: #92400e;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(180, 83, 9, 0.3);
}

/* Responsive Download Section */
@media (max-width: 1200px) {
  .download-card {
    min-width: 350px;
    padding: 0.875rem;
  }

  .download-text p {
    font-size: 0.85rem;
  }

  .download-btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 992px) {
  .download-section {
    bottom: 1.5rem;
    max-width: 95vw;
  }

  .download-card {
    min-width: 320px;
    padding: 0.75rem;
  }

  .download-content {
    gap: 0.75rem;
  }

  .phone-screen {
    width: 2.5rem;
    height: 3.5rem;
  }

  .phone-screen::before {
    width: 2rem;
    height: 2.75rem;
  }

  .phone-screen i {
    font-size: 1.25rem;
  }

  .download-text p {
    font-size: 0.8rem;
  }

  .download-btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .download-section {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    transform: none;
    max-width: none;
    width: auto;
  }

  .download-card {
    min-width: auto;
    width: 100%;
    padding: 0.75rem;
  }

  .download-content {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .download-text {
    flex: 1;
    text-align: left;
  }

  .download-text p {
    font-size: 0.75rem;
    line-height: 1.2;
  }

  .download-btn {
    flex-shrink: 0;
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }
}

@media (max-width: 576px) {
  .download-section {
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
  }

  .download-card {
    padding: 0.625rem;
  }

  .download-content {
    gap: 0.5rem;
  }

  .phone-screen {
    width: 2rem;
    height: 3rem;
  }

  .phone-screen::before {
    width: 1.75rem;
    height: 2.25rem;
  }

  .phone-screen i {
    font-size: 1rem;
  }

  .download-text p {
    font-size: 0.7rem;
  }

  .download-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .download-section {
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    
  }

  .download-card {
    padding: 0.5rem;
    display:none;
  }

  .download-content {
    gap: 0.5rem;
  }

  .phone-screen {
    width: 1.75rem;
    height: 2.5rem;
  }

  .phone-screen::before {
    width: 1.5rem;
    height: 2rem;
  }

  .phone-screen i {
    font-size: 0.875rem;
  }

  .download-text p {
    font-size: 0.65rem;
    line-height: 1.1;
  }

  .download-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.65rem;
  }
}

/* Ensure download section stays above other content */
.download-section {
  pointer-events: auto;
}

.download-section * {
  pointer-events: auto;
}

/* Hide download section when mobile menu is open */
body.mobile-nav-open .download-section {
  display: none;
}

/* Animation for download section */
.download-section {
  animation: slideUpFromBottom 0.6s ease-out;
}

@keyframes slideUpFromBottom {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 768px) {
  @keyframes slideUpFromBottom {
    from {
      opacity: 0;
      transform: translateY(100%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Responsive adjustments for different screen orientations */
@media (max-height: 600px) and (orientation: landscape) {
  .download-section {
    bottom: 0.5rem;
    transform: translateX(-50%) scale(0.9);
  }

  .download-card {
    padding: 0.5rem;
  }

  .download-text p {
    font-size: 0.75rem;
  }

  .download-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}

/* About Section Styles */
.about-section {
  background: #f5f3f0;
  padding: 4rem 0;
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  pointer-events: none;
}

.about-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-title {
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.6;
  color: #2d2d2d;
  margin-bottom: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  width: 100px;
  height: 2px;
  background: #2d2d2d;
  border: none;
  margin: 2.5rem auto;
}

.about-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.config-info {
  margin-bottom: 3rem;
}

.config-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 2rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: #2d2d2d;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: #b4926d;
  transform: scale(1.1);
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-label {
  font-size: 1rem;
  font-weight: 500;
  color: #2d2d2d;
  margin-bottom: 0.25rem;
}

.feature-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #b4926d;
}

/* Responsive Features Grid */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .features-grid {
    /*grid-template-columns: 1fr;*/
    gap: 1rem;
  }

  .feature-item {
    padding: 1.25rem;
  }

  .feature-icon {
    width: 3.5rem;
    height: 3.5rem;
  }

  .feature-icon i {
    font-size: 1.3rem;
  }

  .feature-label {
    font-size: 0.9rem;
  }

  .feature-value {
    font-size: 1.3rem;
  }
}

/* Section Download Styles */
.section-download {
  margin-top: 3rem;
}

.download-card-section {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #d1d5db;
  border-radius: 1rem;
  padding: 0.7rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.download-content-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.phone-mockup-section {
  flex-shrink: 0;
}

.phone-screen-section {
  width: 4rem;
  height: 5rem;
  background: #e5e7eb;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.phone-dots {
  position: absolute;
  top: 0.5rem;
  display: flex;
  gap: 0.25rem;
}

.dot {
  width: 0.25rem;
  height: 0.25rem;
  background: #9ca3af;
  border-radius: 50%;
}

.dot.active {
  background: #4ade80;
}

.phone-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #9ca3af;
  width: 90%;
  border-radius: 0.25rem;
  margin-top: 0.5rem;
}

.phone-text {
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
}

.download-text-section {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.download-icon {
  font-size: 2rem;
  color: #b4926d;
  flex-shrink: 0;
}

.download-info {
  color: #4a4a4a;
  font-weight: 500;
  line-height: 1.3;
}

.download-info p {
  margin: 0;
}

.download-btn-section {
  background: #b4926d;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.download-btn-section:hover {
  background: #92400e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(180, 83, 9, 0.3);
}

/* Responsive About Section */
@media (max-width: 768px) {
  .about-section {
    padding: 3rem 0;
  }

  .about-title {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }

  .about-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .config-title {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .download-content-section {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .download-text-section {
    justify-content: center;
  }

  .download-btn-section {
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 1.25rem;
    line-height: 1.5;
    padding: 0 1rem;
  }

  .about-subtitle {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .config-title {
    font-size: 1.1rem;
    line-height: 1.4;
    padding: 0 1rem;
  }

  .download-card-section {
    padding: 1rem;
    margin: 0 1rem;
  }

  .phone-screen-section {
    width: 3rem;
    height: 4rem;
  }

  .download-icon {
    font-size: 1.5rem;
  }

  .download-info {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .about-title {
    font-size: 1.1rem;
  }

  .about-subtitle {
    font-size: 0.9rem;
  }

  .config-title {
    font-size: 1rem;
  }

  .section-divider {
    width: 60px;
  }
}

/* Modal Styles */
.modal-content {
  border-radius: 0.75rem;
  border: none;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header {
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem;
}

.modal-title {
  font-weight: 700;
  color: #111827;
}

.modal-body {
  padding: 1.5rem;
}

.form-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.75rem;
  transition: all 0.3s ease;
  width: 100%;
}

.form-control:focus,
.form-select:focus {
  border-color: #b4926d;
  box-shadow: 0 0 0 0.2rem rgba(180, 83, 9, 0.25);
  outline: none;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-dialog {
    margin: 1rem;
    max-width: calc(100% - 2rem);
  }

  .modal-header,
  .modal-body {
    padding: 1rem;
  }

  .modal-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .modal-dialog {
    margin: 0.5rem;
    max-width: calc(100% - 1rem);
  }

  .form-control,
  .form-select {
    padding: 0.6rem;
    font-size: 0.9rem;
  }
}

/* Hero Section Responsive */
@media (max-width: 992px) {
  .hero-section {
    padding: 5rem 0 2rem;
  }

  .hero-section .row {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 4rem 0 1rem;
    min-height: auto;
  }

  .hero-section .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 3rem 0 1rem;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-up {
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stagger-animation {
  animation: fadeInUp 0.8s ease-out;
}

.stagger-animation:nth-child(1) {
  animation-delay: 0.1s;
}
.stagger-animation:nth-child(2) {
  animation-delay: 0.2s;
}
.stagger-animation:nth-child(3) {
  animation-delay: 0.3s;
}
.stagger-animation:nth-child(4) {
  animation-delay: 0.4s;
}

/* Utility Classes for Better Responsiveness */
.text-responsive {
  font-size: clamp(0.875rem, 2.5vw, 1.125rem);
}

.title-responsive {
  font-size: clamp(1.5rem, 4vw, 1.7rem);
}

.subtitle-responsive {
  font-size: clamp(1rem, 3vw, 1.25rem);
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for better accessibility */
.nav-link:focus,
.desktop-phone-btn:focus,
.enquire-btn:focus,
.download-btn:focus,
.download-btn-section:focus,
.mobile-nav-link:focus,
.mobile-phone-btn:focus,
.mobile-enquiry-btn:focus,
.mobile-download-btn:focus {
  outline: 2px solid #b4926d;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .rera-card {
    border: 2px solid #ffffff;
  }

  .feature-item {
    border: 1px solid #2d2d2d;
  }

  .download-card,
  .download-card-section {
    border: 2px solid #2d2d2d;
  }

  .mobile-nav-content {
    border: 2px solid #2d2d2d;
  }
}

/* Floor Plans Section Styles */
.floor-plans-section {
  background: linear-gradient(135deg, #c4a484 0%, #b8956f 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.floor-plans-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20c0 11.046-8.954 20-20 20v-40c11.046 0 20 8.954 20 20z'/%3E%3C/g%3E%3C/svg%3E")
    repeat;
  pointer-events: none;
}

/* Plans Card Styles */
.plans-card {
  background:#b4926d;
  backdrop-filter: blur(10px);
  color: white;
  padding: 2.5rem;
  border-radius: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}

.plans-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* BHK Options */
.bhk-options {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bhk-option {
  padding: 0.5rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: underline;
}

.bhk-option.active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.bhk-option:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Price Info */
.price-info {
  margin-bottom: 1.5rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #fbbf24;
}

/* Plans Description */
.plans-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Plans Details */
.plans-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.detail-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon i {
  font-size: 1.1rem;
  color: #fbbf24;
}

.detail-content {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.detail-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
}

/* Plans Enquiry Button */
.plans-enquiry-btn {
  background: #78644c;
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 0.5rem;
  width: 100%;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.plans-enquiry-btn:hover {
  background: #92400e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(180, 83, 9, 0.4);
}

.enquiry-btn-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.enquiry-btn-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Floor Plan Container */
.floor-plan-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.floor-plan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e5e7eb;
}

.floor-plan-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.floor-plan-phone {
  background: #b4926d;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.floor-plan-phone:hover {
  background: #92400e;
  color: white;
  transform: translateY(-1px);
}

.floor-plan-image {
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.floor-plan-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.floor-plan-image:hover img {
  transform: scale(1.02);
}

/* Floor Plan Navigation */
.floor-plan-nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.floor-plan-btn {
  background: #f3f4f6;
  color: #374151;
  border: 2px solid #e5e7eb;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.floor-plan-btn.active {
  background: #b4926d;
  color: white;
  border-color: #b4926d;
}

.floor-plan-btn:hover {
  background: #e5e7eb;
  color: #111827;
  border-color: #d1d5db;
}

.floor-plan-btn.active:hover {
  background: #92400e;
  color: white;
  border-color: #92400e;
}

/* Responsive Floor Plans Section */
@media (max-width: 992px) {
  .floor-plans-section {
    padding: 4rem 0;
  }

  .floor-plans-section .row {
    gap: 3rem;
  }

  .plans-card {
    margin-bottom: 2rem;
  }

  .plans-details {
    /*grid-template-columns: 1fr;*/
    gap: 0.75rem;
  }
}

@media (max-width: 768px) {
  .floor-plans-section {
    padding: 3rem 0;
  }

  .plans-card {
    padding: 2rem;
  }

  .plans-title {
    font-size: 2rem;
  }

  .price {
    font-size: 1.75rem;
  }

  .plans-description {
    font-size: 0.95rem;
  }

  .floor-plan-container {
    padding: 1.25rem;
  }

  .floor-plan-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .floor-plan-phone {
    width: 100%;
    justify-content: center;
    max-width: 200px;
  }

  .floor-plan-nav {
    flex-direction: column;
    align-items: center;
  }

  .floor-plan-btn {
    width: 100%;
    max-width: 200px;
  }
}

@media (max-width: 576px) {
  .plans-card {
    padding: 1.5rem;
  }

  .plans-title {
    font-size: 1.75rem;
  }

  .price {
    font-size: 1.5rem;
  }

  .bhk-options {
    justify-content: center;
  }

  .bhk-option {
    flex: 1;
    text-align: center;
  }

  .detail-item {
    padding: 0.5rem;
  }

  .detail-icon {
    width: 2rem;
    height: 2rem;
  }

  .detail-icon i {
    font-size: 1rem;
  }

  .detail-label,
  .detail-value {
    font-size: 0.8rem;
  }

  .floor-plan-container {
    padding: 1rem;
  }

  .floor-plan-title {
    font-size: 1.25rem;
  }

  .enquiry-btn-left span {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .plans-title {
    font-size: 1.5rem;
  }

  .price {
    font-size: 1.25rem;
  }

  .plans-description {
    font-size: 0.9rem;
  }

  .plans-details {
    gap: 0.5rem;
  }

  .detail-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .detail-content {
    align-items: center;
  }
}

/* Print styles */
@media print {
  .custom-navbar,
  .download-section,
  .enquire-section,
  .mobile-nav-menu {
    display: none !important;
  }

  .hero-section {
    min-height: auto;
    padding: 1rem 0;
  }

  .about-section {
    padding: 1rem 0;
  }
}

/* Prevent body scroll when mobile menu is open */
body.mobile-nav-open {
  overflow: hidden;
}

/* Ensure proper stacking context */
.hero-section {
  position: relative;
  z-index: 1;
}

.download-section {
  z-index: 1000;
}

.custom-navbar {
  z-index: 1001;
}

.mobile-nav-menu {
  z-index: 1002;
}

/* Gallery Section Styles */
.gallery-section {
  background: linear-gradient(135deg, #c4a484 0%, #b8956f 50%, #a68660 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  pointer-events: none;
}

/* Gallery Header */
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.gallery-title-container {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  padding: 1rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.gallery-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gallery-phone-container {
  background: #b4926d;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 0.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.gallery-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.gallery-phone:hover {
  color: #fbbf24;
  transform: scale(1.05);
}

/* Gallery Content */
.gallery-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  height: 500px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.gallery-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content h3 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transform: translateY(20px);
  transition: all 0.3s ease 0.1s;
}

.gallery-overlay-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0;
  transform: translateY(20px);
  transition: all 0.3s ease 0.2s;
}

.gallery-item:hover .gallery-overlay-content h3,
.gallery-item:hover .gallery-overlay-content p {
  transform: translateY(0);
}

/* Gallery Navigation */
.gallery-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-nav-btn {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(180, 83, 9, 0.3);
  color: #b4926d;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-nav-btn:hover {
  background: #b4926d;
  color: white;
  border-color: #b4926d;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(180, 83, 9, 0.3);
}

.gallery-nav-btn:active {
  transform: translateY(0);
}

/* Gallery Indicators */
.gallery-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.gallery-indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-indicator.active {
  background: #b4926d;
  transform: scale(1.3);
}

.gallery-indicator:hover {
  background: rgba(180, 83, 9, 0.7);
  transform: scale(1.2);
}

/* Responsive Gallery Section */
@media (max-width: 1200px) {
  .gallery-grid {
    height: 450px;
    gap: 1rem;
  }

  .gallery-title {
    font-size: 1.75rem;
  }

  .gallery-phone {
    font-size: 1rem;
  }
}

@media (max-width: 992px) {
  .gallery-section {
    padding: 4rem 0;
  }

  .gallery-header {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: auto;
    gap: 1rem;
  }

  .gallery-center {
    grid-column: 1 / -1;
    height: 300px;
  }

  .gallery-left,
  .gallery-right {
    height: 250px;
  }

  .gallery-nav-btn {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 3rem 0;
  }

  .gallery-content {
    padding: 0 1rem;
  }

  .gallery-header {
    padding: 0 1rem;
    margin-bottom: 2rem;
  }

  .gallery-title-container,
  .gallery-phone-container {
    padding: 0.75rem 1.5rem;
  }

  .gallery-title {
    font-size: 1.5rem;
  }

  .gallery-phone {
    font-size: 0.9rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-center,
  .gallery-left,
  .gallery-right {
    height: 250px;
  }

  .gallery-overlay {
    padding: 1.5rem;
  }

  .gallery-overlay-content h3 {
    font-size: 1.25rem;
  }

  .gallery-overlay-content p {
    font-size: 0.9rem;
  }

  .gallery-nav-btn {
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .gallery-section {
    padding: 2.5rem 0;
  }

  .gallery-header {
    margin-bottom: 1.5rem;
  }

  .gallery-title-container,
  .gallery-phone-container {
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
  }

  .gallery-title {
    font-size: 1.25rem;
  }

  .gallery-phone {
    font-size: 0.8rem;
    gap: 0.25rem;
  }

  .gallery-grid {
    gap: 0.75rem;
  }

  .gallery-center,
  .gallery-left,
  .gallery-right {
    height: 200px;
    border-radius: 1rem;
  }

  .gallery-overlay {
    padding: 1rem;
  }

  .gallery-overlay-content h3 {
    font-size: 1.1rem;
  }

  .gallery-overlay-content p {
    font-size: 0.8rem;
  }

  .gallery-navigation {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .gallery-nav-btn {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.9rem;
  }

  .gallery-indicators {
    gap: 0.5rem;
  }

  .gallery-indicator {
    width: 0.6rem;
    height: 0.6rem;
  }
}

@media (max-width: 480px) {
  .gallery-content {
    padding: 0 0.5rem;
  }

  .gallery-header {
    padding: 0 0.5rem;
  }

  .gallery-center,
  .gallery-left,
  .gallery-right {
    height: 180px;
  }

  .gallery-overlay-content h3 {
    font-size: 1rem;
  }

  .gallery-overlay-content p {
    font-size: 0.75rem;
  }
}

/* Gallery Animation Classes */
.gallery-fade-in {
  animation: galleryFadeIn 0.8s ease-out;
}

@keyframes galleryFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-slide-in-left {
  animation: gallerySlideInLeft 0.6s ease-out;
}

@keyframes gallerySlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.gallery-slide-in-right {
  animation: gallerySlideInRight 0.6s ease-out;
}

@keyframes gallerySlideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.gallery-scale-in {
  animation: galleryScaleIn 0.8s ease-out;
}

@keyframes galleryScaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Gallery Lightbox Support */
.gallery-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.gallery-lightbox-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.5rem;
}

.gallery-lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Print styles */
@media print {
  .custom-navbar,
  .download-section,
  .enquire-section,
  .mobile-nav-menu {
    display: none !important;
  }

  .hero-section {
    min-height: auto;
    padding: 1rem 0;
  }

  .about-section {
    padding: 1rem 0;
  }
}

/* Prevent body scroll when mobile menu is open */
body.mobile-nav-open {
  overflow: hidden;
}

/* Ensure proper stacking context */
.hero-section {
  position: relative;
  z-index: 1;
}

.download-section {
  z-index: 1000;
}

.custom-navbar {
  z-index: 1001;
}

.mobile-nav-menu {
  z-index: 1002;
}

/* About Developer Section Styles */
.about-developer-section {
  background:#ece6e1;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.about-developer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  pointer-events: none;
}

/* Developer Header */
.developer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.developer-title-container {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
  padding: 1rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.developer-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2d2d2d;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.developer-phone-container {
  background: #b4926d;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 0.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.developer-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.developer-phone:hover {
  color: #fbbf24;
  transform: scale(1.05);
}

/* Developer Content */
.developer-content {
  position: relative;
  z-index: 2;
}

.developer-logo-section {
  text-align: center;
  margin-bottom: 3rem;
}

.developer-logo-container {
  margin-bottom: 2rem;
}

.developer-logo-circle {
  width: 8rem;
  height: 8rem;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
}

.developer-logo-inner {
  width: 7rem;
  height: 7rem;
  background: linear-gradient(135deg, #d97706, #fbbf24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.developer-logo-line {
  width: 0.25rem;
  height: 5rem;
  background: white;
  border-radius: 0.125rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.developer-brand-title {
  color: #2d2d2d;
}

.developer-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #1a5f4f;
}

.developer-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: #4a5568;
  margin-top: 1rem;
  margin-bottom: 0;
}

/* Developer Description */
.developer-description {
  margin-top: 3rem;
}

.developer-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #1a5f4f;
  font-weight: 400;
  text-align: justify;
  margin: 0;
  max-width: none;
}

/* Responsive Developer Section */
@media (max-width: 1200px) {
  .developer-text {
    font-size: 1.2rem;
    line-height: 1.7;
  }

  .developer-main-title {
    font-size: 3.2rem;
  }

  .developer-subtitle {
    font-size: 1.4rem;
  }
}

@media (max-width: 992px) {
  .about-developer-section {
    padding: 4rem 0;
  }

  .developer-header {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .developer-logo-circle {
    width: 7rem;
    height: 7rem;
  }

  .developer-logo-inner {
    width: 6rem;
    height: 6rem;
  }

  .developer-logo-line {
    height: 4rem;
    width: 0.2rem;
  }

  .developer-main-title {
    font-size: 2.8rem;
  }

  .developer-subtitle {
    font-size: 1.3rem;
  }

  .developer-text {
    font-size: 1.15rem;
    line-height: 1.7;
  }
}

@media (max-width: 768px) {
  .about-developer-section {
    padding: 3rem 0;
  }

  .developer-content {
    padding: 0 1rem;
  }

  .developer-header {
    padding: 0 1rem;
    margin-bottom: 2.5rem;
  }

  .developer-title-container,
  .developer-phone-container {
    padding: 0.75rem 1.5rem;
  }

  .developer-title {
    font-size: 1.5rem;
  }

  .developer-phone {
    font-size: 0.9rem;
  }

  .developer-logo-circle {
    width: 6rem;
    height: 6rem;
  }

  .developer-logo-inner {
    width: 5rem;
    height: 5rem;
  }

  .developer-logo-line {
    height: 3.5rem;
  }

  .developer-main-title {
    font-size: 2.5rem;
  }

  .developer-subtitle {
    font-size: 1.2rem;
  }

  .developer-text {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: left;
  }

  .developer-description {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .about-developer-section {
    padding: 2.5rem 0;
  }

  .developer-header {
    margin-bottom: 2rem;
  }

  .developer-title-container,
  .developer-phone-container {
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
  }

  .developer-title {
    font-size: 1.25rem;
  }

  .developer-phone {
    font-size: 0.8rem;
    gap: 0.25rem;
  }

  .developer-logo-section {
    margin-bottom: 2rem;
  }

  .developer-logo-container {
    margin-bottom: 1.5rem;
  }

  .developer-logo-circle {
    width: 5rem;
    height: 5rem;
  }

  .developer-logo-inner {
    width: 4.5rem;
    height: 4.5rem;
  }

  .developer-logo-line {
    height: 3rem;
    width: 0.15rem;
  }

  .developer-main-title {
    font-size: 2rem;
  }

  .developer-subtitle {
    font-size: 1.1rem;
  }

  .developer-text {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .developer-content {
    padding: 0 0.5rem;
  }

  .developer-header {
    padding: 0 0.5rem;
  }

  .developer-logo-circle {
    width: 4.5rem;
    height: 4.5rem;
  }

  .developer-logo-inner {
    width: 4rem;
    height: 4rem;
  }

  .developer-logo-line {
    height: 2.5rem;
  }

  .developer-main-title {
    font-size: 1.8rem;
  }

  .developer-subtitle {
    font-size: 1rem;
  }

  .developer-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* Developer Animation Classes */
.developer-fade-in {
  animation: developerFadeIn 0.8s ease-out;
}

@keyframes developerFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.developer-scale-in {
  animation: developerScaleIn 0.8s ease-out;
}

@keyframes developerScaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.developer-slide-up {
  animation: developerSlideUp 0.8s ease-out;
}

@keyframes developerSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Print styles */
@media print {
  .custom-navbar,
  .download-section,
  .enquire-section,
  .mobile-nav-menu {
    display: none !important;
  }

  .hero-section {
    min-height: auto;
    padding: 1rem 0;
  }

  .about-section {
    padding: 1rem 0;
  }
}

/* Prevent body scroll when mobile menu is open */
body.mobile-nav-open {
  overflow: hidden;
}

/* Ensure proper stacking context */
.hero-section {
  position: relative;
  z-index: 1;
}

.download-section {
  z-index: 1000;
}

.custom-navbar {
  z-index: 1001;
}

.mobile-nav-menu {
  z-index: 1002;
}

/* Footer Section Styles */
.footer-section {
  background: linear-gradient(135deg, #e8e2d5 0%, #d4c7b0 100%);
  position: relative;
  overflow: hidden;
}

/* Disclaimer Section */
.disclaimer-section {
  background: #ece6e1;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.disclaimer-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #1a5f4f;
  margin: 0;
  text-align: justify;
  font-weight: 400;
}

.disclaimer-text strong {
  font-weight: 600;
  color: #0f4c3a;
}

/* Main Footer */
.main-footer {
  background: #c0ac9c;
  padding: 4rem 0 2rem;
  position: relative;
}

.main-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E")
    repeat;
  pointer-events: none;
}

/* Footer Project Sections */
.footer-project-section {
  position: relative;
  z-index: 1;
}

.project-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* QR Code and RERA Container */
.qr-rera-container {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.qr-code-container {
  flex-shrink: 0;
}

.qr-code-placeholder {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border: 2px solid #333;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.qr-pattern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  width: 60px;
  height: 60px;
}

.qr-square {
  background: #333;
  border-radius: 1px;
}

.qr-square:nth-child(1),
.qr-square:nth-child(3),
.qr-square:nth-child(7),
.qr-square:nth-child(9) {
  background: #333;
}

.qr-square:nth-child(2),
.qr-square:nth-child(4),
.qr-square:nth-child(6),
.qr-square:nth-child(8) {
  background: transparent;
}

.qr-square:nth-child(5) {
  background: #333;
  border-radius: 50%;
}

/* RERA Information */
.rera-info {
  flex: 1;
}

.rera-number {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.rera-link {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.25rem;
  word-break: break-all;
}

.agent-info {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* Collection Details */
.collection-details {
  margin-bottom: 1.5rem;
}

.collection-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.account-details {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.25rem;
}

.bank-details {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* Promoter Details */
.promoter-details {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
}

.promoter-info {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.registration-info {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/* SamIndia Branding */
.footer-brand-section {
  text-align: center;
  position: relative;
  z-index: 1;
}

.samindia-logo {
  margin-bottom: 2rem;
}

.logo-container {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #ffffff;
  border-radius: 0.5rem;
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

.brand-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.1em;
}

.brand-highlight {
  color: #ffffff;
  position: relative;
}

.brand-highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: #fbbf24;
  border-radius: 2px;
}

.brand-tagline {
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.05em;
}

/* Social Media Links */
.social-media-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Footer Styles */
@media (max-width: 1200px) {
  .project-title {
    font-size: 1.4rem;
  }

  .brand-name {
    font-size: 2.2rem;
  }

  .logo-container {
    padding: 1.25rem 1.75rem;
  }
}

@media (max-width: 992px) {
  .disclaimer-section {
    padding: 2.5rem 0;
  }

  .main-footer {
    padding: 3rem 0 2rem;
  }

  .project-title {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
  }

  .qr-rera-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .qr-code-placeholder {
    width: 70px;
    height: 70px;
  }

  .qr-pattern {
    width: 50px;
    height: 50px;
  }

  .brand-name {
    font-size: 2rem;
  }

  .logo-container {
    padding: 1rem 1.5rem;
  }

  .social-link {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 2rem 0;
  }

  .disclaimer-text {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
  }

  .main-footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-project-section {
    text-align: center;
    margin-bottom: 2rem;
  }

  .project-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .qr-code-placeholder {
    width: 100px;
    height:100px;
  }

  .qr-pattern {
    width: 40px;
    height: 40px;
  }

  .collection-title,
  .promoter-info {
    font-size: 0.8rem;
  }

  .account-details,
  .bank-details,
  .registration-info,
  .rera-number {
    font-size: 0.75rem;
  }

  .agent-info,
  .rera-link {
    font-size: 0.7rem;
  }

  .brand-name {
    font-size: 1.8rem;
  }

  .brand-tagline {
    font-size: 0.8rem;
  }

  .logo-container {
    padding: 0.875rem 1.25rem;
  }

  .social-media-links {
    gap: 0.75rem;
  }

  .social-link {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .disclaimer-section {
    padding: 1.5rem 0;
  }

  .disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0 1rem;
  }

  .main-footer {
    padding: 2rem 0 1rem;
  }

  .project-title {
    font-size: 1.1rem;
  }

  .qr-rera-container {
    gap: 0.75rem;
  }

  .collection-details {
    margin-bottom: 1rem;
  }

  .promoter-details {
    padding-top: 0.75rem;
  }

  .brand-name {
    font-size: 1.6rem;
  }

  .brand-tagline {
    font-size: 0.75rem;
  }

  .logo-container {
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
  }

  .social-media-links {
    gap: 0.5rem;
  }

  .social-link {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .disclaimer-text {
    font-size: 0.85rem;
    padding: 0 0.5rem;
  }

  .project-title {
    font-size: 1rem;
  }

  .collection-title,
  .promoter-info {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .account-details,
  .bank-details,
  .registration-info {
    font-size: 0.7rem;
  }

  .brand-name {
    font-size: 1.4rem;
  }

  .brand-tagline {
    font-size: 0.7rem;
  }
}

/* Footer Animation Classes */
.footer-fade-in {
  animation: footerFadeIn 0.8s ease-out;
}

@keyframes footerFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-slide-up {
  animation: footerSlideUp 0.8s ease-out;
}

@keyframes footerSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Print styles for footer */
@media print {
  .footer-section {
    background: #f5f5f5 !important;
    color: #333 !important;
  }

  .social-media-links {
    display: none;
  }

  .disclaimer-text,
  .project-title,
  .rera-number,
  .collection-title,
  .promoter-info,
  .brand-name {
    color: #333 !important;
  }
}

/* Accessibility improvements for footer */
@media (prefers-reduced-motion: reduce) {
  .footer-fade-in,
  .footer-slide-up {
    animation: none;
  }
}

/* High contrast mode support for footer */
@media (prefers-contrast: high) {
  .footer-section {
    border: 2px solid #000;
  }

  .social-link {
    border: 2px solid #fff;
  }

  .logo-container {
    border: 3px solid #fff;
  }
}

