/* CSS Variables & Reset */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f7f7f7;
    --accent-color: #c5a47e;
    /* Gold/Beige for premium feel */
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --font-main: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header & Nav */
.main-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

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

.logo-img {
    height: 45px;
    /* Adjust height as needed */
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 60px;
    /* Footer logo can be slightly larger */
    width: auto;
    display: block;
    margin-bottom: 20px;
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 180px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.dropdown-menu li a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-contact {
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
}

.btn-contact:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    padding: 20px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.close-menu {
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav-list li {
    margin-bottom: 20px;
}

.mobile-nav-list a {
    font-size: 1.1rem;
    font-weight: 600;
}

.mobile-dropdown-menu {
    margin-top: 10px;
    padding-left: 20px;
    display: none;
    /* JS will toggle */
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.hero-content {
    width: 50%;
    z-index: 2;
    padding-right: 20px;
}

.hero-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 450px;
}

/* Hero Shapes/Decorations */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 164, 126, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    left: -100px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background-color: #ffd700;
    /* Subtle gold dot */
    opacity: 0.05;
    bottom: 50px;
    left: 40%;
}

.floating-image-container {
    flex: 1;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Push card to the right */
    z-index: 2;
    position: relative;
    /* Reset from absolute */
    right: auto;
    top: auto;
    transform: none;
}

.floating-card {
    width: 80%;
    height: 80%;
    background-color: #333;
    /* Placeholder for image */
    background-image: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    /* Luxury hotel stock image */
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    /* Specific shape */
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Overlay content on image */
.card-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 25px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.card-content h3 {
    font-size: 1rem;
    font-weight: 700;
}

.card-content p {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Responsiveness */
@media (max-width: 992px) {
    .nav-list {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero-content {
        width: 100%;
        margin-bottom: 60px;
        padding-right: 0;
        z-index: 3;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-buttons .btn {
        margin-left: 0;
        width: 100%;
        max-width: 300px;
    }

    .floating-image-container {
        width: 100%;
        height: 280px;
        flex: none;
        display: flex;
        justify-content: center;
        padding: 0 20px;
        margin-top: 20px;
    }

    .floating-card {
        width: 100%;
        max-width: 450px;
        height: 100%;
    }

    .hero-description {
        margin: 0 auto 35px;
    }

    .hero-shape-1 {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* --- New Sections Styling --- */

/* Utilities */
.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--secondary-color);
}

.full-width {
    width: 100%;
}

/* Properties Grid */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.property-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-width: 400px;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.property-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.location-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property-details {
    padding: 25px;
}

.property-details h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.property-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.property-features {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--text-color);
}

.property-features i {
    color: var(--accent-color);
    margin-right: 5px;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
}

.btn-text {
    font-weight: 600;
    color: var(--accent-color);
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--primary-color);
    padding-right: 5px;
}

/* Partner Section */
.partner-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.partner-content,
.partner-image {
    flex: 1;
}

.section-subtitle {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.partner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.partner-content p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.partner-features {
    margin-bottom: 40px;
}

.partner-features li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    font-weight: 500;
}

.partner-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 0 var(--accent-color);
    /* Decorative offset border */
}

.image-wrapper img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-item p {
    color: var(--text-light);
}

.contact-form {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fafafa;
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition);
}

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

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    flex: 2;
    max-width: 350px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    color: #999;
    font-size: 0.9rem;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

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

.footer-links ul li a {
    color: #999;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

/* Mobile Adjustments for New Sections */
@media (max-width: 768px) {
    .partner-container {
        flex-direction: column;
    }

    .image-wrapper {
        box-shadow: 10px 10px 0 var(--accent-color);
    }

    .contact-wrapper {
        flex-direction: column;
        padding: 30px;
    }

    .footer-top {
        flex-direction: column;
    }
}

/* About Us Section - Custom Layout */
.about-section {
    padding: 120px 0;
    background-color: var(--primary-color);
    /* Dark background for contrast */
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Optional: Add a subtle texture or gradient overlay to make it less flat */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

/* =========================================
   New About Us Styles
   ========================================= */

/* About Grid Layout for Homepage */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "label heading"
        "text image";
    gap: 40px 60px;
    align-items: start;
}

.about-label {
    grid-area: label;
}

.about-heading-area {
    grid-area: heading;
}

.about-text-area {
    grid-area: text;
}

.about-image-area {
    grid-area: image;
}

.about-img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-tag {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--white);
    margin: 0;
}

.about-lead {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.about-body {
    color: #cccccc;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    color: #cccccc;
}

.about-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.about-closing {
    font-style: italic;
    color: var(--white);
    font-weight: 500;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "label"
            "heading"
            "text"
            "image";
        gap: 30px;
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Contrasting Backgrounds */
.bg-cream {
    background-color: #F9F7F2;
    /* Warm cream/off-white */
    color: var(--primary-color);
}

.bg-dark-contrast {
    background-color: #111;
    color: var(--white);
}

/* Marquee Section */
.marquee-section {
    padding: 80px 0;
    background-color: #000;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: marquee 40s linear infinite;
    gap: 30px;
}

.marquee-item {
    width: 400px;
    height: 300px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.marquee-item:hover img {
    transform: scale(1.05);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-400px * 5 - 150px));
        /* Adjust based on item count + gap */
    }
}

/* About Intro Refinements */
.about-intro {
    padding: 120px 0 80px;
    background-color: var(--white);
}

.intro-heading {
    font-size: 3rem;
    font-weight: 500;
    /* Increased weight for readability */
    color: #000000;
    margin: 20px 0 40px;
    line-height: 1.3;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-color);
    margin-bottom: 20px;
}

