/* ========== 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;
  }
}





/* ========== RESIDENTIAL BANNER - SIMPLE CLEAN ========== */

.res-banner {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 500px;
    margin-top: 80px;
    overflow: hidden;
    padding-bottom: 25px;
}

.res-banner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.res-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.res-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.res-banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    padding: 0 24px;
}

.res-banner-title {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.res-banner-line {
    width: 160px;
    height: 3px;
    background: #ffffff;
    margin: 0 auto 10px;
    border-radius: 3px;
}

.res-banner-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .res-banner-title {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .res-banner {
        height: 50vh;
        min-height: 320px;
        margin-top: 70px;
    }
    
    .res-banner-title {
        font-size: 40px;
    }
    
    .res-banner-desc {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .res-banner {
        height: 40vh;
        min-height: 280px;
        margin-top: 60px;
    }
    
    .res-banner-title {
        font-size: 32px;
    }
    
    .res-banner-desc {
        font-size: 14px;
    }
}











/* ========== PROPERTIES SECTION ONLY ========== */
.residential-properties {
    padding: 0 0 80px;
    background: #f8f9fa;
}

.res-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.res-header {
    text-align: center;
    margin-bottom: 50px;
}

.res-tag {
    display: inline-block;
    background: rgba(1, 13, 143, 0.1);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #010d8f;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.res-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 16px;
}

.title-accent {
    color: #010d8f;
}

.res-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #010d8f, #2a3eff, transparent);
    margin: 0 auto 20px;
    border-radius: 3px;
}

.res-subtitle {
    font-size: 0.95rem;
    color: #6c7a8a;
    max-width: 600px;
    margin: 0 auto;
}

/* Properties Grid */
.res-properties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.res-property-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    position: relative;
}

.res-property-card:hover {
    transform: translateY(-8px);
    border-color: rgba(1, 13, 143, 0.2);
    box-shadow: 0 20px 35px rgba(1, 13, 143, 0.08);
}

/* Hidden Property Cards */
.hidden-property {
    display: none;
}

/* Show all when show-all class is added */
.res-properties-grid.show-all .hidden-property {
    display: block;
}

/* Property Badge */
.res-property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #010d8f;
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Property Image */
.res-property-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.res-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.res-property-card:hover .res-property-image img {
    transform: scale(1.05);
}

/* Property Details */
.res-property-details {
    padding: 20px;
}

.res-property-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 8px;
}

.res-property-builder {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #010d8f;
    margin-bottom: 12px;
}

.res-property-builder i {
    font-size: 12px;
}

.res-property-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.res-info-tag, .res-info-location {
    font-size: 0.7rem;
    color: #6c7a8a;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.res-property-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
    margin-bottom: 12px;
}

.res-property-specs span {
    font-size: 0.7rem;
    color: #6c7a8a;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.res-property-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 15px;
}

.res-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: #010d8f;
}

.res-price-label {
    font-size: 0.7rem;
    color: #6c7a8a;
}

.res-property-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #010d8f;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    border: 1px solid #010d8f;
    transition: all 0.3s ease;
}

.res-property-btn:hover {
    background: #010d8f;
    color: white;
}

/* Toggle Button */
.res-toggle-wrapper {
    text-align: center;
    margin-top: 20px;
}

.res-toggle-btn {
    background: transparent;
    color: #010d8f;
    border: 2px solid #010d8f;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.res-toggle-btn:hover {
    background: #010d8f;
    color: white;
    transform: translateY(-2px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .res-properties-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .res-properties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .res-header h2 {
        font-size: 1.8rem;
    }
    
    .banner-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .residential-banner {
        min-height: 320px;
        margin-bottom: 40px;
    }
    
    .banner-content h1 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 14px;
    }
    
    .banner-tag {
        font-size: 11px;
    }
    
    .res-properties-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .res-property-image {
        height: 180px;
    }
    
    .res-property-name {
        font-size: 1rem;
    }
    
    .res-price {
        font-size: 1rem;
    }
    
    .res-header h2 {
        font-size: 1.6rem;
    }
    
    .res-tag {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .residential-banner {
        min-height: 280px;
    }
    
    .banner-content h1 {
        font-size: 24px;
    }
    
    .res-property-details {
        padding: 15px;
    }
    
    .res-property-specs {
        flex-wrap: wrap;
    }
    
    .res-toggle-btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
}


















/* ========== 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;
  }
}
