:root{

    /* Primary Brand */
    --primary:#6F7D4E;
    --primary-dark:#55623A;
    --primary-light:#8A9A63;

    /* Gold Accent */
    --gold:#C6A15B;
    --gold-dark:#A98442;
    --gold-light:#E8D4A8;

    /* Backgrounds */
    --bg-light:#FDFBF7;
    --bg-alt:#F5F1EA;
    --bg-card:#FFFFFF;

    /* Text */
    --text-main:#2B2B2B;
    --text-heading:#22311C;
    --text-muted:#707070;

    /* Borders */
    --border-color:#E5DAC8;

    /* Effects */
    --shadow:0 10px 30px rgba(0,0,0,.08);
    --shadow-hover:0 20px 45px rgba(0,0,0,.12);

    --radius:18px;
    --transition:.35s ease;
}

body{
    font-family:'Inter',sans-serif;
    color:var(--text-main);
    background:var(--bg-light);
    overflow-x:hidden;
    line-height:1.7;
}

h1,h2,h3,h4,h5,h6{
    font-family:'Playfair Display',serif;
    color:var(--text-heading);
    font-weight:600;
}

a{
    text-decoration:none;
    transition:var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

/* Utilities replacing inline styles */
.text-primary-custom { color: var(--primary) !important; }
.bg-alt { background-color: var(--bg-alt) !important; }
.bg-light-custom { background-color: var(--bg-light) !important; }
.fs-small { font-size: 0.85rem; }
.fs-medium { font-size: 0.95rem; }
.fs-large { font-size: 1.1rem; }
.ls-2 { letter-spacing: 2px; }
.mw-500 { max-width: 500px; margin: 0 auto; }
.mw-700 { max-width: 700px; margin: 0 auto; }
.border-primary-subtle { border-color: var(--border-color) !important; }

/* Navbar */
.navbar{
    background:rgba(253,251,247,.95);
    backdrop-filter:blur(18px);
    transition:.4s;
    border-bottom:1px solid rgba(111,125,78,.12);
}

.navbar-brand{
    color:var(--primary);
    font-weight:700;
}

.nav-link{
    color:var(--text-main);
    margin-left:18px;
    font-weight:500;
}

.nav-link:hover,
.nav-link.active{
    color:var(--primary);
}

.navbar-toggler {
    border-color: var(--primary);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28203, 168, 118, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Buttons */
.btn-custom {
    background-color: var(--primary);
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--primary);
    transition: all 0.3s ease;
    border-radius: 4px;
    display: inline-block;
}

.btn-custom:hover {
    background-color: #ffffff;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(203, 168, 118, 0.2);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--primary);
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--primary);
    transition: all 0.3s ease;
    border-radius: 4px;
    display: inline-block;
}

.btn-outline-custom:hover {
    background-color: var(--primary);
    color: #ffffff;
}

.hero{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.text-content{
    margin-left: auto;
    text-align: left;
    padding: 20px;
}

.hero-title{
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    line-height: 1.2;
    color: #22311C;
    margin-bottom: 20px;
}

.hero-title span{
    color: #C6A15B;
}

.hero-text{
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.hero-btns{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.rating-badge{
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255,255,255,.9);
    border-radius: 30px;
    border: 1px solid #E5DAC8;
    font-weight: 600;
}

@media (max-width:992px){

.hero{
    min-height: auto;
    padding: 120px 0 70px;
    background-position: left center;
}

.text-content{
    text-align: center;
    margin: auto;
    background: rgba(253,251,247,.82);
    backdrop-filter: blur(6px);
    border-radius: 20px;
}

.hero-title{
    font-size: 2.6rem;
}

.hero-text{
    font-size: 1rem;
}

.hero-btns{
    justify-content: center;
}

}

@media (max-width:768px){

.hero-title{
    font-size: 2rem;
}

.hero-btns{
    flex-direction: column;
}

.btn-custom,
.btn-outline-custom{
    width:100%;
    text-align:center;
}

}

@media (max-width:576px){

.hero{
    padding:100px 0 50px;
}

.hero-title{
    font-size:1.7rem;
}

.hero-text{
    font-size:.95rem;
}

.text-content{
    padding:20px;
}

}

.rating-badge {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Section Titles */
.section-title {
    text-align: center;
    color: var(--text-main);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary);
}

/* Page Headers */
.page-header {
    padding: 5rem 0 3rem;
    background-color: var(--bg-alt);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    color: var(--text-main);
    margin-bottom: 1rem;
}

/* Generic Section Padding */
.content-section {
    padding: 5rem 0;
}

/* About Section */
.about-img {
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

.stat-box h3 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Features/Why Choose Us */
.feature-box {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(203, 168, 118, 0.2);
    font-family: 'Playfair Display', serif;
}

/* Services Section */
.service-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid var(--primary);
}

.service-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    color: var(--text-main);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.service-duration {
    color: var(--text-muted);
}

/* Accordion for FAQ */
.accordion-button:not(.collapsed) {
    color: var(--primary);
    background-color: rgba(203, 168, 118, 0.05);
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--border-color);
}
.accordion-button:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(203, 168, 118, 0.25);
}
.accordion-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
}