/* Philosophy Section Split */
.philosophy-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.philosophy-content {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-image {
    background-image: url('https://images.unsplash.com/photo-1598928506311-c55ded91a20c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    min-height: 600px;
}

blockquote.stylish-quote {
    font-size: 1.8rem;
    font-family: serif;
    /* Use a distinct font if available, or fallback */
    font-style: italic;
    color: var(--primary-color);
    border-left: 3px solid var(--accent-color);
    padding-left: 30px;
    margin: 40px 0;
}

/* Responsive Edits */
@media (max-width: 992px) {
    .philosophy-split {
        grid-template-columns: 1fr;
    }

    .philosophy-image {
        min-height: 400px;
    }

    .intro-heading {
        font-size: 2.5rem;
    }
}



/* 2. Top Right: Heading */
.about-heading-area {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.about-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: var(--white);
    /* White title */
    margin-bottom: 20px;
}

/* 3. Bottom Left: Body Text */
.about-text-area {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.about-body p {
    font-size: 1.05rem;
    color: #cccccc;
    /* Light gray for readability */
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-emphasis {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 20px 0;
}

.about-closing {
    font-style: italic;
    color: var(--white);
    font-weight: 500;
    margin-top: 30px;
    display: block;
}

/* 4. Bottom Right: Image */
.about-image-area {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.about-img-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    /* Stronger shadow for dark mode */
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    opacity: 0.9;
    /* Slight dim to blend better */
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* Responsive Adjustments for About */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-label,
    .about-heading-area,
    .about-text-area,
    .about-image-area {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-image-area {
        order: 4;
        /* Ensure image is last or adjust as needed */
        min-height: 300px;
    }
}

/* =========================================
   Property Detail Page Styles
   ========================================= */

.property-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 20px;
}

.location-tag {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.property-title {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.property-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery */
.property-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    margin-bottom: 60px;
    height: 500px;
}

.gallery-main,
.gallery-grid {
    height: 100%;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: calc(50% - 7.5px);
    object-fit: cover;
    border-radius: 10px;
}

/* Content Grid (Info + Sidebar) */
.property-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.property-info-main h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.property-info-main p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

/* Amenities */
.amenities-list {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.amenities-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.amenities-list li {
    font-size: 1rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.amenities-list li i {
    color: var(--accent-color);
    width: 20px;
}

/* Sidebar Booking Card */
.property-sidebar {
    position: sticky;
    top: 100px;
}

.booking-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.price-area {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-period {
    color: #777;
    font-size: 1rem;
}

.booking-details {
    margin-bottom: 30px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.95rem;
}

.detail-row span:last-child {
    font-weight: 600;
    color: var(--secondary-color);
}

.booking-note {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    margin-top: 15px;
}

/* Responsive Property Detail */
@media (max-width: 992px) {
    .property-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .property-gallery {
        height: auto;
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        display: none;
        /* Hide extra images on mobile for simplicity or convert to slider later */
    }

    .gallery-main {
        height: 300px;
    }

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

/* =========================================
   New About Us Page Styles
   ========================================= */

/* Intro */
.about-intro {
    padding: 100px 0 80px;
    background: #fdfdfd;
}

/* Intro heading override removed - using main definition */

.intro-body {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.highlight-text {
    font-size: 1.4rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
}

/* Philosophy */
.about-philosophy {
    background-color: white;
    padding: 80px 0;
}

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

.philosophy-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.philosophy-header p {
    font-size: 1.2rem;
    color: #666;
}

.philosophy-points {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 20px;
    /* Rounded corners */
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
}

.philosophy-card h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.philosophy-card ul {
    list-style: none;
    padding: 0;
}

.philosophy-card li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    color: #444;
}

.philosophy-card li::before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.philosophy-quote {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 40px;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--secondary-color);
    font-weight: 600;
}

.philosophy-quote p {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 15px;
    font-style: normal;
    color: var(--text-color);
}

/* What We Do */
.about-services {
    padding: 100px 0;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.service-card p {
    color: #ddd;
    line-height: 1.6;
}

/* Approach */
.about-approach {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.approach-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.approach-list {
    list-style: none;
    padding: 0;
}

.approach-list li {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
    color: #333;
}

.approach-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Closing */
.about-closing-section {
    padding: 80px 0;
    background: #f4f4f4;
}

.closing-statement {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Responsive About */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }

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

    .approach-wrapper {
        flex-direction: column;
    }

    .intro-heading {
        font-size: 2rem;
    }
}

/* =========================================
   Animations & "Alive" Feel
   ========================================= */

/* Base Reveal Class */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays for Grids */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* Flip Up Effect (for text) */
.flip-up {
    display: inline-block;
    opacity: 0;
    transform: rotateX(45deg) translateY(20px);
    transform-origin: top;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.flip-up.active {
    opacity: 1;
    transform: rotateX(0deg) translateY(0);
}

/* Scroller / Marquee Effect */
.scroller-container {
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
    position: relative;
    background: var(--primary-color);
}

.scroller-content {
    display: inline-block;
    animation: scrollText 30s linear infinite;
}

.scroller-item {
    display: inline-block;
    font-size: 3rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    margin-right: 50px;
    text-transform: uppercase;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Enhancing Hover Effects */
.service-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    z-index: -1;
    transition: width 0.4s ease;
}

.service-card:hover::after {
    width: 100%;
}

.philosophy-points {
    border-left: 3px solid var(--accent-color);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.philosophy-points:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

/* Founder Section */
.founder-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 50px 0;
}

.founder-content {
    flex: 1;
}

.founder-bio {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.linkedin-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 2px;
}

.linkedin-link:hover {
    color: var(--accent-color);
}

.founder-image-wrapper {
    flex: 1;
    position: relative;
}

.founder-img {
    width: 300px;
    /* Fixed size for a perfect circle */
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    /* Subtle sepia or warm filter to match the vibe */
    filter: brightness(1.05) contrast(1.05);
    box-shadow: 15px 15px 0 var(--bg-cream, #F9F7F2);
    display: block;
    margin: 0 auto;
    /* Center in the wrapper */
}

@media (max-width: 900px) {
    .founder-wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .founder-img {
        box-shadow: 10px 10px 0 var(--bg-cream, #F9F7F2);
    }
}

/* Partner Page Hero */
.partner-hero {
    position: relative;
    padding: 160px 0;
    /* High-quality villa image - Verified URL */
    background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-color: #333;
    /* Fallback */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
}

/* Dark overlay to ensure text readability */
.partner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay for depth */
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.partner-hero .container {
    position: relative;
    z-index: 2;
}

.partner-hero .intro-heading {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    /* Embossed Text Effect: Shadow below + slight highlight above (subtle) */
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.4);
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.partner-hero p {
    color: #f4f4f4;
    font-size: 1.3rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Property Detail Pages Styling */
.property-header {
    text-align: center;
    margin-bottom: 50px;
}

.location-tag {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.property-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.property-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Property Gallery */
.property-gallery {
    margin-bottom: 60px;
}

.gallery-main {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

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

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

/* Property Content Grid */
.property-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.property-info-main h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.property-info-main p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Amenities List */
.amenities-list {
    margin-top: 40px;
}

.amenities-list h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.amenities-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.amenities-list li {
    color: var(--text-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.amenities-list i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Booking Card Sidebar */
.property-sidebar {
    position: sticky;
    top: 100px;
}

.booking-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.price-area {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.booking-details {
    margin-bottom: 25px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-color);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span:first-child {
    color: var(--text-light);
    font-weight: 500;
}

.detail-row span:last-child {
    color: var(--primary-color);
    font-weight: 600;
}

.booking-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .property-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .property-sidebar {
        position: static;
    }

    .property-title {
        font-size: 2.2rem;
    }

    .gallery-main img {
        height: 350px;
    }

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

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

@media (max-width: 768px) {
    .property-title {
        font-size: 1.8rem;
    }

    .property-subtitle {
        font-size: 1rem;
    }

    .gallery-main img {
        height: 250px;
    }

    .gallery-grid img {
        height: 200px;
    }
}

/* What We Do Section */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pillar-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.pillar-number {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(197, 164, 126, 0.07);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    pointer-events: none;
}

.pillar-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.pillar-subtitle {
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pillar-copy {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.pillar-list {
    margin-bottom: 30px;
    padding-left: 0;
    list-style: none;
    flex-grow: 1;
}

.pillar-list li {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    font-weight: 500;
}

.pillar-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.pillar-essence {
    padding-top: 25px;
    border-top: 1px solid #f5f5f5;
    margin-top: auto;
}

.pillar-essence strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.pillar-essence p {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.5;
    font-style: italic;
}

@media (max-width: 992px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pillar-card {
        padding: 50px 30px;
    }
}