:root {
    --primary: #8d5f4f;
    --secondary: #b2745f;
    --accent1: #c19383;
    --accent2: #d2b2a5;
    --accent3: #e5d1ca;
    --accent4: #d3b1a2;
    --dark: #1a1a1a;
    --darker: #0f0f0f;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--darker);
    color: var(--accent4);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(211, 177, 162, 0.1);
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 40px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--accent4) !important;
    font-weight: 500;
    margin: 0 1rem;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

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

.navbar-toggler {
    border: 1px solid rgba(211, 177, 162, 0.3);
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(211, 177, 162, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(211, 177, 162, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.6) 0%, rgba(26, 26, 26, 0.5) 100%),
                radial-gradient(circle at 20% 50%, rgba(141, 95, 79, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(178, 116, 95, 0.2) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 10;
    background: rgba(15, 15, 15, 0.75);
    /* backdrop-filter: blur(15px); */
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(211, 177, 162, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    margin-top: 2rem;
}

.hero-logo {
    opacity: 0.95;
    /* filter: drop-shadow(0 10px 30px rgba(211, 177, 162, 0.2)); */
}

/* Hero Visual Elements */
.hero-visual {
    position: absolute;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
}

.hero-visual-1 {
    width: 380px;
    height: 280px;
    top: 15%;
    right: 5%;
    animation: float 8s ease-in-out infinite;
}

.hero-visual-2 {
    width: 350px;
    height: 260px;
    bottom: 20%;
    right: 10%;
    animation: float 10s ease-in-out infinite 2s;
}

.hero-visual-3 {
    width: 320px;
    height: 240px;
    top: 50%;
    right: 2%;
    animation: float 9s ease-in-out infinite 1s;
}

@media (min-width: 1200px) {
    .hero-visual-1 {
        width: 420px;
        height: 300px;
        right: 8%;
    }
    
    .hero-visual-2 {
        width: 390px;
        height: 280px;
        right: 12%;
    }
    
    .hero-visual-3 {
        width: 360px;
        height: 260px;
        right: 5%;
    }
}

@media (max-width: 991px) {
    .hero-visual {
        display: none;
    }
}

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

.hero-visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.9) 0%, transparent 100%);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.hero-visual:hover .hero-visual-overlay {
    transform: translateY(0);
}

.hero-visual:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 80px rgba(211, 177, 162, 0.3);
}

.hero-visual-title {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.hero-visual-location {
    color: var(--accent3);
    font-size: 0.75rem;
}

.hero-decorative {
    position: absolute;
    z-index: 1;
    opacity: 0.1;
}

.hero-decorative-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -5%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 15s ease-in-out infinite;
}

.hero-decorative-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: -3%;
    background: radial-gradient(circle, var(--accent1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 12s ease-in-out infinite 3s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.15; }
}

.hero-property-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(211, 177, 162, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(211, 177, 162, 0.3);
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    /* text-shadow: 0 4px 20px rgba(141, 95, 79, 0.4); */
}

.hero p {
    font-size: 1.3rem;
    color: var(--accent3);
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.btn-luxury {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent1) 100%);
    color: var(--darker);
    padding: 1rem 3rem;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-luxury:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.btn-luxury:hover:before {
    left: 100%;
}

.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(211, 177, 162, 0.3);
    color: var(--darker);
}

/* Stats Section */
.stats {
    background: var(--dark);
    padding: 4rem 0;
    border-top: 1px solid rgba(211, 177, 162, 0.1);
    border-bottom: 1px solid rgba(211, 177, 162, 0.1);
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1rem;
    color: var(--accent3);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--darker);
}

.section-title {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
}

.founder-card {
    background: var(--dark);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(211, 177, 162, 0.1);
    display: flex;
}

.founder-card:hover {
    transform: translateY(-10px);
}

.founder-image {
    width: 100%;
    max-width: 400px;
    height: 100%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(141, 95, 79, 0.1) 0%, rgba(178, 116, 95, 0.1) 100%);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: relative;
    z-index: 1;
}

.founder-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 15, 15, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.founder-content {
    padding: 3rem;
    flex: 1;
}

