/* ===== GLOBAL RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.7;
    background: #fff;
}

/* ===== CONTAINER ===== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.max-width-600 {
    max-width: 600px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleInSmall {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-stagger-1 {
    animation: fadeInUp 0.8s ease-out 0.1s forwards;
    opacity: 0;
}

.fade-in-stagger-2 {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.fade-in-stagger-3 {
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

.fade-in-stagger-4 {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #000;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.slider-item {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.slider-item.active {
    opacity: 1;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.slider-control:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slider-control.prev {
    left: 30px;
}

.slider-control.next {
    right: 30px;
}

/* ===== OVERVIEW SECTION ===== */
.section-container {
    margin: 60px auto;
}

.overview-wrapper {
  display: flex;
  align-items: center;
  gap: 70px;
}

/* LEFT IMAGE */
.overview-left {
  flex: 1;
}

.overview-left img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* RIGHT CONTENT */
.overview-right {
  flex: 1;
}

/* TAG */
.overview-tag {
  color: #c14b2f;
  font-size: 14px;
  margin-bottom: 10px;
  display: inline-block;
}

/* TITLE */
.overview-title {
  font-size: 42px;
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
}

/* TEXT */
.overview-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* ===== STATS EXACT LIKE DESIGN ===== */
.stats-box {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  row-gap: 30px;
  column-gap: 20px;
  align-items: center;
}

/* STAT */
.stat {
  text-align: center;
}

.stat h3 {
  font-size: 48px;
  font-weight: 600;
}

.stat p {
  font-size: 14px;
  color: #666;
}

/* DIVIDER */
.divider {
  width: 1px;
  height: 40px;
  background: #ccc;
  justify-self: center;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  .overview-wrapper {
    flex-direction: column;
  }

  .overview-title {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 480px) {

  .overview-title {
    font-size: 26px;
  }

  .stat h3 {
    font-size: 30px;
  }

  .stats-box {
    grid-template-columns: 1fr;
  }

  .divider {
    display: none;
  }
}

/* ===== PILLARS SECTION ===== */
.pillars-section {
    padding: 15px 0;
    background: #fff;
    border-top: 1px solid #d4d8dc;
}

.section-heading {
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 70px;
    letter-spacing: 1.2px;
    color: #000;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.pillar-item {
    text-align: center;
}

.pillar-image {
    margin-bottom: 35px;
    padding-left: 75px;
}

.pillar-image img {
    width: 100%;
    max-width: 175px;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.pillar-item:hover .pillar-image img {
    transform: scale(1.05);
}

.pillar-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.pillar-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* ===== AMENITIES SECTIONS ===== */

.section-heading-curated {
    font-size: 48px;
    font-weight: 300;
    text-align: center !important;
    margin-bottom: 20px;
    letter-spacing: 1.2px;
    color: #000;
}

.amenities-section {
    padding: 80px 0;
}

.amenities-section-1 {
    background: #F7EEE6;
}

.amenities-section-2 {
    background: #fafafa;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.amenities-grid-3col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.amenity-card {
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.amenity-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.amenity-card:hover .amenity-image img {
    transform: scale(1.08);
}

.amenity-body {
    padding: 35px 30px;
}

.amenity-body h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.amenity-highlight {
    font-size: 14px;
    color: #999;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.amenity-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.amenity-link {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.amenity-link:hover {
    color: #777;
}

.amenity-card-lg .amenity-body {
    padding: 25px;
}

.amenity-card-lg .amenity-image {
    height: 200px;
}

/* ===== LOCATION SECTION ===== */

.section-heading-location {
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1.2px;
    color: #fff;
}

.location-section {
    padding: 40px 0;
    background: #BF4423;
}

.location-header {
    text-align: center;
    margin-bottom: 60px;
}

.location-header h3 {
    font-size: 38px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #fff;
}

.location-header p {
    font-size: 17px;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.location-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 70px;
}

.location-img {
    width: 100%;
    height: auto;
    border-radius: 3px;
    object-fit: contain;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
}

.feature-item {
    text-align: center;
    padding: 35px 25px;
    border-radius: 3px;
    transition: all 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item img {
    width: 100%;
    height: 70px;
    object-fit: contain;
    margin-bottom: 25px;
}

.feature-item p {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    line-height: 1.7;
    text-align: center;
}

/* ===== LAYOUTS SECTION ===== */

.section-heading-layout {
   font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1.2px;
    color: #000;    
}

.layouts-section {
    padding: 20px 0;
    background: #fafafa;
}

.master-plan-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.master-plan-image {
    width: 100%;
}

.master-plan-image img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.master-plan-content h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #000;
}

.master-plan-content ul {
    list-style: none;
}

.master-plan-content li {
    font-size: 16px;
    color: #666;
    margin-bottom: 18px;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
}

.master-plan-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 700;
    font-size: 18px;
}

.unit-layout-container {
    padding: 30px;
    border-radius: 3px;
    text-align: center;
}

.unit-layout-container h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #000;
}

.unit-layout-container > p {
    font-size: 17px;
    color: #666;
    margin-bottom: 50px;
}

.floor-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 95px;
}

