:root {
    --primary-color: #eca400; /* Updated Primary Color */
    --secondary-color: #000000; /* Black */
    --accent-color: #ffffff; /* White */
    --text-color: #ffffff; /* White */
    --bg-color: #000000; /* Black Background */
    --light-bg: #323030; /* Very Dark Grey for sections */
    --card-bg: #111111; /* Dark card background */
    --header-height: 70px;
    --container-width: 1200px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

p{ margin-bottom:5px;
font-size:16px;
line-height:26px;

}
strong{color:#990000}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

/* Header */
header {
    background-color: #970707;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: none;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-left: 20px;
    background: linear-gradient(90deg, #ffcf6b, var(--primary-color), #ff8c00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 20px;
    margin-right: auto; /* Push to left near logo or center? Screenshot shows center-right */
    margin-left: 50px;
}

.nav-link {
    font-weight: 600;
    color: #ffffff;
    padding: 5px 10px;
    text-transform:capitalize;
	font-size:18px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* Header CTA Slant */
.header-cta-wrapper {
    position: relative;
    height: var(--header-height);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-left: 40px; /* Space for slant */
    padding-right: 30px;
}

.header-cta-slant {
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 100%;
    background-color: var(--primary-color);
    transform: skewX(-20deg);
    transform-origin: bottom left;
    z-index: 1;
}

.header-cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.header-phone-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.icon-circle-white {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.header-cta-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.cta-label {
    font-size: 0.8rem;
    font-weight: normal;
    color: #000000;
}

.cta-number {
    font-size: 1.1rem;
    font-weight: bold;
    color: #000000;
}

/* Hero Section */
.hero-section {
    margin-top: var(--header-height);
    padding: 0;
    background-color: #000000;
    background-image: url('../gallery/banner.webp');
    background-size: cover;
    background-position: right bottom;
    background-repeat: no-repeat;
    color: white;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align content to start */
    width: 100%;
    position: relative;
    height: 100%;
    z-index: 2;
}

.hero-content {
    flex: 0 0 50%; /* Take 50% width exactly */
    max-width: 600px;
    z-index: 2;
    padding-top: 50px;
    padding-bottom: 50px;
}

.hero-search-bar {
    display: flex;
    max-width: 400px;
    margin-bottom: 20px;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 1rem;
    color: #000000; /* Ensure text is visible */
    background-color: #ffffff;
}

.search-btn {
    padding: 12px 20px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 0 4px 4px 0;
    color: white;
    cursor: pointer;
    font-size: 1.1rem;
}

.hero-availability {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.rent-available {
    color: #ffffff;
}

.hero-email {
    color: var(--primary-color);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 500px;
}

.highlight-orange {
    color: var(--primary-color);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    border-radius: 0;
    transition: opacity 0.3s;
}

.btn-book {
    background-color:#CC0099;
    color: white;
}

.btn-whatsapp-hero {
    background-color:#009900;
    color: white;
}

.btn-hero:hover {
    opacity: 0.9;
}

.hero-image-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 50%; /* Reduced to 50% to match content split */
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    z-index: 1;
}

.hero-model-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: bottom right;
    mask-image: linear-gradient(to right, transparent, black 20%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%);
}

/* Split Section (About) */
.split-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.split-col {
    flex: 1;
    min-width: 300px;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-col-orange {
    background:#930909;
    color: white;
}

.split-col-black {
    background-color: #0a0a0a;
    color: #cccccc;
}

.split-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.split-col-orange .split-title {
    color: white;
}

.split-col-black .split-title {
    color: white;
}

.split-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.split-buttons {
    display: flex;
    gap: 10px;
}

.btn-outline-white {
    background:#CC0099;
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-block;
}

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

.highlight-text {
    color: var(--primary-color);
    font-weight: bold;
}

/* Latest Profiles */
.profiles-section {
    padding: 40px 0;
    background-color: #000;
    color: white;
}

.section-title {
    text-align: center;
    font-size: 2.0rem;
    margin-bottom: 30px;
    color: #000; /* default, overridden in dark sections */
    position: relative;
    padding-bottom: 10px;
}



.profiles-section .section-title {
    color: #ffffff;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.profile-card {
    background-color: #f5f5f5; /* Light grey card */
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.profile-card:hover {
    transform: translateY(-5px);
}

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

.profile-info {
    padding: 20px;
   background-image: linear-gradient(to right top, #fceeef, #fcf2f5, #fcf7fa, #fdfbfd, #ffffff);
    backdrop-filter: none;
}

.profile-name {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #000;
}

.profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.profile-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.profile-rating i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.profile-tag {
    background:#8C0909;
	font-weight:600;
    color: white;
    padding: 4px 8px;
    font-size: 0.8rem;
    border-radius: 4px;
}

.profile-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.btn-profile {
    color:#09890C;
    font-weight: bold;
    text-transform:capitalize;
    font-size: 0.9rem;
}

.profile-contact-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.book-now-text {
    font-size: 0.8rem;
    font-weight: bold;
    color: #555;
}

.icon-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
}

.icon-phone {
    background-color: var(--primary-color);
}

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

.icon-circle:hover {
    opacity: 0.8;
}

/* Hotels & FAQs (Luxurious) */
.info-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.hotel-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 180px;
}

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

.hotel-item:hover .hotel-img {
    transform: scale(1.1);
}

.hotel-item h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 15px;
    color: #555;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Book Now Section */
.book-now-section {
    padding: 80px 0;
    background-color: #970707;
    text-align: center;
    color: white;
}

.book-now-content {
    max-width: 900px;
    margin: 0 auto;
}

.book-now-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.book-now-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.book-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color:#9900FF;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
}

.book-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background:#009900;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid #fff;
    border-radius: 0;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
}

.quick-contact-section {
    padding: 50px 0;
    background-color: var(--primary-color);
    color: #000;
    text-align: center;
}

.quick-contact-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.quick-contact-sub {
    font-size: 1rem;
    margin-bottom: 25px;
}

.quick-contact-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-quick {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 0;
}

.btn-quick-call {
    background-color: #000;
    color: #fff;
}

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

.btn-quick-email {
    background-color: #ffffff;
    color: #000;
    border: 1px solid #000;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-col-info {
    padding-right: 20px;
}

.footer-header-red {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
}

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

.footer-links-list li a:hover {
    color: var(--primary-color);
}

.footer-highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.btn-view-all {
    display: inline-block;
    margin-top: 10px;
    color: red;
    font-weight: bold;
    font-size: 0.8rem;
    text-decoration: underline;
}

.footer-logo {
    color: yellow; /* Yellow logo per screenshot */
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    display: block;
}

.footer-desc {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #ffffff;
}

/* Floating Buttons */
.floating-btn {
    position: fixed;
    bottom: 20px; /* Lowered position */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.float-call {
    left: 20px;
    background-color: #25D366;
}

.float-whatsapp {
    right: 20px;
    background-color: #25D366;
}

/* Responsive Footer & General */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-col-info {
        grid-column: span 2;
        text-align: center;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .hero-content {
        max-width: 60%;
    }
    
    .hero-image-wrapper {
        width: 40%;
    }
}

@media (max-width: 992px) {
    .header-inner {
        padding: 0 20px;
    }

    .hero-section {
        flex-direction: column;
        height: auto;
        padding-bottom: 30px;
        justify-content: center;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #000;
        flex-direction: column;
        padding: 20px;
        margin: 0;
        text-align: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .header-cta-wrapper {
        display: none;
    }

    .hero-container {
        flex-direction: column;
        padding: 20px;
        height: auto;
    }
    
    .hero-image-wrapper {
        position: relative;
        width: 100%;
        height: auto;
        justify-content: center;
        margin-top: 30px;
        right: auto;
        bottom: auto;
    }

    .hero-model-img {
        max-height: 400px;
        mask-image: none;
        -webkit-mask-image: none;
    }
    
    .hero-content {
        flex: auto;
        max-width: 100%;
        text-align: center;
        padding: 20px 0;
    }

    .hero-search-bar {
        margin: 0 auto 20px;
    }

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

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-col-info {
        grid-column: span 1;
    }
}

/* Profile Detail Page */
.profile-detail-section {
    padding: 100px 0 60px; /* Top padding to account for fixed header */
    background-color: #f7f7f7;
}

.profile-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

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

.main-profile-img {
    width: 100%;
    border-radius: 10px;
}

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

.thumb-img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

.thumb-img:hover {
    border-color: var(--primary-color);
}

.profile-details {
    color: #000;
}

.profile-details h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.profile-tagline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.profile-stats {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.profile-stats td {
    padding: 12px 0;
    border-bottom: 1px solid #eeeeee;
}

.stat-label {
    font-weight: bold;
    color: #777;
    width: 40%;
}

.stat-value {
    color: #000;
}

.profile-description h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.profile-description p {
    line-height: 1.8;
    color: #444;
}

@media (max-width: 768px) {
    .profile-detail-grid {
        grid-template-columns: 1fr;
    }
}

.content-section {
    padding: 60px 0;
    background-color: #ffffff;
    color: #000000;
}

.content-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.content-underline {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 10px 0 25px;
}

.content-paragraph {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 20px;
}

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

.content-list li {
    margin-bottom: 14px;
    line-height: 1.8;
    color: #333333;
}

.content-list li strong {
    color: #000000;
}

.content-section.alt {
    background-color: #f7f7f7;
}

.local-areas-section {
    padding: 60px 0;
    background-color: #ffffff;
    color: #000000;
}

.page-header {
    margin-top: 0;
    padding: 60px 0;
    background-color: var(--light-bg);
    color: #ffffff;
    text-align: center;
}

.page-header-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-header-subtitle {
    color: #cccccc;
    font-size: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-weight: 600;
}

.breadcrumb-bar {
    margin-top: var(--header-height);
    padding: 10px 0;
    background-color: var(--light-bg);
    color: #ffffff;
}

.breadcrumb-link {
    color: #ffffff;
}

.breadcrumb-link:hover {
    color: var(--primary-color);
}

.breadcrumb-separator {
    color: #888888;
}

.breadcrumb-current {
    color: #cccccc;
}

.areas-subtitle {
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
    color: #555555;
}

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

.area-item {
    display: block;
    padding: 5px 10px;
    background-color: #FAD9D9;
    color: #000000;
    font-weight: 600;
    text-transform:capitalize;
    border: 1px solid #000;
    text-align: center;
}

.area-item:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

@media (max-width: 1024px) {
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.category-section {
    padding: 60px 0;
    background-color: #ffffff;
    color: #000000;
}

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

.category-card {
    position: relative;
    display: block;
    overflow: hidden;
    border: 4px solid #111111;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.category-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.1));
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.category-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}
