/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #4a4a4a;
    background-color: #fefefe;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Banner */
.top-banner {
    background: #f5f5f0;
    padding: 10px 0;
    border-bottom: 1px solid #e8e8e0;
}

.contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    font-size: 0.9rem;
    color: #6b6b6b;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location {
    cursor: pointer;
    transition: color 0.3s ease;
}

.location:hover {
    color: #8b7355;
}

/* Header Styles */
header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 40px;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #8b7355;
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.2);
    background: white;
    padding: 2px;
}

.logo h1 {
    color: #8b7355;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #6b6b6b;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #8b7355;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #8b7355;
    margin: 3px 0;
    transition: 0.3s;
}

/* Home Section */
.home-section {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #fefefe 0%, #f9f7f4 100%);
}

.home-content {
    text-align: center;
    margin-bottom: 60px;
}

.home-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.home-logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #8b7355;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
    background: white;
    padding: 3px;
}

.title-text {
    text-align: left;
}

.home-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: #8b7355;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.home-content h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #6b6b6b;
    margin-bottom: 0;
    letter-spacing: 1px;
}

.home-content p {
    font-size: 1.1rem;
    color: #7a7a7a;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Image Banner */
.image-banner {
    overflow: hidden;
    margin-top: 40px;
}

.banner-scroll {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(200px * 15); /* 15 items for seamless loop */
}

.banner-item {
    min-width: 150px;
    height: 100px;
    margin-right: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(45deg, #f5f5f0, #e8e8e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b7355;
    font-size: 0.8rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 10));
    }
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #8b7355;
    font-weight: 300;
    letter-spacing: 1px;
}

.section p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #6b6b6b;
    line-height: 1.7;
}

.bg-light {
    background: #f9f7f4;
}

/* Featured Inventory Section */
.memberships {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.memberships h3 {
    color: #8b7355;
    margin-bottom: 15px;
    font-weight: 400;
}

.memberships ul {
    list-style: none;
    color: #6b6b6b;
}

.memberships li {
    margin-bottom: 8px;
}

.description {
    margin: 40px 0;
    font-style: italic;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 50px;
}

.product-item {
    text-align: center;
}

.product-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.15);
    border: 3px solid #f5f5f0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(45deg, #f5f5f0, #e8e8e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b7355;
}

.product-item h4 {
    font-size: 1.3rem;
    color: #8b7355;
    margin-bottom: 8px;
    font-weight: 400;
}

.product-item p {
    color: #7a7a7a;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

/* Appraisal Services Section */
.confidence-section {
    margin-top: 50px;
}

.confidence-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.confidence-text h3 {
    color: #8b7355;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.confidence-text p {
    text-align: left;
    line-height: 1.8;
    color: #6b6b6b;
}

.confidence-image {
    text-align: center;
}

.confidence-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.15);
    background: linear-gradient(45deg, #f5f5f0, #e8e8e0);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 40px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-form {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.contact-form h3 {
    color: #8b7355;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 1.5rem;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4c4aa;
    background: #ffffff;
}

/* Button Styles */
.btn {
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn.primary {
    background: #8b7355;
    color: white;
}

.btn.primary:hover {
    background: #7a6549;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
}

/* Contact Banner */
.contact-banner {
    background: #8b7355;
    color: white;
    padding: 40px 0;
}

.contact-banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    text-align: center;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}

.contact-item p {
    margin-bottom: 8px;
    opacity: 0.9;
    text-align: center;
}

/* Footer */
footer {
    background: #6b6b6b;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .home-title {
        flex-direction: column;
        gap: 20px;
    }

    .home-logo {
        width: 150px;
        height: 150px;
    }

    .title-text {
        text-align: center;
    }

    .home-content h1 {
        font-size: 2.5rem;
    }

    .home-content h2 {
        font-size: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .confidence-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-banner-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .section h2 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 2rem;
    }

    header {
        top: 0;
    }

    .home-section {
        padding-top: 120px;
    }

    .top-banner {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo-image {
        width: 35px;
        height: 35px;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .home-logo {
        width: 120px;
        height: 120px;
    }

    .home-content h1 {
        font-size: 2rem;
    }

    .home-content h2 {
        font-size: 1.3rem;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
    }

    .banner-item {
        min-width: 120px;
        height: 80px;
    }

    .contact-form {
        padding: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