.floor-plan-item {
    text-align: center;
}

.floor-plan-item img {
    width: 100%;
    height: 100%;
    border-radius: 3px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.floor-plan-item:hover img {
    transform: scale(1.03);
}

.floor-plan-item p {
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

button.btn.btn-primary.requestdetails {
    background: #BF4423;
    border: 1px solid #BF4423;
    width: 19%;
    padding: 12px;
    font-size: 15px;
    border-radius: 10px;
}

/* ===== TRUST SECTION ===== */

.section-heading-trust{
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1.2px;
    color: #000;
    margin-top: -65px;
}

.trust-section {
    padding: 80px 0;
    background: #fff;
    border-bottom: 1px solid #E8DCC4;
}

.trust-subtitle {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 60px;
    color: #000;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.trust-image img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.trust-text p {
    font-size: 17px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.9;
}

.trust-text strong {
    font-weight: 700;
    color: #000;
}

.trust-highlight {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-top: 30px !important;
}

/* ===== NEW CONTACT SECTION ===== */
.contact-section-new {
    padding: 0px 0;
    background: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT COLUMN */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* CALLBACK FORM BOX */
.callback-form-box {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 50px 40px;
}

.callback-title {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 35px;
    color: #000;
    font-family: Georgia, serif;
}

.callback-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row .form-col.full {
    grid-column: 1 / -1;
}

.form-col {
    position: relative;
}

.form-col.country-select {
    grid-column: 1 / -1;
    width: 100%;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background: #fafafa;
    font-size: 14px;
    font-family: inherit;
    color: #666;
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background: #fff;
    border-bottom-color: #000;
}

select.form-input {
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8" viewBox="0 0 12 8"><path fill="%23666" d="M1 1l5 5 5-5"/></svg>') no-repeat right 10px center;
    padding-right: 35px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 110px;
    padding: 14px 16px;
}

.btn-callback {
    background: #c84d2a;
    color: #fff;
    padding: 16px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

.btn-callback:hover {
    background: #b83f1f;
}

/* CONTACT INFO BOX */
.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 30px;
    background: #f5f5f5;
    border-radius: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.contact-icon {
    font-size: 20px;
    color: #666;
    width: 25px;
}

.contact-item a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #666;
}

.external-icon {
    margin-left: auto;
    color: #999;
    font-size: 18px;
}

/* CONTACT US BOX */
.contact-us-box {
    text-align: center;
    padding: 35px;
    background: #f5f5f5;
    border-radius: 12px;
}

.contact-us-box img {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin-bottom: 25px;
    border-radius: 8px;
}

.contact-us-box h3 {
    font-size: 28px;
    font-weight: 400;
    color: #000;
    font-family: Georgia, serif;
}

/* RIGHT COLUMN */
.contact-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* FORBES INFO BOX */
.forbes-info-box {
    position: relative;
    background: #f5f5f5;
    padding: 30px;
    border-radius: 12px;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.forbes-info-box p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    text-align: center;
}

.external-icon-top {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    color: #999;
    cursor: pointer;
}

/* FORBES IMAGE */
.forbes-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 12px;
}

.forbes-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* LUXURY IMAGE LARGE */
.luxury-image-large {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
}

.luxury-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.luxury-image-large:hover img {
    transform: scale(1.05);
}

/* ===== RESPONSIVE CONTACT SECTION ===== */

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .callback-form-box {
        padding: 40px 30px;
    }

    .callback-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .luxury-image-large {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-section-new {
        padding: 60px 0;
    }

    .section-container {
        padding: 0 30px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-row .form-col:first-child {
        grid-column: 1;
    }

    .form-row .form-col.country-select {
        grid-column: 1;
    }

    .callback-form-box {
        padding: 30px 25px;
    }

    .callback-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .callback-form {
        gap: 20px;
    }

    .form-input,
    .form-textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .btn-callback {
        padding: 14px 25px;
        font-size: 15px;
    }

    .contact-info-box {
        gap: 20px;
        padding: 25px;
    }

    .contact-item {
        font-size: 15px;
        gap: 12px;
    }

    .contact-us-box {
        padding: 30px;
    }

    .contact-us-box h3 {
        font-size: 24px;
    }

    .forbes-info-box {
        padding: 25px;
        min-height: 120px;
    }

    .forbes-info-box p {
        font-size: 15px;
    }

    .luxury-image-large {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-section-new {
        padding: 40px 0;
    }

    .section-container {
        padding: 0 20px;
    }

    .contact-wrapper {
        gap: 30px;
    }

    .callback-form-box {
        padding: 25px 20px;
        border-radius: 8px;
    }

    .callback-title {
        font-size: 24px;
        margin-bottom: 20px;
        font-family: 'Segoe UI', sans-serif;
    }

    .form-row {
        gap: 0;
    }

    .form-input,
    .form-textarea {
        padding: 11px 12px;
        font-size: 13px;
    }

    .btn-callback {
        padding: 12px 20px;
        font-size: 14px;
    }

    .contact-info-box {
        gap: 18px;
        padding: 20px;
        border-radius: 8px;
    }

    .contact-item {
        font-size: 14px;
        gap: 10px;
    }

    .contact-icon {
        font-size: 18px;
        width: 20px;
    }

    .external-icon {
        font-size: 16px;
    }

    .contact-us-box {
        padding: 25px;
        border-radius: 8px;
    }

    .contact-us-box img {
        max-width: 220px;
        margin-bottom: 20px;
    }

    .contact-us-box h3 {
        font-size: 22px;
    }

    .forbes-info-box {
        padding: 20px;
        min-height: 110px;
        border-radius: 8px;
    }

    .forbes-info-box p {
        font-size: 14px;
        line-height: 1.7;
    }

    .external-icon-top {
        top: 15px;
        right: 15px;
        font-size: 18px;
    }

    .forbes-image {
        border-radius: 8px;
    }

    .luxury-image-large {
        height: 250px;
        border-radius: 12px;
    }
}

/* ===== BUTTONS ===== */
.btn {
    padding: 15px 45px;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover {
    background: #222;
}

.btn-block {
    width: 100%;
    display: block;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .section-container {
        padding: 0 30px;
    }

    .hero-section {
        height: 400px;
    }

    .slider-control {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slider-control.prev {
        left: 15px;
    }

    .slider-control.next {
        right: 15px;
    }

    .overview-section,
    .pillars-section,
    .amenities-section,
    .location-section,
    .layouts-section,
    .trust-section,
    .contact-section {
        padding: 60px 0;
    }

    .header-title {
        font-size: 28px;
    }

    .project-name {
        font-size: 36px;
    }

    .intro-text {
        font-size: 16px;
    }

    .section-heading {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stat-item {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .pillars-grid {
        gap: 40px;
    }

    .pillar-image img {
        max-width: 220px;
    }

    .pillar-title {
        font-size: 22px;
    }

    .amenity-card {
        border-radius: 0;
    }

    .amenity-image {
        height: 250px;
    }

    .amenity-body {
        padding: 25px;
    }

    .master-plan-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .unit-layout-container {
        padding: 40px;
    }

    .trust-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-images {
        gap: 25px;
    }

    .contact-form {
        padding: 35px;
    }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
    .section-container {
        padding: 0 20px;
    }

    .hero-section {
        height: 300px;
    }

    .slider-control {
        width: 35px;
        height: 35px;
        font-size: 16px;
        display: none;
    }

    .overview-section,
    .pillars-section,
    .amenities-section,
    .location-section,
    .layouts-section,
    .trust-section,
    .contact-section {
        padding: 40px 0;
    }

    .overview-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 25px;
    }

    .header-title {
        font-size: 22px;
        letter-spacing: 0.5px;
    }

    .project-name {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .intro-text {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .section-heading {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 14px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pillar-image img {
        max-width: 150px;
    }

    .pillar-title {
        font-size: 20px;
    }

    .pillar-desc {
        font-size: 15px;
    }

    .amenities-grid-3col {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .amenity-image {
        height: 220px;
    }

    .amenity-body {
        padding: 20px;
    }

    .amenity-body h4 {
        font-size: 18px;
    }

    .amenity-text {
        font-size: 14px;
    }

    .location-header h3 {
        font-size: 26px;
    }

    .location-header p {
        font-size: 15px;
    }

    .location-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-features {
        gap: 20px;
    }

    .feature-item {
        padding: 25px 15px;
    }

    .feature-item img {
        width: 50px;
        height: 50px;
    }

    .feature-item p {
        font-size: 14px;
    }

    .master-plan-content h4 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .master-plan-content li {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .unit-layout-container {
        padding: 25px;
    }

    .unit-layout-container h3 {
        font-size: 24px;
    }

    .unit-layout-container > p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .floor-plans-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .floor-plan-item p {
        font-size: 16px;
    }

    .trust-subtitle {
        font-size: 26px;
    }

    .trust-text p {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .trust-highlight {
        font-size: 16px;
    }

    .contact-form {
        padding: 25px;
    }

    .form-input,
    .form-textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .form-group.checkbox label {
        font-size: 13px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 15px;
    }

    .location-header {
        margin-bottom: 40px;
    }

    .amenity-highlight {
        font-size: 13px;
    }
}

.hero-section {
  position: relative;
}

.slider-item {
  position: relative;
}

.slider-item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* TEXT STYLE */
.hero-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
}

/* MAIN HEADING */
.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 1px;
  margin: 0;
}

@media (max-width: 768px) {
  .slider-item img {
    height: 70vh;
  }

  .hero-content {
    left: 6%;
  }

  .hero-content h1 {
    font-size: 36px;
    line-height: 1.2;
  }
}
