﻿@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --dark-blue: #0d1b3e;
  --dark-blue-light: #132552;
  --accent-blue: #1e3a8a;
  --bg-primary: #ffffff;
  --bg-section: #f5f8fc;
  --bg-card: #ffffff;
  --text-primary: #808080;
  --text-heading: #1A1A1A;
  --accent: #1DB2FF;
  --accent-hover: #1890d9;
  --border-color: #e0e0e0;
  --font-primary: 'Josefin Sans', sans-serif;
  --section-padding: 50px 0;
  --container-width: 1200px;
  --transition: all 0.3s ease-in-out;
  --neon-glow: 0 0 15px rgba(29, 178, 255, 0.25), 0 0 40px rgba(29, 178, 255, 0.08);
  --neon-border: 1px solid rgba(29, 178, 255, 0.4);
}

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

html {
  font-size: 15px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}

h1, h2, h3 {
  color: #1A1A1A;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
}

.section-padding {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .sub-title {
  color: var(--accent);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 2px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 8px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: #1db2ff;
  border-bottom: 1px solid var(--border-color);
}

.header.scrolled .nav ul li a {
  color: var(--text-heading);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
    height: 60px;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav ul li {
  position: relative;
}

.nav ul li a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 0;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav ul li a:hover,
.nav ul li a.active {
  color: var(--accent);
}

.nav ul li a .arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav ul li:hover > a .arrow {
  transform: rotate(180deg);
}

/* Dropdown arrow (triangle) */
.nav ul li .dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 24px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid var(--bg-primary);
  z-index: 101;
}

.nav ul li .dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--bg-primary);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav ul li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav ul li .dropdown li {
  padding: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.3s ease;
  transition-delay: calc(var(--i, 0) * 0.05s);
  display: block;
  width: 100%;
}

.nav ul li:hover .dropdown li {
  opacity: 1;
  transform: translateY(0);
}

.nav ul li .dropdown li:nth-child(1) { --i: 1; }
.nav ul li .dropdown li:nth-child(2) { --i: 2; }
.nav ul li .dropdown li:nth-child(3) { --i: 3; }
.nav ul li .dropdown li:nth-child(4) { --i: 4; }
.nav ul li .dropdown li:nth-child(5) { --i: 5; }

.nav ul li .dropdown li a {
  padding: 12px 20px;
  display: block;
  width: 100%;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0.5px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  color: #1a1a1a;
}

.nav ul li .dropdown li a:hover {
  background: #f5f5f5;
  border-left-color: var(--accent);
  padding-left: 28px;
  transition: all 0.3s ease;
  color: #2563eb;
}

/* Multi-level dropdown: sub-sub-menus open to the right */
.nav ul li .dropdown .dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 220px;
  background: var(--bg-primary);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(4px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav ul li .dropdown li:hover > .dropdown-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.nav ul li .dropdown .dropdown-submenu::before {
  display: none;
}

.nav ul li .dropdown .dropdown-submenu li {
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s ease;
  transition-delay: calc(var(--i, 0) * 0.05s);
  display: block;
  width: 100%;
}

.nav ul li .dropdown li:hover > .dropdown-submenu li {
  opacity: 1;
  transform: translateX(0);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-heading);
  transition: var(--transition);
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: var(--hero-desktop-height, 100vh);
  overflow: hidden;
}

.hero-slider .swiper-slide {
  position: relative;
  height: var(--hero-desktop-height, 100vh);
}

.hero-slider .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-slider .slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease-out;
}

.hero-slider .swiper-slide-active .slide-bg img {
  animation: heroZoom 6s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
.hero-slider .slide-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slider .slide-video-embed {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden;
}
.hero-slider .slide-video-embed iframe {
  position: absolute; top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: 177.78vh; height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0; pointer-events: none;
}
.hero-slider .swiper-slide[data-media-type="video"] .slide-bg > img {
  position: relative; z-index: 0;
}
.hero-slider .swiper-slide[data-media-type="video"] .slide-bg .slide-video-embed {
  z-index: 1;
}


.hero-slider .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-slider .slide-content {
  position: absolute;
  bottom: 15%;
  left: 8%;
  z-index: 2;
  max-width: 600px;
}

.hero-slider .slide-content .slide-label {
  font-size: 16px;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 400;
}

.hero-slider .slide-content h1,
.hero-slider .slide-content h2 {
  font-size: 55px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.hero-slider .slide-content .project-name {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
  letter-spacing: 1px;
}

.hero-slider .slide-content .slide-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 36px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-slider .slide-content .slide-btn:hover {
  background: #1a3a6b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.slider-counter {
  position: absolute;
  bottom: 10%;
  right: 8%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-heading);
  font-size: 16px;
  font-weight: 400;
}

.slider-counter .current {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
}

.slider-counter .total {
  font-size: 24px;
  opacity: 0.6;
}

.slider-counter .line {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-slider .swiper-pagination {
  position: absolute;
  bottom: 10%;
  left: 8%;
  width: auto;
  display: flex !important;
  gap: 10px;
  z-index: 2;
}

.hero-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: transparent;
  opacity: 1;
  position: relative;
  cursor: pointer;
}

.hero-slider .swiper-pagination-bullet::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--accent);
  transform: scale(0.7);
  transition: var(--transition);
}

.hero-slider .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  transform: scale(0.7);
  transition: var(--transition);
}

.hero-slider .swiper-pagination-bullet-active::before {
  transform: scale(0.4);
}

.hero-slider .swiper-pagination-bullet-active::after {
  transform: scale(1);
}

.hero-nav-prev,
.hero-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}
.hero-nav-prev:hover,
.hero-nav-next:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.05);
}
.hero-nav-prev { left: 24px; }
.hero-nav-next { right: 24px; }
.hero-nav-prev.swiper-button-disabled,
.hero-nav-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.whatsapp-float.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  animation: whatsappPulse 1.8s ease-in-out infinite;
}

.whatsapp-float:hover {
  color: #fff;
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .28);
  animation-play-state: paused;
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 10px 24px rgba(0, 0, 0, .22), 0 0 0 0 rgba(37, 211, 102, .45);
  }
  50% {
    box-shadow: 0 12px 28px rgba(0, 0, 0, .24), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

/* Social sidebar */
.social-sidebar {
  position: fixed;
  left: 40px;
  bottom: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.social-sidebar a {
  color: var(--text-heading);
  font-size: 16px;
  transition: var(--transition);
}

.social-sidebar a:hover {
  color: var(--accent);
  transform: translateY(-3px);
}

.social-sidebar .line {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.3);
}

/* About Intro */
.section-white {
  background: #ffffff;
}

.about-intro {
  background: #ffffff;
  padding: 25px 0 50px;
}

.about-intro .about-stats {
  margin-top: 0;
}

.dream-home-about-image {
  max-width: 600px;
  margin: 0 auto;
}

.dream-home-about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  text-align: center;
}

