/* Updated with enhanced white and navy blue theme */
:root {
    --navy: #0a192f;
    --light-navy: #1d2b4a;
    --accent: #0077b6;
    --dark-accent: #005f8c;
    --white: #ffffff;
    --light-gray: #f5f8fa;
    --medium-gray: #e0e0e0;
    --dark-gray: #333333;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--dark-gray);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    font-weight: 300;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--navy);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--navy);
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.section-title .subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 20px auto 0;
    font-weight: 300;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 22px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--medium-gray);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 5%;
    background: var(--white);
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--navy);
    font-weight: 300;
    margin-left: 8px;
    font-size: 1.6rem;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 35px;
}

.nav-links a {
    color: var(--navy);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.contact-btn {
    background: var(--accent);
    color: var(--white);
    border: 1px solid var(--accent);
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 30px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.2);
}

.contact-btn:hover {
    background: var(--dark-accent);
    color: var(--white);
    box-shadow: 0 0 20px rgba(0, 119, 182, 0.5);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 27px;
    height: 3px;
    background-color: var(--navy);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--light-gray);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 30px;
}

.hero h1 {
    font-size: 4.2rem;
    margin-bottom: 25px;
    line-height: 1.15;
    letter-spacing: 1px;
    animation: fadeInUp 1.2s ease-out;
    color: var(--navy);
}

.hero h1 span {
    color: var(--accent);
    display: block;
    font-weight: 800;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--dark-gray);
    animation: fadeInUp 1.4s ease-out;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 119, 182, 0.4);
    animation: fadeIn 1.6s ease-out;
    border: 2px solid var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--accent);
    box-shadow: 0 0 30px rgba(0, 119, 182, 0.8);
    transform: translateY(-5px);
}

/* Showcase Section */
.showcase {
    padding: 100px 0;
    background-color: var(--white);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-item {
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    background: var(--light-gray);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 25px rgba(10, 25, 47, 0.1);
}

.image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-item img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    display: block;
    border-radius: 8px;
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(10, 25, 47, 0.2);
}

/* Highlights Section */
.highlights {
    background-color: var(--light-gray);
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-card {
    background: var(--white);
    border: 1px solid rgba(0, 119, 182, 0.15);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--dark-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
    z-index: -1;
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: rgba(0, 119, 182, 0.3);
}

.highlight-icon {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 25px;
    transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1);
}

.highlight-card h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    color: var(--navy);
}

.highlight-card p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 300;
}

/* Offerings Section */
.offerings {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.offering-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.offering-card {
    background: var(--white);
    border: 2px solid var(--accent);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,119,182,0.05), transparent);
    z-index: 1;
    pointer-events: none;
}

.offering-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 119, 182, 0.15);
}

.offering-header {
    background: linear-gradient(to right, rgba(10,25,47,0.85), rgba(10,25,47,0.7));
    padding: 35px 30px;
    text-align: center;
    border-bottom: 2px solid var(--accent);
}

.offering-header h3 {
    font-size: 1.9rem;
    margin-bottom: 10px;
    color: var(--white);
    letter-spacing: 1px;
}

.offering-header p {
    font-size: 1.1rem;
    color: #ddd;
    font-weight: 300;
}

.offering-details {
    padding: 30px;
}

.offering-details ul {
    list-style: none;
    margin-bottom: 25px;
}

.offering-details ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 119, 182, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 1.05rem;
    color: var(--dark-gray);
}

.offering-details ul li:last-child {
    border-bottom: none;
}