.founder-name {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.2rem;
    color: var(--accent1);
    margin-bottom: 2rem;
    font-weight: 500;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(211, 177, 162, 0.1) 0%, rgba(141, 95, 79, 0.1) 100%);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary);
}

.highlight-text {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--dark);
}

.services-cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--darker);
    border-radius: 15px;
    border: 1px solid rgba(211, 177, 162, 0.1);
    transition: all 0.3s ease;
}

.service-item-card:hover {
    border-color: rgba(211, 177, 162, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-item-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(211, 177, 162, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(211, 177, 162, 0.2);
}

.service-item-icon i {
    font-size: 1.8rem;
    color: var(--accent3);
}

.service-item-content {
    flex: 1;
}

.service-item-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.service-item-desc {
    color: var(--accent3);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .service-item-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .service-item-icon {
        margin: 0 auto;
    }

    .service-item-title {
        font-size: 1.3rem;
    }
}

.service-card {
    background: var(--darker);
    padding: 0;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(211, 177, 162, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-card-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 15, 15, 0.7) 100%);
}

.service-card-content {
    padding: 2.5rem 2rem;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent1) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(211, 177, 162, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    color: var(--accent4);
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--accent3);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--darker);
}

.contact-form {
    background: var(--dark);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(211, 177, 162, 0.1);
}

.form-control {
    background: var(--darker);
    border: 1px solid rgba(211, 177, 162, 0.2);
    color: var(--accent4);
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.form-control:focus {
    background: var(--darker);
    border-color: var(--primary);
    color: var(--accent4);
    box-shadow: 0 0 0 0.2rem rgba(211, 177, 162, 0.25);
}

.form-control::placeholder {
    color: var(--accent2);
}

/* Footer */
footer {
    background: var(--dark);
    padding: 3rem 0;
    border-top: 1px solid rgba(211, 177, 162, 0.1);
}

.footer-text {
    color: var(--accent3);
    margin: 0;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--darker);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(211, 177, 162, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(211, 177, 162, 0.5);
}

/* Property Gallery */
.property-gallery {
    padding: 5rem 0;
    background: var(--darker);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 2rem;
    height: 400px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.85) 50%, transparent 100%);
    padding: 1.5rem;
    transform: translateY(0);
}

.gallery-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gallery-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 400;
}

.gallery-detail-item i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    padding: 0.4rem;
    border-radius: 6px;
    flex-shrink: 0;
}

.gallery-detail-item span {
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    flex: 1;
}

/* Location Badge */
.location-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(211, 177, 162, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
        margin-top: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .founder-name {
        font-size: 1.8rem;
    }
    
    .founder-card {
        flex-direction: column;
    }
    
    .founder-image {
        max-width: 100%;
        min-height: 300px;
    }
    
    .nav-link {
        margin: 0.5rem 0;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    .gallery-item {
        height: 300px;
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .hero-decorative {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 90vh;
        background-size: cover;
        background-position: center center;
    }
}

/* Logos Slider Section */
.logos-slider-section {
    padding: 3rem 0;
    background-color: rgba(15, 15, 15, 0.8);
    border-top: 1px solid rgba(211, 177, 162, 0.1);
    border-bottom: 1px solid rgba(211, 177, 162, 0.1);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logos-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logos-infinite-track {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logos-track-inner {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: fit-content;
    animation: infiniteScroll 30s linear infinite;
}

.logo-slide-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    height: 100px;
    position: relative;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-image {
    max-width: 150px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.3s ease, opacity 0.3s ease;
    display: block;
}

.logo-slide-item:hover .logo-image {
    filter: grayscale(0%) opacity(1);
}

/* Responsive adjustments for logos slider */
@media (max-width: 768px) {
    .logos-slider-section {
        padding: 2rem 0;
    }
    
    .logos-track-inner {
        gap: 2rem;
    }
    
    .logo-slide-item {
        padding: 0 1.5rem;
        height: 70px;
    }
    
    .logo-image {
        max-width: 120px;
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .logos-track-inner {
        gap: 1.5rem;
    }
    
    .logo-slide-item {
        padding: 0 1rem;
        height: 60px;
    }
    
    .logo-image {
        max-width: 100px;
        max-height: 50px;
    }
}