.about-stats .stat h3 {
  font-size: 55px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 5px;
}

.about-stats .stat p {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
}

/* Projects Section */
.projects-section {
  background: #f7f7f7;
  padding: 50px 0;
}

/* Filter Bar */
.filter-bar {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.filter-bar.stuck {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 100;
  margin-bottom: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.filter-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}
.filter-tab {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
}
.filter-tab:hover {
  color: #333;
}
.filter-tab.active {
  color: #111;
  border-bottom-color: #1DB2FF;
}
.filter-controls {
  display: flex;
  gap: 12px;
  align-items: center;
}
.filter-controls .filter-select {
  flex: 1;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #ccc;
  font-size: 14px;
  color: #555;
  background: #fff;
  outline: none;
  min-width: 0;
}
.filter-controls .filter-select:focus {
  border-color: #999;
}
.filter-search-btn {
  width: 48px;
  height: 48px;
  border: 1px solid #ccc;
  background: #fff;
  color: #555;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.filter-search-btn:hover {
  background: #1DB2FF;
  border-color: #1DB2FF;
  color: #fff;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Project Card */
.project-card {
  display: block;
  text-decoration: none;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 700px;
  overflow: hidden;
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.project-card:hover img {
  transform: scale(1.06);
}
.project-card::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.85) 0%,
    rgba(0,0,0,.60) 40%,
    rgba(0,0,0,.20) 70%,
    rgba(0,0,0,0) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.project-content {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 2;
}
.project-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 6px;
}
.project-location {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  opacity: .95;
  margin: 0 0 24px;
}
.explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 50px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.9);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
  cursor: pointer;
}
.explore-btn:hover {
  background: #fff;
  color: #111;
}

/* Load More */
.projects-load-more {
  text-align: center;
  margin-top: 40px;
}
.load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 50px;
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.load-more-btn:hover {
  border-color: #999;
  color: #111;
}

/* No Results */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}
.no-results h3 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px;
}
.no-results p {
  font-size: 15px;
  color: #777;
  margin: 0 0 20px;
}
.reset-btn {
  padding: 10px 28px;
  background: #333;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.reset-btn:hover { background: #111; }

.pagination-wrap .page-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--neon-glow);
}

.pagination-wrap .page-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: var(--neon-glow);
}

.pagination-wrap .page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Passion Section */
.passion-section {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.passion-section .passion-slide {
  position: relative;
  height: 600px;
}

.passion-section .passion-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.passion-section .passion-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.passion-section .passion-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 80%;
  max-width: 700px;
}

.passion-section .passion-content h3 {
  font-size: 55px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 20px;
}

.passion-section .passion-content p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

/* Land Projects */
.land-projects {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

.land-projects .land-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.land-projects .land-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.land-projects .content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.land-projects .content .label {
  color: var(--accent);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 400;
}

.land-projects .content h2 {
  font-size: 42px;
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 25px;
}

.land-projects .content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  border: 1px solid var(--accent);
  color: var(--text-heading);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
  font-family: var(--font-primary);
  cursor: pointer;
  border-radius: 6px;
  text-decoration: none;
}

.btn:hover {
  background: var(--accent);
  color: var(--text-heading);
  box-shadow: var(--neon-glow);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-hover);
  box-shadow: var(--neon-glow);
  transform: translateY(-2px);
}

/* Contact Bar */
.contact-bar {
  background: var(--bg-section);
  padding: 40px 0;
  text-align: center;
}

.contact-bar .hotline {
  font-size: 18px;
  color: var(--text-heading);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.contact-bar .hotline span {
  color: var(--accent);
  font-weight: 700;
}

.contact-bar .btn {
  margin-top: 10px;
}

/* Footer */
.footer {
  background: #1a1a2e;
  padding: 35px 0 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer .brand .logo img {
    height: 60px;
  margin-bottom: 20px;
}

.footer .brand .tagline {
  font-size: 14px;
  color: #94a3b8;
  letter-spacing: normal;
  font-weight: 400;
  line-height: 1.6;
}

.footer h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  font-size: 14px;
  color: #94a3b8;
  transition: var(--transition);
}

.footer ul li a:hover {
  color: #60a5fa;
  padding-left: 5px;
}

.footer .contact-info p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.8;
  color: #94a3b8;
}

.footer .contact-info p strong {
  color: #fff;
  font-weight: 500;
}

.footer .contact-info a {
  color: #60a5fa;
}

.footer p {
  color: #94a3b8;
}

.footer .copyright {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #94a3b8;
}

.footer .copyright a {
  color: #60a5fa;
}

.footer .social-links {
  display: flex;
  gap: 10px;
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #94a3b8;
  border: 1px solid rgba(255,255,255,.15);
  text-decoration: none;
  transition: all .2s;
}

.footer .social-links a:hover {
  background: #60a5fa;
  border-color: #60a5fa;
  color: #fff;
}

/* Inner Page Hero */
.page-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
  pointer-events: none;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  animation: heroReveal 1s ease forwards;
}

@keyframes heroReveal {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.page-hero .hero-content .breadcrumb {
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-hero .hero-content h1 {
  font-size: 48px;
  color: var(--text-heading);
  font-weight: 700;
}

/* About Page */
.about-story {
  padding: 50px 0;
}

.about-story .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-story .text .label {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about-story .text h2 {
  font-size: 36px;
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 25px;
}

.about-story .text p {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-story .image img {
  width: 100%;
  border-radius: 4px;
}

/* === Chairman Statement Section === */
.chairman-statement-section {
  padding: 80px 0;
  background: #fff;
}

.chairman-statement-grid {
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 60px;
  align-items: center;
}

.chairman-statement-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  aspect-ratio: 5/6;
  object-fit: cover;
}

.chairman-statement-content {
  position: relative;
}

.chairman-statement-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1C1F26;
}

.chairman-statement-quote-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: #C89B3C;
  margin-bottom: 10px;
  font-weight: 700;
}

.chairman-statement-paragraph {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.chairman-statement-paragraph:last-of-type {
  margin-bottom: 30px;
}

.chairman-statement-signature {
  padding-top: 25px;
  border-top: 2px solid #e5e7eb;
}

.chairman-statement-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1C1F26;
  margin-bottom: 4px;
}

.chairman-statement-designation {
  font-size: 0.95rem;
  color: #C89B3C;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* === Mission & Vision Section === */
.mission-vision-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mission-box,
.vision-box {
  background: #fff;
  border-radius: 12px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-box:hover,
.vision-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.mission-icon,
.vision-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
}

.mission-icon {
  background: #e8f4f8;
  color: #1C1F26;
}

.vision-icon {
  background: #fef3e7;
  color: #C89B3C;
}

.mission-box h3,
.vision-box h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1C1F26;
  margin-bottom: 16px;
}

.mission-box p,
.vision-box p {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
}

/* === Section Header === */
.section-header-center {
  text-align: center;
  margin-bottom: 50px;
}

.section-header-center h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1C1F26;
  margin-bottom: 12px;
}