.offering-price {
    text-align: center;
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
    margin: 20px 0;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.benefits-box {
    background: rgba(0, 119, 182, 0.08);
    border: 1px solid rgba(0, 119, 182, 0.15);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.benefits-box h4 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.benefits-list span {
    background: rgba(0, 119, 182, 0.15);
    color: var(--accent);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Amenities Section */
.amenities {
    background-color: var(--light-gray);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.amenity-item {
    text-align: center;
    padding: 40px 25px;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid rgba(0, 119, 182, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.amenity-item:hover {
    background: var(--white);
    transform: translateY(-10px);
    border-color: rgba(0, 119, 182, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.amenity-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 25px;
    transition: var(--transition);
}

.amenity-item:hover .amenity-icon {
    transform: scale(1.2);
}

.amenity-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--navy);
}

.amenity-item p {
    font-size: 1.05rem;
    color: var(--dark-gray);
    font-weight: 300;
}

/* Why Choose Us */
.why-us {
    background: var(--white);
}

.why-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.why-image {
    height: 650px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
    background: var(--light-gray);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    border-radius: 8px;
}

.why-content {
    padding: 30px;
}

.why-content h3 {
    font-size: 2.3rem;
    color: var(--navy);
    margin-bottom: 25px;
    line-height: 1.3;
}

.benefits-list-full {
    list-style: none;
}

.benefits-list-full li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 119, 182, 0.1);
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.benefits-list-full li:last-child {
    border-bottom: none;
}

.benefits-list-full li i {
    color: var(--accent);
    margin-right: 15px;
    font-size: 1.4rem;
    min-width: 30px;
    margin-top: 15px;
}

/* Location Section */
.location {
    background: var(--light-gray);
    position: relative;
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.map-container {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 2px solid rgba(0, 119, 182, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.nearby-places {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 15px;
    border: 1px solid rgba(0, 119, 182, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.nearby-places h3 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.nearby-places h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent);
}

.nearby-list {
    list-style: none;
}

.nearby-list li {
    padding: 15px;
    margin-bottom: 12px;
    background: rgba(0, 119, 182, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: var(--transition);
    border: 1px solid transparent;
    color: var(--dark-gray);
}

.nearby-list li:hover {
    background: rgba(0, 119, 182, 0.1);
    border-color: rgba(0, 119, 182, 0.2);
    transform: translateX(10px);
}

.nearby-list li i {
    color: var(--accent);
    margin-right: 15px;
    font-size: 1.4rem;
    min-width: 30px;
}

/* Footer */
.footer {
    background-color: var(--navy);
    padding: 70px 0 0;
    border-top: 1px solid rgba(0, 119, 182, 0.1);
    position: relative;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.05rem;
    display: inline-block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    font-size: 1.05rem;
    color: #ddd;
}

.contact-info i {
    color: var(--accent);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1.3rem;
    min-width: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 119, 182, 0.1);
    color: var(--white);
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.3);
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #999;
    font-size: 1rem;
    margin-bottom: 15px;
}

.rera-disclaimer {
    background: rgba(0, 119, 182, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto 0;
    text-align: center;
    color: var(--accent);
    font-weight: 500;
    max-width: 800px;
    font-size: 1.1rem;
    border: 1px solid rgba(0, 119, 182, 0.2);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(40px);
    }
    to { 
        opacity: 1; 
        transform: translateY(0);
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-accent);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.8rem;
    }
    
    .why-container,
    .location-container {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 400px;
    }
    
    .why-image {
        height: 550px;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        width: 280px;
        height: calc(100vh - 80px);
        text-align: center;
        transition: var(--transition);
        border-top: 1px solid rgba(0, 119, 182, 0.2);
        padding-top: 40px;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 25px 0;
    }
    
    .hamburger {
        display: block;
        z-index: 1000;
    }
    
    .hamburger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active .line2 {
        opacity: 0;
    }
    
    .hamburger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .contact-btn {
        margin-left: 0;
        margin-top: 20px;
    }
    
    .why-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 700px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .why-content h3 {
        font-size: 2rem;
    }
    
    .why-image {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.9rem;
    }
    
    .section-title .subtitle {
        font-size: 1rem;
    }
    
    .offering-cards,
    .why-container {
        grid-template-columns: 1fr;
    }
    
    .why-image {
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
}

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

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}