/* ========== HEADER CSS ========== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f8f9fa;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 2rem;
}

.logo-area {
  flex-shrink: 0;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #25D366;
  border: 2px solid #25D366;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  cursor: pointer;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  animation: none;
}

.whatsapp-icon-svg {
  width: 18px;
  height: 18px;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.enquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #010d8f;
  color: white;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.enquire-btn:hover {
  background: #000a6e;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-line {
  width: 25px;
  height: 2.5px;
  background: #010d8f;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.main-nav {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.nav-container {
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0.6rem 0;
}

.nav-links li a {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1a2a3a;
  transition: all 0.3s ease;
  border-radius: 40px;
}

.nav-links li a:hover {
  color: #010d8f;
  background: rgba(1, 13, 143, 0.08);
}

.nav-links li a.active {
  color: white;
  background: #010d8f;
}

.dropdown {
  position: relative;
}

.dropdown > a i {
  font-size: 11px;
  margin-left: 6px;
  transition: transform 0.3s;
}

.dropdown:hover > a i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 180px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  list-style: none;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  font-size: 0.85rem;
  color: #1a2a3a;
  background: transparent;
  text-align: left;
}

.dropdown-menu li a:hover {
  background: rgba(1, 13, 143, 0.08);
  color: #010d8f;
}

@media (max-width: 992px) {
  .container {
    padding: 0 1.5rem;
  }
  .nav-links li a {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0.8rem 0;
    justify-content: space-between;
  }
  .logo-image {
    height: 40px;
  }
  .nav-right {
    gap: 0.8rem;
  }
  .whatsapp-btn span {
    display: none;
  }
  .whatsapp-btn {
    padding: 0.6rem 1rem;
  }
  .enquire-btn span {
    display: none;
  }
  .enquire-btn {
    padding: 0.6rem 1rem;
  }
  .hamburger {
    display: flex;
  }
  .main-nav {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    background: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
    z-index: 999;
  }
  .main-nav.active {
    left: 0;
  }
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
  }
  .nav-links li a {
    padding: 0.8rem 1.5rem;
    width: 200px;
    text-align: center;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 20px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .dropdown.active .dropdown-menu {
    display: block;
  }
}

@media (max-width: 550px) {
  .container {
    padding: 0 1rem;
  }
  .logo-image {
    height: 35px;
  }
  .main-nav.active {
    top: 65px;
  }
  .header-inner {
    justify-content: space-between;
    width: 100%;
  }
  .logo-area {
    flex: 1;
  }
  .nav-right {
    flex: 1;
    justify-content: flex-end;
  }
  .whatsapp-btn, .enquire-btn {
    padding: 0.5rem 0.8rem;
  }
  .whatsapp-icon-svg {
    width: 16px;
    height: 16px;
  }
  .nav-links li a {
    padding: 0.6rem 1.2rem;
    width: 180px;
    font-size: 0.85rem;
  }
}

@media (max-width: 400px) {
  .header-inner {
    gap: 0.8rem;
  }
  .whatsapp-btn, .enquire-btn {
    padding: 0.45rem 0.7rem;
  }
  .logo-image {
    height: 32px;
  }
}

@media (min-width: 769px) {
  .nav-links li a {
    position: relative;
  }
  .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: #010d8f;
    transition: width 0.3s ease;
    border-radius: 10px;
  }
  .nav-links li a:hover::after {
    width: 50%;
  }
  .nav-links li a.active::after {
    display: none;
  }
}






/* Properties Page - 3 Simple Banners */
.properties-simple {
    padding: 100px 0 80px;
    background: #f8fafc;
    margin-top: 80px; /* Header ke neeche gap fix */
}

.simple-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Banner Card */
.simple-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.simple-banner-img {
    width: 100%;
    height: 100%;
}

.simple-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.simple-banner:hover .simple-banner-img img {
    transform: scale(1.08);
}

/* Overlay */
.simple-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

/* Content - Centered, Not Hidden */
.simple-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    text-align: center;
    z-index: 2;
}

.simple-banner-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.simple-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.simple-btn:hover {
    background: #010d8f;
    gap: 15px;
    border-color: #010d8f;
}

/* Responsive */
@media (max-width: 1024px) {
    .simple-container {
        gap: 25px;
    }
    
    .simple-banner-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 900px) {
    .simple-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .properties-simple {
        padding: 80px 0 60px;
        margin-top: 70px;
    }
    
    .simple-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .simple-banner {
        aspect-ratio: 16 / 9;
    }
    
    .simple-banner-content h3 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .simple-banner-content {
        padding: 20px;
    }
    
    .simple-banner-content h3 {
        font-size: 28px;
    }
    
    .simple-btn {
        padding: 6px 20px;
        font-size: 13px;
    }
}















/* ========== FOOTER CSS ========== */

.footer {
  background: #000323;
  padding: 50px 0 20px;
  margin-top: 0;
  font-family: 'Source Sans Pro', sans-serif;
}

.footer-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 35px;
}

.footer-mobile {
  display: none;
}

.footer-col h3, .mobile-col h3 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  position: relative;
}

.footer-col h3::after, .mobile-col h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: rgb(255, 255, 255);
  border-radius: 2px;
}

.about-text {
  font-size: 14px;
  line-height: 1.6;
  font-weight: bolder;
  color: #bdbfc2;
  margin-bottom: 0;
}

.footer-col ul, .mobile-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li, .mobile-col li {
  margin-bottom: 10px;
}

.footer-col a, .mobile-col a {
  color: #bdbfc2;
  font-weight: bolder;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.25s;
  display: inline-block;
}

.footer-col a:hover, .mobile-col a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: bolder;
  color: #bdbfc2;
}

.contact-detail i {
  width: 20px;
  font-size: 14px;
  color: #ffffff;
}

.contact-detail a {
  color: #bdbfc2;
  text-decoration: none;
  font-weight: bolder;
  transition: all 0.25s;
}

.contact-detail a:hover {
  color: #ffffff;
}

.footer-border {
  height: .5px;
  background: rgb(255, 255, 255);
  margin: 0 0 20px;
}

.footer-copyright {
  text-align: center;
  padding-top: 5px;
}

.footer-copyright p {
  font-size: 15px;
  color: rgb(255, 255, 255);
  letter-spacing: 1px;
}

@media (max-width: 1024px) {
  .footer-container {
    max-width: 90%;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 15px;
  }
  .footer-container {
    max-width: 100%;
    padding: 0 16px;
  }
  .footer-grid {
    display: none;
  }
  .footer-mobile {
    display: block;
  }
  .mobile-row-2 {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
  }
  .mobile-col.half {
    flex: 1;
    width: 50%;
  }
  .mobile-col {
    margin-bottom: 30px;
  }
  .mobile-col:last-child {
    margin-bottom: 0;
  }
  .mobile-col {
    text-align: center;
  }
  .mobile-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .contact-detail {
    justify-content: center;
  }
  .mobile-col ul {
    display: inline-block;
    text-align: center;
  }
  .mobile-col li {
    text-align: center;
  }
}

@media (max-width: 550px) {
  .footer-container {
    padding: 0 12px;
  }
  .mobile-row-2 {
    gap: 15px;
  }
  .about-text {
    font-size: 13px;
  }
  .mobile-col a, .contact-detail {
    font-size: 13px;
  }
}