.section-header-center p {
  font-size: 1.05rem;
  color: #888;
  max-width: 600px;
  margin: 0 auto;
}

.section-header-left h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1C1F26;
  margin-bottom: 16px;
}

/* === Company Overview === */
.about-overview {
  padding: 80px 0;
  background: #fff;
}

.about-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-overview-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.about-overview-label {
  color: #C89B3C;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.about-overview-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1C1F26;
  margin-bottom: 20px;
}

.about-overview-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

/* === Core Values === */
.core-values-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.core-value-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.core-value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e8f4f8;
  color: #1DB2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.core-value-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1C1F26;
  margin-bottom: 10px;
}

.core-value-card p {
  font-size: 0.92rem;
  color: #888;
  line-height: 1.6;
}

/* === Why Choose Us === */
.why-choose-section {
  padding: 80px 0;
  background: #fff;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-choose-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 35px 30px;
  border-left: 4px solid #1DB2FF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.why-choose-icon {
  color: #1DB2FF;
  font-size: 28px;
  margin-bottom: 16px;
}

.why-choose-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1C1F26;
  margin-bottom: 8px;
}

.why-choose-card p {
  font-size: 0.92rem;
  color: #888;
  line-height: 1.6;
}

/* === Timeline === */
.about-timeline-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #e5e7eb;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1DB2FF;
  border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(29,178,255,0.3);
  z-index: 1;
}

.timeline-content {
  background: #fff;
  border-radius: 12px;
  padding: 24px 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.timeline-year {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: #1DB2FF;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.timeline-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1C1F26;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.95rem;
  color: #888;
  line-height: 1.6;
}

/* === About Statistics === */
.about-statistics-section {
  padding: 80px 0;
  background: #1C1F26;
  background-size: cover;
  background-position: center;
  position: relative;
}

.about-statistics-section .section-header-center h2 {
  color: #fff;
}

.about-statistics-section .section-header-center p {
  color: rgba(255,255,255,0.7);
}

.about-statistics-section .statistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.about-statistics-section .stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  backdrop-filter: blur(4px);
}

.about-statistics-section .stat-icon {
  font-size: 32px;
  color: #C89B3C;
  margin-bottom: 16px;
}

.about-statistics-section .stat-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.about-statistics-section .stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.about-statistics-section .stat-suffix {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #C89B3C;
  margin-left: 2px;
}

.about-statistics-section .stat-item h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-top: 10px;
}

/* === Leadership === */
.about-leadership-section {
  padding: 80px 0;
  background: #fff;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.leadership-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leadership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.leadership-image {
  position: relative;
  width: 100%;
  aspect-ratio: 5/6;
  overflow: hidden;
}

.leadership-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.leadership-card:hover .leadership-image img {
  transform: scale(1.05);
}

.leadership-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #d1d5db;
  font-size: 48px;
}

.chairman-placeholder {
  width: 100%;
  aspect-ratio: 5/6;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #d1d5db;
  border-radius: 8px;
  font-size: 64px;
}

.overview-placeholder {
  width: 100%;
  aspect-ratio: 6/5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #d1d5db;
  border-radius: 12px;
  font-size: 64px;
}

.csr-placeholder {
  width: 100%;
  aspect-ratio: 550/400;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  color: #d1d5db;
  border-radius: 12px;
  font-size: 64px;
}

.leadership-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 40px 16px 14px;
  display: flex;
  gap: 10px;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.leadership-card:hover .leadership-social {
  opacity: 1;
  transform: translateY(0);
}

.leadership-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s;
}

.leadership-social a:hover {
  background: #1DB2FF;
}

.leadership-info {
  padding: 20px;
  text-align: center;
}

.leadership-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1C1F26;
  margin-bottom: 4px;
}

.leadership-position {
  font-size: 0.82rem;
  color: #C89B3C;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

.leadership-info p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.5;
}

/* === Awards === */
.about-awards-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.award-card {
  background: #fff;
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: transform 0.3s ease;
}

.award-card:hover {
  transform: translateY(-4px);
}

.award-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.award-logo i {
  font-size: 40px;
  color: #C89B3C;
}

.award-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1C1F26;
  margin-bottom: 6px;
}

.award-year {
  font-size: 0.8rem;
  color: #1DB2FF;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.award-card p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.5;
}

/* === CSR === */
.about-csr-section {
  padding: 80px 0;
  background: #fff;
}

.csr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.csr-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.csr-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #666;
}

/* === Testimonials === */
.about-testimonials-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.testimonials-carousel {
  padding-bottom: 60px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  height: 100%;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-review {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-avatar-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 20px;
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.95rem;
  color: #1C1F26;
}

.testimonial-author-info span {
  font-size: 0.82rem;
  color: #888;
}

.swiper-pagination-bullet-active {
  background: #1DB2FF;
}

.swiper-button-prev,
.swiper-button-next {
  color: #1DB2FF;
}

/* === CTA === */
.about-cta-section {
  padding: 100px 0;
  background: #1C1F26;
  background-size: cover;
  background-position: center;
  position: relative;
}

.about-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.about-cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

.cta-content .btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* === Modern Team Cards === */
.team-section-modern {
  padding: 50px 0;
  background: var(--bg-section);
}

.team-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card-modern {
  width: 100%;
  max-width: 350px;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin: 0 auto;
}

.team-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: #1db2ff;
  border-radius: 24px 24px 0 0;
  transition: width 0.6s ease-in-out;
  z-index: 3;
}

.team-card-modern:hover::before {
  width: 100%;
}

.team-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.team-card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.team-card-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-card-modern:hover .team-card-image img {
  transform: scale(1.05);
}

.team-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: var(--accent);
  background: #1a1a2e;
}

.team-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.25) 50%,
    rgba(0,0,0,0) 100%
  );
  transition: background 0.4s ease;
  z-index: 1;
}

.team-card-modern:hover .team-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0) 100%
  );
}


.team-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px 25px;
  z-index: 2;
  text-align: center;
}

.team-card-name {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin: 0 0 4px;
  line-height: 1.2;
}

