:root {
    --primary-color: #8B4513; /* Saddle Brown */
    --secondary-color: #FF6347; /* Tomato Red */
    --accent-color: #DAA520; /* Goldenrod */
    --background-color: #F5F5F5; /* White Smoke */
    --text-color: #2F4F4F; /* Dark Slate Gray */
    --white: #FFFFFF; /* White color */
    --light-gray: #D3D3D3; /* Light Gray */
    --dark-gray: #696969; /* Dim Gray */
    --box-shadow-color: rgba(139, 69, 19, 0.5); /* Saddle Brown box shadow */
} 


/* General Styling */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--box-shadow-color);
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover, .logo a:hover {
    color: var(--accent-color);
}

.logo {
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
#hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    background-color: var(--background-color); /* Light background for contrast */
    padding: 20px;
    box-shadow: 0 4px 10px var(--box-shadow-color);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-color: var(--white); /* White background for the content */
    box-shadow: 0 4px 20px var(--box-shadow-color);
}

.hero-image {
    background: url('/assets/banner/banner.avif') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px var(--box-shadow-color);
}

.hero-text {
    padding: 40px;
    color: var(--text-color);
    text-align: left;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.cta-button:hover {
    background-color: var(--primary-color);
}

.learn-more-button {
    display: inline-block;
    margin-top: 15px; /* Reduced margin */
    padding: 10px 20px;
    background-color: var(--secondary-color); /* Secondary color (dark slate) */
    color: var(--white); /* White text */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: bold; /* Make the text bold for better readability */
}

.learn-more-button:hover {
    background-color: var(--primary-color); /* Primary color (coral) */
    color: var(--white); /* Keep text white for contrast */
}

section {
    padding: 60px 20px;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

.lead {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

/* Introduction Section */
#introduction {
    padding: 60px 20px;
    background-color: var(--background-color);
    text-align: center;
}

#introduction h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
}

#introduction h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 10px auto;
}

#introduction .lead {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.about-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px var(--box-shadow-color);
    align-items: center;
}

.about-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 10px var(--box-shadow-color);
    text-align: left;
    flex: 1;
}

.about-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
}

.about-card .learn-more-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.about-card .learn-more-button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.about-image {
    flex: 1;
    border-radius: 15px;
    box-shadow: 0 4px 10px var(--box-shadow-color);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Services Section */
#services {
    padding: 60px 20px;
    background-color: var(--background-color);
    text-align: center;
}

#services h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    position: relative;
}

#services h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 20px auto;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-box {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 20px;
    flex: 1 1 calc(50% - 40px); /* Adjusting width to fit two boxes per row with space */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    box-shadow: 0 0 10px var(--box-shadow-color);
    max-width: 500px;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--box-shadow-color);
}

.service-icon {
    background-color: var(--accent-color);
    padding: 20px;
    border-radius: 50%;
    color: var(--white);
    margin-right: 20px;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 2rem;
}

.service-info {
    text-align: left;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-info p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

/* Why Choose Us Section */
#why-choose-us {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--background-color);
}

#why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    color: var(--text-color);
}

#why-choose-us h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 10px auto;
}

.why-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.why-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 20px;
    flex: 1 1 calc(33% - 40px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    box-shadow: 0 0 10px var(--box-shadow-color);
    max-width: 350px;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--box-shadow-color);
}

.why-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.why-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.why-details p {
    margin: 10px 0;
    color: var(--text-color);
    line-height: 1.6;
}

/* Pricing Section */
#pricing {
    padding: 60px 20px;
    text-align: center;
    background-color: var(--background-color);
}

#pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    color: var(--text-color);
}

#pricing h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 10px auto;
}

.pricing-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.price-card {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--box-shadow-color);
}

.price-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px;
    border-radius: 10px 10px 0 0;
    text-align: center;
}

.price-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.price-body {
    padding: 15px;
}

.price-body .rate-price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.price-body p {
    margin: 10px 0;
    color: var(--dark-gray);
    line-height: 1.6;
}

.cta-container {
    margin-top: 40px;
    background-color: var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px var(--box-shadow-color);
    text-align: center;
}

.cta-container h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-container p {
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.6;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.book-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.book-button:hover {
    background-color: var(--accent-color);
    color: var(--dark-gray);
}

.rates-footnote {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Contact Section */
#contact {
    padding: 60px 20px;
    text-align: center;
}

#contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

#contact h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto;
}

.contact-intro {
    max-width: 600px;
    margin: 0 auto 20px auto;
    text-align: center;
    font-size: 1.1rem;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px var(--box-shadow-color);
}

.form-group {
    width: 100%;
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 1rem;
    color: var(--text-color);
    font-weight: bold;
    text-align: left;
}

input, textarea {
    width: 100%;
    padding: 15px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

textarea {
    height: 100px;
    resize: vertical;
}

button {
    background-color: var(--accent-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Footer Section */
footer {
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 30px 20px;
    font-size: 1rem;
    border-top: 5px solid var(--accent-color);
}

footer p {
    margin: 10px 0;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
    font-weight: bold;
}

footer a:hover {
    color: var(--accent-color);
}

footer a:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.call-button {
    display: none; /* Hidden by default */
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--primary-color);
        position: absolute;
        top: 60px;
        left: 0;
        padding: 0;
    }

    .call-button {
        display: flex; /* Visible on mobile devices */
        justify-content: center;
        align-items: center;
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background-color: var(--primary-color);
        color: var(--white);
        border-radius: 50%;
        box-shadow: 0 4px 6px var(--box-shadow-color);
        text-decoration: none;
        transition: background-color 0.3s ease;
        z-index: 1000;
    }

    .call-button:hover {
        background-color: var(--accent-color);
    }

    .call-button i {
        font-size: 1.5rem;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0;
        padding: 10px 0;
    }

    .burger {
        display: block;
    }

    .nav-links.active {
        display: flex;
    }

    #hero {
        height: auto;
        padding: 20px 10px;
    }

    .hero-content {
        display: block;
        border-radius: 0;
        box-shadow: none; 
    }

    .hero-image {
        display: none; 
    }

    .hero-text {
        padding: 20px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 1rem;
    }
    .learn-more-button {
        margin-top: 10px; 
    }

    .about-content {
        flex-direction: column;
    }

    .about-card h3 {
        font-size: 1.8rem;
    }

    .about-card p {
        font-size: 0.95rem;
    }

    .about-card .learn-more-button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .about-card, .about-image {
        padding: 15px;
    }

    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-box {
        flex: 1 1 100%;
        max-width: none;
    }

    .service-icon {
        margin: 0 auto 10px;
    }

    .service-info {
        text-align: center;
    }

    .why-content {
        flex-direction: column;
        align-items: center;
    }

    .why-card {
        max-width: 100%;
    }

    .pricing-content {
        flex-direction: column;
        align-items: center;
    }

    .price-card {
        max-width: 100%;
    }

    .price-header {
        text-align: center;
    }

    .price-body {
        text-align: center;
    }

    form {
        padding: 25px;
    }

    button {
        padding: 10px 20px;
    }

    textarea {
        height: 80px;
    }
    
    .small_txt{
        font-size:xx-small;
    }
}

@media (min-width: 768px) {
    .why-card:nth-child(3) {
        margin-left: auto;
        margin-right: auto;
    }
}