/* Contact Section */
.contact-info-box {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.contact-info-box:hover {
    border-color: rgba(203, 168, 118, 0.8);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.form-control {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.8rem 1rem;
}

.form-control:focus {
    background-color: #ffffff;
    border-color: var(--primary);
    color: var(--text-main);
    box-shadow: 0 0 0 0.25rem rgba(203, 168, 118, 0.25);
}

.form-control::placeholder {
    color: #999;
}

.hours-table {
    color: var(--text-main);
}

.hours-table th {
    color: var(--text-muted);
    font-weight: normal;
}

.hours-table td, .hours-table th {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Footer */
footer{

    background:#23311C;
    color:white;
}

.footer-brand{

    color:white;
}

footer p{

    color:#d6d6d6;
}

.social-links a{

    width:52px;
    height:52px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin:0 8px;

    color:white;

    background:rgba(255,255,255,.08);

    transition:.35s;
}

.social-links a:hover{

    background:var(--gold);
    transform:translateY(-5px);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--primary);
    margin-right: 0.5rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary);
    color: #ffffff;
    transform: translateY(-3px);
}

.bg-light-custom{

    background:var(--bg-light);
}

.bg-alt{

    background:var(--bg-alt);
}

.section-title{

    position:relative;
    display:inline-block;
    margin-bottom:50px;
}

.section-title::after{

    content:'';
    width:70px;
    height:3px;
    background:var(--gold);
    position:absolute;
    left:0;
    bottom:-14px;
}
.feature-box,
.service-card,
.testimonial-card{

    background:var(--bg-card);
    border-radius:var(--radius);
    transition:.35s;
    border:1px solid var(--border-color);
    box-shadow:var(--shadow);
}

.feature-box:hover,
.service-card:hover,
.testimonial-card:hover{

    transform:translateY(-8px);
    box-shadow:var(--shadow-hover);
}

@media(max-width:992px){

.hero{

    min-height:70vh!important;
    text-align:center;
}

.display-2{

    font-size:2.7rem;
}

.display-5{

    font-size:2rem;
}

.section-title{

    text-align:center;
}

.section-title::after{

    left:50%;
    transform:translateX(-50%);
}

.navbar-brand{

    font-size:1.7rem!important;
}

.btn-custom,
.btn-outline-custom{

    width:100%;
    text-align:center;
}

.rating-badge{

    justify-content:center;
}

}

@media(max-width:768px){

.display-2{

    font-size:2.2rem;
}

.display-5{

    font-size:1.8rem;
}

.fs-4{

    font-size:1.05rem!important;
}

.feature-box,
.service-card,
.testimonial-card{

    padding:25px!important;
}

.service-img{

    height:230px!important;
}

.social-links{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:10px;
}

}

@media(max-width:576px){

.display-2{

    font-size:1.9rem;
}

.display-5{

    font-size:1.6rem;
}

.hero{

    min-height:65vh!important;
}

.btn-custom,
.btn-outline-custom{

    padding:14px;
}

.container{

    padding-left:20px;
    padding-right:20px;
}

}