.team-card-designation {
  font-size: 16px;
  font-weight: 600;
  color: #1db2ff;
  text-align: center;
  margin: 0 0 8px;
}

.team-card-bio {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  text-align: center;
  margin: 0 0 10px;
  max-height: 38px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.team-card-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.team-card-linkedin:hover {
  background: #0077b5;
}

@media (max-width: 1024px) {
  .team-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .team-grid-modern {
    grid-template-columns: 1fr;
  }
  .team-card-modern {
    max-width: 320px;
  }
}
/* === End Modern Team Cards === */

.team-section {
  padding: 50px 0;
  background: var(--bg-section);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.team-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

.team-card .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg-section);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--accent);
}

.team-card h4 {
  font-size: 20px;
  color: var(--text-heading);
  font-weight: 600;
  margin-bottom: 5px;
}

.team-card .role {
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.team-card p {
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
}

/* Map Section */
.map-section {
  width: 100%;
  overflow: hidden;
}

.map-section iframe {
  display: block;
  width: 100%;
}

/* Contact Page */
.contact-page {
  padding: 50px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-section h2 {
  font-size: 36px;
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 40px;
}

.office-card {
  margin-bottom: 30px;
  padding: 25px;
  background: var(--bg-section);
  border: 1px solid var(--border-color);
}

.office-card h4 {
  font-size: 16px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.office-card p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 5px;
}

.office-card a {
  color: var(--accent);
}

.contact-form h2 {
  font-size: 36px;
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  background: var(--bg-section);
  border: 1px solid var(--border-color);
  color: var(--text-heading);
  font-family: var(--font-primary);
  font-size: 14px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* Project Detail */
.project-detail {
  padding: 50px 0;
}

.project-detail .header-info {
  margin-bottom: 50px;
}

.project-detail .header-info .location {
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.project-detail .header-info h1 {
  font-size: 42px;
  color: var(--text-heading);
  font-weight: 700;
}

.project-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.spec-item {
  padding: 20px;
  background: var(--bg-section);
  border: 1px solid var(--border-color);
}

.spec-item .label {
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.spec-item .value {
  font-size: 16px;
  color: var(--text-heading);
  font-weight: 500;
}

.project-features {
  margin-bottom: 60px;
}

.project-features h2 {
  font-size: 32px;
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 30px;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.features-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

.project-gallery {
  margin-bottom: 60px;
}

.project-gallery h2 {
  font-size: 32px;
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-grid img:hover {
  opacity: 0.8;
}

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

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Scroll Animations === */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll[data-animation="fade-left"] {
  transform: translateX(-40px);
}

.animate-on-scroll[data-animation="fade-up"] {
  transform: translateY(40px);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.animate-on-scroll[data-delay] {
  transition-delay: attr(data-delay ms);
}

/* Mobile Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
}

.mobile-overlay.active {
  display: block;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-intro .content,
  .about-story .content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-intro .image {
    order: -1;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .project-card { min-height: 500px; }
  .project-content { left: 28px; bottom: 28px; }

  .filter-controls { flex-wrap: wrap; }
  .filter-controls .filter-select { flex: 1 1 30%; min-width: 160px; }
  .filter-search-btn { flex: 0 0 48px; }

  .footer .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .project-specs {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-primary);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 999;
    border-left: 1px solid var(--border-color);
  }

  .nav.active {
    right: 0;
  }

  .nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav ul li {
    width: 100%;
  }

  .nav ul li a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
  }

  .nav ul li .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    padding: 0 0 0 20px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .nav ul li .dropdown::before {
    display: none;
  }

  .nav ul li .dropdown.show {
    max-height: 300px;
  }

  .nav ul li .dropdown li {
    opacity: 1;
    transform: none;
    display: block;
    width: 100%;
  }

  .nav ul li .dropdown li a {
    border-left: none;
    padding: 12px 20px;
    display: block;
    width: 100%;
  }

  .nav ul li .dropdown li a:hover {
    border-left: none;
    padding-left: 20px;
    background: #f5f5f5;
  }

  .social-sidebar {
    display: none;
  }

  .hero-slider .slide-content {
    left: 5%;
    right: 5%;
    bottom: 20%;
  }

  .hero-slider,
  .hero-slider .swiper-slide {
    height: var(--hero-mobile-height, var(--hero-desktop-height, 100vh));
  }

  .hero-slider .slide-content h1,
  .hero-slider .slide-content h2 {
    font-size: 32px;
  }

  .slider-counter {
    right: 5%;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .about-intro .text h2 {
    font-size: 28px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .passion-section .passion-content h3 {
    font-size: 32px;
  }

  .land-projects .content h2 {
    font-size: 28px;
  }

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

  .footer .copyright {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .page-hero {
    height: 300px;
  }

  .page-hero .hero-content h1 {
    font-size: 32px;
  }

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

  .project-specs {
    grid-template-columns: 1fr;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid { grid-template-columns: 1fr; gap: 20px; }
  .filter-bar { padding: 20px; }
  .filter-tabs { overflow-x: auto; gap: 0; }
  .filter-tab { padding: 8px 16px; font-size: 13px; white-space: nowrap; }
  .filter-controls { flex-direction: column; }
  .filter-controls .filter-select { width: 100%; }
  .filter-search-btn { width: 100%; }
  .filter-bar.stuck { padding: 10px 16px; }
  .project-card { min-height: 450px; }
  .project-title { font-size: 18px; }
  .project-location { font-size: 14px; margin-bottom: 16px; }
  .project-content { left: 24px; bottom: 24px; }
  .explore-btn { width: 120px; height: 44px; font-size: 14px; }
  .projects-section { padding: 50px 0; }

  .section-title .sub-title {
    padding: 0 40px;
  }

  .section-title .sub-title::before,
  .section-title .sub-title::after {
    width: 30px;
  }
}

@media (max-width: 480px) {
  .hero-slider .slide-content h1 {
    font-size: 26px;
  }

  .slider-counter .current {
    font-size: 32px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ CAREER PAGE ============ */
.career-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.career-hero .hero-bg {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  z-index: -2;
  will-change: transform;
  pointer-events: none;
}

.career-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 27, 62, 0.85), rgba(0, 0, 0, 0.7));
  z-index: -1;
}

.career-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 20px;
}

.career-hero .hero-content h1 {
  font-size: 56px;
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 20px;
}

.career-hero .hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 35px;
}

.btn-blue {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-blue:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 0 15px rgba(29, 178, 255, 0.3), 0 0 40px rgba(29, 178, 255, 0.1);
  transform: translateY(-2px);
}

.career-section {
  padding: 50px 0;
}

.career-section.bg-alt {
  background: var(--bg-section);
}

.career-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.career-section .section-header h2 {
  font-size: 40px;
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 15px;
}

.career-section .section-header p {
  font-size: 16px;
  color: var(--text-primary);
  max-width: 600px;
  margin: 0 auto;
}

/* Why Work With Us */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.highlight-card {
  text-align: center;
  padding: 35px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.highlight-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(29, 178, 255, 0.1);
}

.highlight-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--accent);
  background: rgba(29, 178, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.highlight-card:hover .icon {
  background: var(--accent);
  color: var(--text-heading);
}

.highlight-card h4 {
  font-size: 16px;
  color: var(--text-heading);
  font-weight: 600;
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 13px;
  color: var(--text-primary);
  line-height: 1.5;
}

/* Job Openings */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.job-card {
  padding: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.job-card:hover {
  border-color: rgba(29, 178, 255, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.job-card .job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.job-card .job-header h3 {
  font-size: 20px;
  color: var(--text-heading);
  font-weight: 600;
}

.job-card .job-badge {
  padding: 4px 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 20px;
  background: rgba(29, 178, 255, 0.15);
  color: var(--accent);
  white-space: nowrap;
}

.job-card .job-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.job-card .job-meta span {
  font-size: 13px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-card .job-meta i {
  color: var(--accent);
  width: 16px;
}

.job-card p {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-sm {
  padding: 8px 22px;
  font-size: 12px;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.benefit-card {
  text-align: center;
  padding: 35px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 10px 40px rgba(29, 178, 255, 0.1);
}

.benefit-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--accent);
  background: rgba(29, 178, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.benefit-card:hover .icon {
  background: var(--accent);
  color: var(--text-heading);
}

.benefit-card h4 {
  font-size: 16px;
  color: var(--text-heading);
  font-weight: 600;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 13px;
  color: var(--text-primary);
  line-height: 1.5;
}

/* Application Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step .step-number {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-heading);
  background: var(--accent);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(29, 178, 255, 0.3);
}

.process-step h4 {
  font-size: 18px;
  color: var(--text-heading);
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.5;
}

.process-step::after {
  content: '→';
  position: absolute;
  top: 25px;
  right: -20px;
  font-size: 22px;
  color: var(--accent);
  font-weight: 700;
}

.process-step:last-child::after {
  display: none;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial-card {
  padding: 35px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(29, 178, 255, 0.2);
  transform: translateY(-4px);
}

.testimonial-card .stars {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.testimonial-card > p {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-card .author .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
}

.testimonial-card .author .info h5 {
  font-size: 15px;
  color: var(--text-heading);
  font-weight: 600;
}

.testimonial-card .author .info span {
  font-size: 13px;
  color: var(--accent);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 12px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(29, 178, 255, 0.2);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-card);
  border: none;
  color: var(--text-heading);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-primary);
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(29, 178, 255, 0.05);
}

.faq-question .faq-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
  color: var(--accent);
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 25px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.7;
}

/* Career Form */
.career-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
}

.career-form-wrapper .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.career-form-wrapper .form-group {
  margin-bottom: 22px;
}

.career-form-wrapper .form-group label {
  display: block;
  font-size: 13px;
  color: var(--text-heading);
  margin-bottom: 8px;
  font-weight: 500;
}

.career-form-wrapper .form-group input,
.career-form-wrapper .form-group select,
.career-form-wrapper .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-section);
  border: 1px solid var(--border-color);
  color: var(--text-heading);
  font-family: var(--font-primary);
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.career-form-wrapper .form-group input:focus,
.career-form-wrapper .form-group select:focus,
.career-form-wrapper .form-group textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(29, 178, 255, 0.1);
}

.career-form-wrapper .form-group select option {
  background: var(--bg-section);
}

.career-form-wrapper .form-group textarea {
  height: 130px;
  resize: vertical;
}

.file-upload {
  position: relative;
}

.file-upload input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.file-upload .file-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-section);
  border: 1px dashed var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  transition: all 0.3s ease;
}

.file-upload .file-label:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.file-upload .file-label i {
  font-size: 20px;
  color: var(--accent);
}

@media (max-width: 1024px) {
  .highlights-grid,
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step::after {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .career-hero .hero-content h1 {
    font-size: 36px;
  }

  .highlights-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .career-form-wrapper {
    padding: 30px 20px;
  }

  .career-form-wrapper .form-row {
    grid-template-columns: 1fr;
  }

  .career-section {
    padding: 60px 0;
  }

  .career-section .section-header h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .highlights-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ NEWS & EVENTS PAGE ============ */
.news-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.news-hero .hero-bg {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  z-index: -2;
  will-change: transform;
  pointer-events: none;
}

.news-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 27, 62, 0.85), rgba(0, 0, 0, 0.7));
  z-index: -1;
}

.news-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 20px;
}

.news-hero .hero-content h1 {
  font-size: 56px;
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 20px;
}

.news-hero .hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 35px;
}

.news-section {
  padding: 50px 0;
}

.news-section.bg-alt {
  background: var(--bg-section);
}

.news-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.news-section .section-header h2 {
  font-size: 38px;
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 15px;
}

.news-section .section-header p {
  font-size: 16px;
  color: var(--text-primary);
  max-width: 600px;
  margin: 0 auto;
}

/* Featured News */
.featured-news {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
}

.featured-news .featured-image {
  position: relative;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.featured-news .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-news:hover .featured-image img {
  transform: scale(1.05);
}

.featured-news .featured-content {
  padding: 40px 40px 40px 0;
}

.featured-news .featured-content .featured-badge {
  display: inline-block;
  padding: 4px 16px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 20px;
  background: rgba(29, 178, 255, 0.15);
  color: var(--accent);
  margin-bottom: 15px;
}

.featured-news .featured-content .date {
  font-size: 13px;
  color: var(--text-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.featured-news .featured-content .date i {
  color: var(--accent);
}

.featured-news .featured-content h2 {
  font-size: 28px;
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.featured-news .featured-content p {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 25px;
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.news-card:hover {
  border-color: rgba(29, 178, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.news-card .news-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.news-card .news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-thumb img {
  transform: scale(1.08);
}

.news-card .news-thumb .news-category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 4px 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 20px;
  background: var(--accent);
  color: var(--text-heading);
  z-index: 2;
}

.news-card .news-body {
  padding: 25px;
}

.news-card .news-body .date {
  font-size: 12px;
  color: var(--text-primary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-card .news-body .date i {
  color: var(--accent);
}

.news-card .news-body h3 {
  font-size: 18px;
  color: var(--text-heading);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-card .news-body p {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 18px;
}

.news-card .news-body .read-more {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.news-card .news-body .read-more:hover {
  gap: 12px;
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.event-card {
  display: flex;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.event-card:hover {
  border-color: rgba(29, 178, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.event-card .event-image {
  width: 200px;
  min-height: 200px;
  flex-shrink: 0;
  overflow: hidden;
}

.event-card .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.08);
}

.event-card .event-info {
  padding: 25px;
  flex: 1;
}

.event-card .event-info .event-date-badge {
  display: inline-block;
  padding: 4px 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: 20px;
  background: rgba(29, 178, 255, 0.15);
  color: var(--accent);
  margin-bottom: 12px;
}

.event-card .event-info h3 {
  font-size: 18px;
  color: var(--text-heading);
  font-weight: 600;
  margin-bottom: 10px;
}

.event-card .event-info .event-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.event-card .event-info .event-meta span {
  font-size: 13px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-card .event-info .event-meta i {
  color: var(--accent);
  width: 16px;
}

.event-card .event-info p {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent));
}

.timeline-item {
  position: relative;
  padding: 0 0 40px 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 2px var(--accent);
}

.timeline-item .tl-date {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.timeline-item h4 {
  font-size: 18px;
  color: var(--text-heading);
  font-weight: 600;
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.6;
}

/* Newsletter */
.newsletter-box {
  background: #ffffff;
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 60px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.newsletter-box h2 {
  font-size: 32px;
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 12px;
}

.newsletter-box p {
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 30px;
}

.newsletter-box .newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-box .newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  background: var(--bg-section);
  border: 1px solid var(--border-color);
  color: var(--text-heading);
  font-family: var(--font-primary);
  font-size: 14px;
  border-radius: 8px;
}

.newsletter-box .newsletter-form input:focus {
  border-color: var(--accent);
  outline: none;
}

.newsletter-box .newsletter-form button {
  padding: 16px 30px;
  white-space: nowrap;
}

/* Gallery Grid */
.gallery-grid-news {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-grid-news .gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-grid-news .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-grid-news .gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-grid-news .gallery-item .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-grid-news .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-grid-news .gallery-item .gallery-overlay span {
  font-size: 13px;
  color: #fff;
}

.gallery-grid-news .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

/* Media Mentions */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.media-card {
  padding: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.media-card:hover {
  border-color: rgba(29, 178, 255, 0.2);
  transform: translateY(-4px);
}

.media-card .media-icon {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 15px;
}

.media-card blockquote {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 15px;
}

.media-card .media-source {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}

/* CTA Section */
.cta-section-news {
  background: var(--accent);
  padding: 50px 0;
  text-align: center;
}

.cta-section-news h2 {
  font-size: 36px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-section-news p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta-section-news h2 {
  font-size: 36px;
  color: var(--text-heading);
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-section-news p {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section-news .cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* News Filter */
.news-filter-bar {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.news-filter-bar .search-input {
  flex: 1;
  min-width: 200px;
  padding: 12px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-heading);
  font-family: var(--font-primary);
  font-size: 14px;
  border-radius: 8px;
}

.news-filter-bar .search-input:focus {
  border-color: var(--accent);
  outline: none;
}

.news-filter-bar select {
  padding: 12px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-heading);
  font-family: var(--font-primary);
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  min-width: 160px;
}

.news-filter-bar select:focus {
  border-color: var(--accent);
  outline: none;
}

.news-filter-bar select option {
  background: var(--bg-section);
}

@media (max-width: 1024px) {
  .featured-news {
    grid-template-columns: 1fr;
  }

  .featured-news .featured-content {
    padding: 30px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid-news {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid-news .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .news-hero .hero-content h1 {
    font-size: 36px;
  }

  .news-section {
    padding: 60px 0;
  }

  .news-section .section-header h2 {
    font-size: 28px;
  }

  .featured-news .featured-image {
    min-height: 250px;
  }

  .featured-news .featured-content h2 {
    font-size: 22px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    flex-direction: column;
  }

  .event-card .event-image {
    width: 100%;
    height: 200px;
  }

  .newsletter-box {
    padding: 40px 25px;
  }

  .newsletter-box .newsletter-form {
    flex-direction: column;
  }

  .gallery-grid-news {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 30px;
  }

  .cta-section-news h2 {
    font-size: 28px;
  }

  .news-filter-bar {
    flex-direction: column;
  }

  .news-filter-bar select,
  .news-filter-bar .search-input {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .gallery-grid-news {
    grid-template-columns: 1fr 1fr;
  }

  .cta-section-news .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ============ DREAM HOME SECTION ============ */
.dream-home-section {
  background: #f5f8fc;
  padding: 50px 0;
  overflow: hidden;
  position: relative;
}

.dream-home-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.dream-home-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 3px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.dream-home-header p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

.dream-home-slider {
  overflow: visible !important;
  padding: 20px 0 60px;
}

.dream-home-slider .swiper-wrapper {
  align-items: stretch;
}

.dream-home-slider .swiper-slide {
  height: auto;
  transition: transform 0.4s ease;
  padding: 10px 0;
}

.dream-home-slider .swiper-slide:hover {
  transform: translateY(-8px);
}

.dream-card {
  position: relative;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.4s ease;
}

.dream-card:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.dream-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.dream-card:hover .dream-card-img {
  transform: scale(1.08);
}

.dream-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.1) 70%, transparent 100%);
  z-index: 1;
}

.dream-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.dream-card:hover .dream-card-content {
  transform: translateY(-5px);
}

.dream-card-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.dream-card-location {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.dream-card-location::before {
  content: '\f3c5';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  color: #1DB2FF;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  display: none;
}

.dream-pagination {
  display: flex !important;
  justify-content: center;
  gap: 18px;
  padding: 16px 0;
}

.dream-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.15);
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0 !important;
}

.dream-pagination .swiper-pagination-bullet:hover {
  background: rgba(0, 0, 0, 0.25);
}

.dream-pagination .swiper-pagination-bullet-active {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(29, 178, 255, 0.3), 0 0 30px rgba(29, 178, 255, 0.1);
}

@media (max-width: 1024px) {
  .dream-home-header h2 {
    font-size: 48px;
  }

  .dream-card {
    height: 400px;
  }

  .dream-home-section {
    padding: 80px 0 60px;
  }
}

@media (max-width: 768px) {
  .dream-home-header h2 {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .dream-home-header p {
    font-size: 14px;
  }

  .dream-home-header {
    margin-bottom: 40px;
  }

  .dream-card {
    height: 380px;
  }

  .dream-card-content {
    padding: 25px;
  }

  .dream-card-content h3 {
    font-size: 18px;
  }

  .dream-home-section {
    padding: 60px 0 40px;
  }
}

@media (max-width: 480px) {
  .dream-home-header h2 {
    font-size: 28px;
  }

  .dream-card {
    height: 340px;
  }
}

/* ============ PROJECTS BY COMMUNITY ============ */
.community-section {
  background: #f5f8fc;
  padding: 50px 0;
}

.community-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.community-heading h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: 3px;
  margin-bottom: 10px;
  line-height: 1.1;
}

.community-underline {
  display: block;
  width: 60px;
  height: 4px;
  background: #1DB2FF;
  border-radius: 2px;
}

.community-arrows {
  display: flex;
  gap: 12px;
}

.community-arrow {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.community-arrow:hover {
  background: #1DB2FF;
  transform: translateY(-2px);
}

.community-filters {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.community-filter {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--border-color);
  background: transparent;
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.community-filter:hover {
  border-color: #1DB2FF;
  color: var(--accent);
}

.community-filter.active {
  background: #1DB2FF;
  border-color: #1DB2FF;
  color: #fff;
}

.community-slider {
  overflow: hidden !important;
  padding: 10px 0 30px;
}

.community-slider .swiper-slide {
  height: auto;
  transition: transform 0.4s ease;
}

.community-slider .swiper-slide-hidden {
  display: none;
}

.community-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.community-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.community-card-img {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}

.community-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.community-card:hover .community-card-img img {
  transform: scale(1.08);
}

.onsale-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 5px 14px;
  background: #1DB2FF;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 6px;
  z-index: 2;
}

.community-card-body {
  padding: 24px;
}

.community-card-location {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #1DB2FF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.community-card-location i {
  font-size: 12px;
}

.community-card-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 8px;
  line-height: 1.3;
}

.community-card-bedrooms {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--text-primary);
  display: block;
  margin-bottom: 20px;
}

.community-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
}

.community-card-community {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.community-card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.community-card:hover .community-card-arrow {
  background: var(--accent);
  color: #fff;
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .community-section {
    padding: 80px 0;
  }

  .community-heading h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .community-section {
    padding: 60px 0;
  }

  .community-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .community-arrows {
    align-self: flex-end;
  }

  .community-heading h2 {
    font-size: 28px;
  }

  .community-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .community-filters::-webkit-scrollbar {
    height: 3px;
  }

  .community-filters::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }

  .community-filter {
    flex-shrink: 0;
  }

  .community-card-body h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .community-heading h2 {
    font-size: 24px;
  }

  .community-card-body {
    padding: 18px;
  }
}

/* ============ PROJECT DETAIL ============ */
.detail-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  will-change: background-position;
}

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.detail-breadcrumb {
  font-size: 14px;
  color: #1DB2FF;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.detail-hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.detail-hero-content .project-status {
  position: static;
  display: inline-block;
  padding: 6px 20px;
  font-size: 12px;
}

.detail-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.detail-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.detail-share-btn:hover {
  background: #1DB2FF;
  border-color: #1DB2FF;
  transform: translateY(-2px);
}

.detail-share-btn i {
  font-size: 14px;
}

/* Info Bar */
.detail-info-bar {
  background: #f0f4f8;
  padding: 30px 0;
  border-bottom: 1px solid #e8ecf1;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.detail-info-item {
  text-align: center;
  padding: 15px;
  background: #f8fafd;
  border-radius: 10px;
  border: 1px solid #e8ecf1;
}

.detail-info-price {
  grid-column: 1 / -1;
}

.info-label {
  display: block;
  font-size: 11px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
}

.info-value {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
}

/* Detail Sections */
.detail-section {
  padding: 50px 0;
}

.detail-section-alt {
  background: #f0f4f8;
}

.section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #1DB2FF;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 10px;
}

.detail-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 40px;
}

/* Gallery */
.detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.detail-gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.detail-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Description */
.detail-desc-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.detail-desc-text p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-primary);
}

.detail-desc-cta {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 30px;
  background: #f8fafd;
  border-radius: 16px;
  border: 1px solid #e8ecf1;
}

.detail-desc-cta .btn {
  width: 100%;
  justify-content: center;
}

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
}

.amenity-card {
  text-align: center;
  padding: 30px 20px;
  background: #f8fafd;
  border: 1px solid #e8ecf1;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.amenity-card:hover {
  border-color: #1DB2FF;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(29,178,255,0.1);
}

.amenity-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29,178,255,0.1);
  border-radius: 14px;
  font-size: 22px;
  color: #1DB2FF;
  transition: all 0.3s ease;
}

.amenity-card:hover .amenity-icon {
  background: #1DB2FF;
  color: #fff;
}

.amenity-card span {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

/* Features */
.detail-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  list-style: none;
  padding: 0;
}

.detail-features-list li {
  padding: 16px 20px;
  background: #f8fafd;
  border: 1px solid #e8ecf1;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.detail-features-list li:hover {
  border-color: #1DB2FF;
  transform: translateX(4px);
}

.detail-features-list li i {
  color: #1DB2FF;
  font-size: 16px;
}

/* Location */
.detail-location-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

.detail-map iframe {
  width: 100%;
  height: 350px;
  border-radius: 14px;
  border: none;
}

.detail-nearby {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}

.detail-nearby li {
  padding: 16px 20px;
  background: #f8fafd;
  border: 1px solid #e8ecf1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.detail-nearby li:hover {
  border-color: #1DB2FF;
  transform: translateX(4px);
}

.detail-nearby li i {
  color: #1DB2FF;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* Floor Plan */
.detail-floorplan {
  text-align: center;
}

.floorplan-placeholder {
  padding: 80px 40px;
  background: #f8fafd;
  border: 2px dashed #e8ecf1;
  border-radius: 16px;
}

.floorplan-placeholder i {
  font-size: 56px;
  color: #1DB2FF;
  margin-bottom: 20px;
}

.floorplan-placeholder p {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 25px;
}

/* CTA */
.detail-cta {
  padding: 50px 0;
  background: linear-gradient(135deg, #0d1b3e, #1a1a1a);
  text-align: center;
}

.detail-cta-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.detail-cta-content p {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 30px;
}

.detail-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Related */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.related-card {
  display: block;
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.related-card:hover {
  transform: translateY(-6px);
}

.related-card-img {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  border-radius: 14px;
}

.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.related-card:hover .related-card-img img {
  transform: scale(1.08);
}

.related-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  z-index: 1;
}

.related-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.related-card-content h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.related-card-content span {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* Fullscreen Overlay */
.fs-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.fs-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}

.fs-image {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .detail-hero-content h1 {
    font-size: 42px;
  }

  .detail-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-desc-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .detail-location-wrap {
    grid-template-columns: 1fr;
  }

  .detail-section-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .detail-hero {
    height: 350px;
    background-attachment: scroll;
  }

  .detail-hero-content h1 {
    font-size: 32px;
  }

  .detail-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-gallery {
    grid-template-columns: 1fr;
  }

  .detail-features-list {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-section {
    padding: 60px 0;
  }

  .detail-cta-content h2 {
    font-size: 28px;
  }

  .detail-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .detail-hero {
    height: 350px;
  }

  .detail-hero-content h1 {
    font-size: 26px;
  }

  .detail-info-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ NEWS DETAIL ============ */
.news-detail-category {
  display: inline-block;
  padding: 5px 16px;
  background: #1DB2FF;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.news-detail-date {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-detail-date i {
  color: #1DB2FF;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: start;
}

.news-detail-featured-img {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 30px;
}

.news-detail-featured-img img {
  width: 100%;
  height: auto;
  display: block;
}

.news-detail-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-primary);
}

.news-detail-body p {
  margin-bottom: 20px;
}

.news-detail-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: #f8fafd;
  border: 1px solid #e8ecf1;
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #1DB2FF;
}

#news-recent {
  list-style: none;
  padding: 0;
}

#news-recent li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8ecf1;
}

#news-recent li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

#news-recent li a {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.5;
  transition: color 0.3s ease;
  display: block;
  text-decoration: none;
}

#news-recent li a:hover {
  color: #1DB2FF;
}

.sidebar-categories {
  list-style: none;
  padding: 0;
}

.sidebar-categories li {
  margin-bottom: 10px;
}

.sidebar-categories li a {
  font-size: 14px;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.sidebar-categories li a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #1DB2FF;
  font-size: 12px;
}

.sidebar-categories li a:hover {
  color: #1DB2FF;
}

.sidebar-social {
  display: flex;
  gap: 10px;
}

.sidebar-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eef2f7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.sidebar-social a:hover {
  background: #1DB2FF;
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .news-detail-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .news-detail-body {
    font-size: 15px;
  }
}

/* ─── Statistics / Achievement Section ─── */
.statistics-section {
  position: relative;
  overflow: hidden;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.stat-item {
  padding: 20px 15px;
}

.stat-number {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.1;
  transition: color 0.3s;
}

.stat-title {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
}

.stat-desc {
  opacity: 0.8;
}

.stat-icon i {
  transition: transform 0.3s;
}

.stat-item:hover .stat-icon i {
  transform: scale(1.15);
}

@media (max-width: 1024px) {
  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-number {
    font-size: 42px;
  }
}

@media (max-width: 640px) {
  .statistics-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .stat-number {
    font-size: 36px;
  }
}

/* Chairman Statement Responsive */
@media (max-width: 1024px) {
  .chairman-statement-section {
    padding: 60px 0;
  }
  .chairman-statement-grid {
    gap: 40px;
  }
  .chairman-statement-heading {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .chairman-statement-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .chairman-statement-image {
    max-width: 400px;
    margin: 0 auto;
  }
  .chairman-statement-heading {
    font-size: 1.6rem;
  }
  .chairman-statement-quote-mark {
    font-size: 3.5rem;
  }
}

@media (max-width: 480px) {
  .chairman-statement-section {
    padding: 40px 0;
  }
  .chairman-statement-heading {
    font-size: 1.3rem;
  }
  .chairman-statement-paragraph {
    font-size: 0.95rem;
  }
}

/* Mission & Vision Responsive */
@media (max-width: 768px) {
  .mission-vision-section {
    padding: 60px 0;
  }
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .mission-box,
  .vision-box {
    padding: 40px 30px;
  }
  .mission-box h3,
  .vision-box h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .mission-vision-section {
    padding: 40px 0;
  }
  .mission-icon,
  .vision-icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
}

/* About Sections Responsive */
@media (max-width: 1024px) {
  .about-overview { padding: 60px 0; }
  .core-values-section,
  .why-choose-section,
  .about-timeline-section,
  .about-leadership-section,
  .about-awards-section,
  .about-csr-section,
  .about-testimonials-section,
  .about-cta-section,
  .about-statistics-section { padding: 60px 0; }
  .about-overview-grid,
  .csr-grid { gap: 40px; }
  .section-header-center { margin-bottom: 40px; }
  .section-header-center h2 { font-size: 1.8rem; }
  .about-overview-content h2 { font-size: 1.8rem; }
  .cta-content h2 { font-size: 2rem; }
  .core-values-grid,
  .awards-grid { grid-template-columns: repeat(3, 1fr); }
  .about-statistics-section .statistics-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-overview-grid,
  .csr-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-overview-image { order: -1; }
  .core-values-grid,
  .why-choose-grid,
  .leadership-grid,
  .awards-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .about-statistics-section .statistics-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .timeline { padding-left: 30px; }
  .timeline-item { padding-left: 30px; }
  .about-overview { padding: 50px 0; }
  .about-overview-content h2 { font-size: 1.5rem; }
  .section-header-center h2 { font-size: 1.5rem; }
  .cta-content h2 { font-size: 1.6rem; }
  .about-statistics-section .stat-number { font-size: 2.2rem; }
  .about-statistics-section .stat-suffix { font-size: 1.6rem; }
  .leadership-card { max-width: 350px; margin: 0 auto; }
  .core-value-card,
  .award-card { padding: 30px 20px; }
  .why-choose-card { padding: 28px 24px; }
  .about-cta-section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .about-overview { padding: 40px 0; }
  .core-values-section,
  .why-choose-section,
  .about-timeline-section,
  .about-leadership-section,
  .about-awards-section,
  .about-csr-section,
  .about-testimonials-section,
  .about-cta-section,
  .about-statistics-section { padding: 40px 0; }
  .core-values-grid,
  .why-choose-grid,
  .leadership-grid,
  .awards-grid { grid-template-columns: 1fr; }
  .about-statistics-section .statistics-grid { grid-template-columns: 1fr; }
  .section-header-center { margin-bottom: 30px; }
  .section-header-center h2 { font-size: 1.3rem; }
  .about-overview-content h2,
  .about-overview-label { text-align: center; }
  .about-overview-content .btn { display: block; text-align: center; }
  .cta-content h2 { font-size: 1.3rem; }
  .cta-content .btn-lg { display: block; text-align: center; }
  .timeline-content { padding: 20px; }
  .testimonial-card { padding: 30px 20px; }
  .about-statistics-section .stat-number { font-size: 1.8rem; }
  .about-statistics-section .stat-suffix { font-size: 1.3rem; }
  .about-statistics-section .stat-item { padding: 24px 16px; }
  .about-cta-section { padding: 50px 0; }
}
