/* Reset and Base Styles */
:root {
    --primary-color: #1E2A3A;
    --primary-dark: #151d28;        
    --primary-light: #F2F2F2;       
    --accent-color: #C6A664;       
    --accent-dark: #a38a4f;         
    --text-color: #3A3A3A;          
    --text-light: #6b7280;          
    --white: #FFFFFF;
    --max-width: 1200px;
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text-color);
    line-height: 1.5;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
}

/* Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 1rem;
    transition: background-color 0.3s;
    z-index: 1000;
}

.header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    text-decoration: none;
}

.header.scrolled .logo {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.header.scrolled .nav-link {
    color: var(--text-color);
}

.mobile-menu-btn {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('https://images.pexels.com/photos/1396122/pexels-photo-1396122.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    color: var(--white);
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem; 
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s;
}


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

.button-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.btn-trimary {
    margin-top: 1.5rem; 
    font-size: 1.1rem;
    padding: 1.4rem 2.6rem;
    background-color: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s;
}

.btn-trimary:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

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

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

/* Services Section */
.services {
    padding: 5rem 1rem;
    background: var(--white);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    animation: autoShowAnimation 0.8s ease-in-out both;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
#buyer-services {
    background-color: #f9fafb;
}

#seller-services {
    background-color: #fffdf8; 
}
/* Seller Services Section */
.services {
padding: 5rem 1rem;
background: var(--white);
}

.stages-container {
display: grid;
grid-template-columns: 1fr;
gap: 2.5rem;
max-width: 900px;
margin: 0 auto;
animation: autoShowAnimation 0.8s ease-in-out both;
}

.stage-card {
background: var(--white);
padding: 2rem 2.5rem;
border-radius: 0.75rem;
box-shadow: 0 4px 10px rgba(0,0,0,0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
border-left: 5px solid var(--accent-color);
}

.stage-card:hover {
transform: translateY(-4px);
box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.stage-card h3 {
font-size: 1.5rem;
color: var(--accent-color);
margin-bottom: 1rem;
font-weight: 600;
}

#seller-services {
background-color: var(--primary-light);
}



/* Reviews Section */
.reviews {
    padding: 5rem 1rem;
    background: var(--primary-light);
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.reviews-slider {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s;
}

.review-card {
    flex: 0 0 100%;
    padding: 2rem;
    background: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-controls button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
}

/* Properties Section */
.properties {
    padding: 5rem 1rem;
    background: var(--white);
}

.properties h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.property-card {
    background: var(--white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.property-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.property-content {
    padding: 1.5rem;
}

/* Call to Action */
.cta {
    padding: 5rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 1rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

/* Form Styles */
.pt-20 {
    padding-top: 5rem;
}

.buying-form,
.selling-form {
    padding: 4rem 1rem;
    background: var(--primary-light);
}

.contact-form {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.25rem;
    }
}
@keyframes autoShowAnimation{
    from{
        opacity: 0;
        transform: translateY(200px) scale(0.3);
    }
    to{
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
