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

body {
    font-family: 'DM Sans', sans-serif;
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

body.loading {
    overflow: hidden;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #181937;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-container {
    text-align: center;
}

.loader-svg {
    width: 120px;
    height: auto;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: 'Special Gothic Expanded One', sans-serif;
}

/* Overlay to improve text readability */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}






.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 40px 8%;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.main-logo {
    max-width: 390px;
    width: 100%;
    height: auto;
    display: block;
}

.hero-section {
    position: relative;
    z-index: 10;
    height: 90vh;
    display: flex;
    align-items: center;
    padding: 80px 8% 0 8%;
    background: url('../images/home-sec-banner.png') no-repeat center center/cover;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-text-area {
    flex: 1;
    max-width: 700px;
}

.subheading {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #f0f0f0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.main-heading {
    color: #FFF;
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px; /* 106.667% */
    margin-bottom: 45px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 0.5px;
}

.btn i {
    font-size: 14px;
    color: #00BDEB;
}

.btn-icon {
    height: 18px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.btn-primary {
    background-color: #ffffff;
    color: #1a1a24;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
}

.btn-outline i {
    color: #00BDEB;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: #ffffff;
}

.hero-form-area {
    flex-shrink: 0;
    width: 100%;
    max-width: 480px;
    transform: translateY(-50px);
}

.enquiry-card {
    background: rgba(24, 25, 55, 0.95);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.enquiry-card h2 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: #434458; /* Lighter indigo */
    border: none;
    padding: 18px 20px;
    border-radius: 6px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: background-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid rgba(255, 255, 255, 0.3);
    background-color: #4a4b62;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0b0b8;
}

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

.btn-submit,
.btn-light {
    width: 100%;
    background-color: #ffffff;
    color: #1f1f33;
    border: none;
    margin-top: 10px;
    cursor: pointer;
    font-size: 15px;
    padding: 20px;
}

.btn-submit:hover,
.btn-light:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.floating-cta {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 100;
    width: 65px;
    height: 130px;
    background-color: #ffffff;
    border-radius: 33px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.cta-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 21px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.cta-btn.whatsapp {
    background-color: #25D366;
}

.cta-btn.phone {
    background-color: #3B82F6;
}

.cta-divider {
    width: 28px;
    height: 1px;
    background-color: rgba(36, 36, 36, 0.1);
}

/* Returns Section */
.returns-section {
    background: url('../images/2nd-bg.png') no-repeat bottom center/cover;
    background-color: #f4f8fb; /* Light sky blue to blend with the image sky */
    padding-top: 100px;
    padding-bottom: 40vw; /* Responsive padding to show the house image */
    color: #1a1a24;
    position: relative;
    z-index: 20;
}

.returns-container {
    width: 100%;
    padding: 0 8%;
}

.returns-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.returns-heading {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.returns-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 450px;
    text-align: left;
}

.stats-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 30px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: left;
    flex: 1;
    padding: 0 20px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background-color: #ebebeb;
}

.stat-value {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 6px;
}

.stat-value .highlight {
    color: #00BDEB;
    font-family: "Special Gothic Expanded One", sans-serif;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: 55px;
}

.stat-value .unit {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
}

.stat-label {
    font-size: 13px;
    color: #777;
    font-weight: 500;
}

.returns-action {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.btn-dark {
    background-color: #181937; /* Dark navy from design */
    color: #ffffff;
    border: none;
    padding: 18px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.btn-dark:hover {
    background-color: #111226; 
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(24, 25, 55, 0.3);
}


/* Master Plan Section */
.master-plan-section {
    background-color: #ffffff;
    padding: 50px 8% 100px 8%;
    position: relative;
    z-index: 20;
}

.master-plan-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    width: 100%;
}

.master-plan-content {
    flex: 0 0 35%; /* Takes about 35% of the space */
}

.master-plan-heading {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    margin-bottom: 25px;
}

.master-plan-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-download {
    border-radius: 6px;
    padding: 16px 32px;
}

.master-plan-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.master-plan-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Magnifier Lens Effect */
.img-magnifier-container {
    position: relative;
    cursor: crosshair;
}

.img-magnifier-glass {
    position: absolute;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 160px; /* Reduced lens size */
    height: 160px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    pointer-events: none;
    z-index: 100;
}


/* Master Plan Details */
.master-plan-details {
    background-color: #ffffff;
    padding: 0 8% 100px 8%;
}

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

.details-list-card {
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 40px;
    background-color: #ffffff;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.details-list li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #444;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.details-list li:last-child {
    margin-bottom: 0;
}

.list-num {
    color: #00B4D8;
    font-weight: 600;
    min-width: 35px;
    display: inline-block;
}

.details-image-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: url('../images/top-view.png') no-repeat center center/cover;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    color: #ffffff;
}

.image-card-content {
    position: relative;
    z-index: 2;
}

.image-card-content h3 {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: lowercase;
}

.image-card-content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.location-badge {
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 10px 18px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    align-self: flex-start;
}

.location-badge i {
    color: #e52528;
}

/* Parallax Section */
.parallax-section {
    height: 60vh;
    min-height: 700px;
    background: url('../images/skye-02.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
}

/* Villa Typologies Section */
.villa-typologies-section {
    padding: 100px 8%;
    background: url('../images/villa-type-bg.png') no-repeat top right;
    background-size: auto; /* Natural size, positioned top-right */
    background-color: #ffffff;
}

.villa-container {
    width: 100%;
    margin: 0 auto;
}

.villa-heading {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.villa-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 40px;
}

.villa-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: 1px solid #ddd;
    background: #fff;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.tab-btn.active {
    background-color: #181937;
    color: #fff;
    border-color: #181937;
}

.villa-gallery-container {
    width: 80%;
    margin: 0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.gallery-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.gallery-layout {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.main-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    height: 500px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.thumbnail-wrapper {
    width: 120px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.thumbnails {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 440px;
    overflow-y: hidden;
}

.thumb {
    width: 100%;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb.active {
    border-color: #00B4D8;
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.3);
}

.gallery-nav {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: #f0f0f0;
}

.villa-actions {
    display: flex;
    gap: 20px;
}

.btn-outline-dark {
    padding: 18px 36px;
    border: 1px solid #ddd;
    background: #fff;
    color: #1a1a1a;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.btn-outline-dark:hover {
    border-color: #181937;
}

/* Amenities Section */
.amenities-section {
    padding: 100px 8%;
    background: url('../images/amenities-bg.png') no-repeat center center/cover;
    position: relative;
    text-align: center;
}

.amenities-container {
    width: 100%;
    margin: 0 auto;
}

.amenities-heading {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
    font-family: 'Special Gothic Expanded One', sans-serif;
}

.amenities-glass-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.amenity-item {
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.amenity-item:nth-child(6n) {
    border-right: none;
}

.amenity-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.amenity-item i {
    font-size: 32px;
    color: #fff;
}

.amenity-item span {
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-align: center;
    line-height: 1.4;
}

/* Endorsement Section */
.endorsement-section {
    background-color: #181937;
    overflow: hidden;
    padding-left: 8%; /* Match other sections' left alignment */
}

.endorsement-container {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.endorsement-content {
    flex: 1;
    padding: 100px 5% 100px 0; /* Remove horizontal padding, only keep right gap */
}


.endorsement-heading {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 30px;
}

.endorsement-text {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0.8;
}

.endorsement-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Right aligned */
    text-align: right;
    margin-top: 20px;
}

.signature-img {
    max-width: 280px;
    height: auto;
    display: block;
}


.endorsement-image {
    flex: 1;
}

.endorsement-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Luxury Asset Section */
.luxury-asset-section {
    padding: 110px 8% 60px 8%;
    background: url('../images/luxury-asset-bg.png') no-repeat top center/cover;
    min-height: 1000px;
    display: flex;
    align-items: flex-start;
}

.luxury-asset-container {
    width: 100%;
}

.luxury-asset-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    width: 100%;
}

.luxury-asset-text {
    flex: 0 0 45%;
}

.luxury-asset-heading {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
}

.luxury-asset-description {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 45px;
    opacity: 0.8;
}

.luxury-info-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px 10px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 950px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1;
    padding: 0 45px;
    position: relative;
}

.info-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70px;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
    display: block;
}

.info-item h4 {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    color: #00BDEB;
    margin-bottom: 0;
}

.info-item p {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    color: #242424;
}

/* Location Section */
.location-section {
    padding: 100px 8%;
    background-color: #fff;
    text-align: center;
}

.location-container {
    width: 100%;
}

.location-heading {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 60px;
}

.location-grid {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.connectivity-card {
    flex: 1;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.connectivity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid #eee;
}

.connectivity-item:last-child {
    border-bottom: none;
}

.conn-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.conn-info i {
    font-size: 20px;
    color: #00BDEB;
}

.conn-info span {
    font-size: 18px;
    font-weight: 700;
    color: #181937;
}

.conn-time {
    background: #f0f4f8;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #181937;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.time-icon {
    height: 14px;
    width: auto;
    display: inline-block;
}

.location-map {
    flex: 1.2;
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Enquiry Footer Section */
.enquiry-footer-section {
    position: relative;
    padding: 100px 8%;
    background: url('../images/CTA-bg.png') no-repeat center center/cover;
    background-attachment: fixed;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.enquiry-footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.enquiry-footer-container {
    width: 100%;
    position: relative;
    z-index: 2;
}

.enquiry-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.footer-info {
    flex: 1;
}

.footer-logo {
    width: 150px;
    margin-bottom: 40px;
}

.footer-heading {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
}

.footer-text {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.contact-item i {
    color: #00BDEB;
    font-size: 20px;
}

.contact-icon {
    height: 22px;
    width: auto;
    display: inline-block;
}

.footer-enquiry-card {
    flex: 0 0 450px;
    background: #181937;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
}

.footer-enquiry-card h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 800;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-form input, 
.footer-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
}

.footer-form input::placeholder, 
.footer-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Main Footer */
.main-footer {
    position: relative;
    height: 900px;
    background-color: #7ba4e3;
    overflow: hidden;
}

.footer-parallax-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.footer-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: transform 0.1s ease-out;
}

.layer-bg {
    background: url('../images/footer-bg.png') no-repeat center center/cover;
    z-index: 1;
}

.layer-cloud-1 {
    z-index: 2;
    top: 15%;
    left: -15%;
    width: 40%;
}

.layer-cloud-2 {
    z-index: 2;
    top: 25%;
    right: -15%;
    width: 40%;
}

.layer-cloud-1 img, .layer-cloud-2 img {
    width: 100%;
    opacity: 0.8;
}

.footer-main-content {
    position: relative;
    z-index: 5;
    padding: 80px 8%;
    color: #fff;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
}

.footer-intent {
    color: #FEFEFE;
    font-family: "Special Gothic Expanded One", sans-serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.footer-rera {
    text-align: right;
    font-size: 14px;
}

.footer-rera strong {
    font-size: 18px;
    display: block;
    margin: 5px 0;
}

.footer-rera span {
    opacity: 0.8;
}

.footer-center-area {
    margin-top: 100px;
    text-align: center;
}

.legacy-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-big-logo {
    width: 42%;
    max-width: 800px;
}

.layer-elevation {
    z-index: 10;
    bottom: 0;
    top: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
}

.layer-elevation img {
    width: 110vw;
    margin-left: -2vw;
    max-width: none;
    display: block;
    margin-bottom: -50px;
    object-fit: cover;
}

.footer-bottom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
    z-index: 12;
    pointer-events: none;
}

.footer-bottom-copyright {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    color: #fff;
    z-index: 15;
    font-size: 14px;
    opacity: 0.9;
}

.footer-bottom-copyright a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.3s;
}

.footer-bottom-copyright a:hover {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .main-heading {
        font-size: 50px;
    }
    
    .enquiry-card {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 30px 5%;
    }

    .hero-section {
        padding: 20px 5% 60px 5%;
    }

    .hero-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 50px;
    }

    .hero-text-area {
        max-width: 100%;
    }

    .hero-form-area {
        margin-top: 0;
        transform: translateY(0);
    }

    .background-overlay {
        background: rgba(0,0,0,0.5); /* uniform overlay for mobile */
    }

    .cta-buttons {
        justify-content: center;
    }

    .logo {
        justify-content: center;
    }

    .returns-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .master-plan-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .master-plan-section {
        padding: 40px 5%;
    }

    .master-plan-content {
        flex: 1;
        width: 100%;
        margin-bottom: 20px;
    }

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

    .parallax-section {
        background-attachment: scroll;
        height: 40vh;
    }

    .villa-typologies-section {
        padding: 60px 5%;
        background-size: 300px; /* Smaller watermark for mobile */
    }

    .gallery-layout {
        flex-direction: column;
    }
    
    .thumbnail-wrapper {
        width: 100%;
        flex-direction: column;
    }
    
    .thumbnails {
        flex-direction: row;
        height: auto;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .thumb {
        width: 100px;
        height: 70px;
        flex-shrink: 0;
    }
    
    .main-image {
        height: 300px;
    }

    .villa-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .villa-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .villa-gallery-container {
        width: 100%;
    }

    .amenities-glass-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .amenity-item:nth-child(6n) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .amenity-item:nth-child(3n) {
        border-right: none;
    }

    .amenities-heading {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .amenity-item {
        padding: 30px 10px;
    }

    .endorsement-section {
        padding-left: 0;
    }

    .endorsement-container {
        flex-direction: column;
    }

    .endorsement-content {
        padding: 60px 5%;
        text-align: center;
    }

    .endorsement-footer {
        align-items: center;
    }

    .endorsement-heading {
        font-size: 32px;
    }

    .endorsement-text br {
        display: none;
    }

    .luxury-asset-section {
        padding: 60px 5%;
        min-height: auto;
    }

    .luxury-asset-header {
        flex-direction: column;
        gap: 40px;
    }

    .luxury-asset-heading {
        font-size: 32px;
    }

    .luxury-asset-description br {
        display: none;
    }

    .luxury-info-card {
        flex-direction: column;
        padding: 30px;
        gap: 25px;
    }

    .location-grid {
        flex-direction: column;
        gap: 30px;
    }

    .connectivity-card {
        padding: 10px 20px;
    }

    .conn-info span {
        font-size: 15px;
    }

    .location-heading {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .location-map img {
        height: auto;
    }

    .enquiry-footer-section {
        padding: 60px 5%;
        min-height: auto;
    }

    .enquiry-footer-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .footer-logo {
        width: 120px;
        margin: 0 auto 30px auto;
    }

    .footer-heading {
        font-size: 32px;
    }

    .footer-text br {
        display: none;
    }

    .footer-contact-info {
        align-items: center;
    }

    .footer-enquiry-card {
        width: 100%;
        flex: none;
        padding: 30px 20px;
    }

    .stats-card {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        padding: 30px;
    }

    .stat-item {
        flex: 1 1 30%;
        text-align: center;
    }

    .stat-divider {
        display: none;
    }

    .stat-value {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 40px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 110px;
    }
    .cta-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .returns-heading {
        font-size: 36px;
    }

    .stat-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .main-logo {
        max-width: 280px;
    }
    
    .main-heading {
        font-size: 32px;
    }
}
