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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

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

/* Header/Navigation */
header {
    background: #7B7BA8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.9;
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
}

.logo-icon {
    width: 30px;
    height: 30px;
    position: relative;
}

.bars {
    display: flex;
    gap: 3px;
    height: 100%;
}

.bars span {
    width: 3px;
    background: white;
    border-radius: 2px;
}

.bars span:nth-child(1) { height: 60%; align-self: flex-end; }
.bars span:nth-child(2) { height: 80%; align-self: center; }
.bars span:nth-child(3) { height: 100%; }
.bars span:nth-child(4) { height: 70%; align-self: flex-end; }

.logo-text {
    color: white;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #7B7BA8 0%, #8585B0 25%, #9595C0 50%, #B5B5D8 75%, #E0E0F0 90%, #ffffff 100%);
    padding: 80px 0 350px;
    text-align: center;
    color: white;
    position: relative;
    overflow: visible;
    min-height: 600px;
}

.hero-house-left,
.hero-house-right {
    position: absolute;
    bottom: 0;
    width: 700px;
    height: auto;
    z-index: 3;
}

.hero-house-left {
    left: 0;
}

.hero-house-right {
    right: 0;
}

.hero-house-left img,
.hero-house-right img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}

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

.hero-title {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 50px;
    opacity: 0.95;
}

.hero-images {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
}

.house-image {
    flex: 1;
    max-width: 500px;
}

.house-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Experience Section */
.experience {
    background: white;
    padding: 80px 0;
}

.experience-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.experience-text {
    flex: 1;
}

.experience-text h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.experience-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.cta-button {
    background: #5858A8;
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #4848A0;
}

.experience-image {
    flex: 0 0 400px;
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-bg {
    position: absolute;
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, #8888B8 0%, #9898C8 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.experience-image img {
    position: absolute;
    z-index: 2;
    width: 320px;
    height: 380px;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Why Choose Section */
.why-choose {
    background: linear-gradient(135deg, #6868A8 0%, #7878B8 100%);
    padding: 80px 0;
    color: white;
}

.why-choose h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
}

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

.feature-card {
    text-align: center;
}

.feature-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 48px;
    color: white;
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Inspiration Section */
.inspiration {
    background: linear-gradient(135deg, #5858A0 0%, #6868B0 100%);
    padding: 80px 0;
    color: white;
}

.inspiration h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 14px;
    max-width: 700px;
    margin: 0 auto 50px;
    opacity: 0.95;
    line-height: 1.6;
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.inspiration-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.inspiration-card p {
    font-size: 14px;
    text-align: center;
}

/* Partners Section */
.partners {
    background: #F8F8F8;
    padding: 80px 0;
    overflow: hidden;
}

.partners h2 {
    text-align: center;
    font-size: 32px;
    color: #333;
    margin-bottom: 50px;
}

.partners-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.partners-track {
    display: flex;
    gap: 60px;
    width: fit-content;
}

.partner-logo {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* Dream Home Section */
.dream-home {
    background: white;
    padding: 80px 0;
}

.dream-home-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.dream-home-text {
    flex: 1;
}

.dream-home-text h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.dream-home-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.dream-home-text ul {
    list-style: none;
    margin-top: 15px;
}

.dream-home-text li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.dream-home-form {
    flex: 0 0 400px;
    background: #F5F5F5;
    padding: 30px;
    border-radius: 8px;
}

.dream-home-form input,
.dream-home-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #DDD;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.dream-home-form textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    background: #5858A8;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #4848A0;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #5858A0 0%, #6868B0 100%);
    padding: 40px 0;
    color: white;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-image {
    height: 35px;
    width: auto;
    display: block;
}

.footer-text {
    font-size: 13px;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: #7B7BA8;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0,0,0,0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    
    .hero-house-left,
    .hero-house-right {
        display: none;
    }
    
    .hero-images {
        flex-direction: column;
        align-items: center;
    }
    
    .experience-content {
        flex-direction: column;
    }
    
    .experience-image {
        flex: 0 0 auto;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .inspiration-grid {
        grid-template-columns: 1fr;
    }
    
    .dream-home-content {
        flex-direction: column;
    }
    
    .dream-home-form {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-text h2,
    .dream-home-text h2 {
        font-size: 24px;
    }
}

/* About Page Styles */
.about-hero {
    position: relative;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1200&h=400&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 91, 145, 0.85) 0%, rgba(123, 123, 168, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero h1 {
    color: white;
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 15px;
}

.hero-tagline {
    color: white;
    font-size: 16px;
    text-align: center;
    letter-spacing: 3px;
    font-weight: 300;
}

.about-content {
    background: white;
    padding: 80px 0;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-section p {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.highlight-section {
    background: #F8F8F8;
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.highlight-section h2 {
    font-size: 24px;
    color: #333;
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 32px;
        padding: 0 20px;
    }
    
    .about-section h2 {
        font-size: 24px;
    }
    
    .highlight-section h2 {
        font-size: 20px;
    }
}
