html {
    scroll-behavior: smooth;
}

:root {
    --primary-red: #d32f2f;
    --accent-gold: #c5a059;
    --soft-white: #ffffff;
    --light-bg: #fcfcfc;
    --text-dark: #2d3436;
    --text-muted: #636e72;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--soft-white);
}

header {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    backdrop-filter: blur(5px);
}

.top-bar {
    background: var(--text-dark);
    color: #fff;
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.phone-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: bold;
}

.header-logo {
    height: 100px;
    width: auto;
    display: block;
    filter: brightness(1.1) contrast(1.1);
    transition: filter 0.3s ease;
    padding: 10px 0;
}

.header-logo:hover {
    filter: brightness(1.2) contrast(1.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    margin: 0 auto;
    padding: 5px 0;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: var(--primary-red);
}

main {
    padding: 0;
}

section {
    padding: 100px 0;
    text-align: center;
    width: 85%;
    margin: 0 auto;
}

#hero {
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), 
                url('Images/Entrance.webp') no-repeat center center/cover;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#hero h1 {
    color: var(--text-dark);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(255,255,255,0.8);
}

#hero p {
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 50px;
    font-weight: 700;
}

h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-gold);
    margin: 15px auto 0;
}

.button {
    display: inline-block;
    background-color: var(--primary-red);
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.button:hover {
    background-color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.button-outline {
    background-color: transparent;
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    box-shadow: none;
}

.button-outline:hover {
    background-color: var(--primary-red);
    color: #fff;
}

#services {
    width: 100%;
    background-color: var(--light-bg);
}

.service-grid {
    width: 85%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.single-service {
    display: flex;
    justify-content: center;
}

.service-item {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    max-width: 500px;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.service-item h3 {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Reviews Styling */
#reviews {
    background-color: #fff;
}

.rating-summary {
    margin-bottom: 40px;
}

.stars {
    color: #f1c40f;
    font-size: 1.5rem;
}

.rating-text {
    font-weight: bold;
    margin-left: 10px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    padding: 30px;
    background: var(--light-bg);
    border-radius: 15px;
    font-style: italic;
    text-align: left;
}

.review-card .author {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    font-style: normal;
    color: var(--accent-gold);
}

/* Contact Layout Update */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    text-align: left;
}

.contact-info p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.contact-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3rem;
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-family: inherit;
    box-sizing: border-box;
}

footer {
    padding: 50px 0;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    text-align: center;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .top-bar .container {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    nav {
        flex-direction: column;
        padding: 15px 0;
    }

    nav ul {
        margin-top: 20px;
    }

    nav ul li {
        margin: 0 10px;
    }
    
    .header-logo {
        height: 70px;
    }

    #hero h1 {
        font-size: 2.5rem;
    }
}