/* Import Google Questrial font for body, modern clean look */
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* About Us Sections */
.about-us {
    background: linear-gradient(to bottom, #ffffff 0%, #faf9e8 100%);
}

.about-founder-img {
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(30, 25, 19, 0.1);
    transition: transform 0.3s ease;
}

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

.founder-quote {
    background: #1d6ef0;
    color: white;
    padding: 1.5em;
    border-radius: 12px;
    margin-top: 1em;
    font-style: italic;
    position: relative;
}

.founder-quote:after {
    content: '';
    position: absolute;
    top: -10px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #1d6ef0;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    margin: 2em 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5em;
    background: #f5f5f5;
    padding: 0.8em 1.2em;
    border-radius: 8px;
    flex: 1 1 200px;
}

.feature-icon {
    font-size: 1.5em;
    color: #1d6ef0;
}

.mission-statement {
    background: #f5f5f5;
    padding: 2em;
    border-radius: 12px;
    margin-top: 2em;
}

.team-section {
    margin-top: 3em;
    padding-top: 2em;
    border-top: 1px solid #eceae5;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: center;
    margin-top: 1.5em;
}

body {
    font-family: 'Questrial', Arial, Helvetica, sans-serif;
    background: #faf9e8;
    margin: 0;
    color: #1e1913;
}

.top-bar {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 2vw 0.5rem 2vw;
    border-bottom: 1px solid #eceae5;
}

.top-bar .logo {
    font-weight: bold;
    font-size: 2rem;
    letter-spacing: -2px;
    color: #111;
}

.top-bar .actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.top-bar a, .top-bar button {
    color: #34231a;
    text-decoration: none;
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    font-size: 1rem;
}
.top-bar .edit-btn {
    background: #1d6ef0;
    color: white;
    border-radius: 2rem;
    padding: 0.5em 1.5em;
    font-weight: bold;
    border: none;
    margin-left: 1em;
    transition: background 0.2s;
}
.top-bar .edit-btn:hover {
    background: #1554b0;
}

nav.navbar {
    width: 100%;
    background: #faf9e8;
    padding: 1.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 0.5px solid #eceae5;
}

.nav-inner {
    display: flex;
    gap: 4vw;
    width: 80vw;
    max-width: 1100px;
    align-items: center;
}

.brand {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #60513d;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links {
    display: flex;
    flex: 1;
    justify-content: center;
    gap: 2vw;
}

.nav-links a {
    color: #191813;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
    padding: 0.25rem 0.5rem;
}
.nav-links a.active, .nav-links a:hover { color: #1d6ef0; }

.right-nav {
    display: flex;
    gap: 1vw;
    align-items: center;
}

.btn-dark {
    background: #1e1913;
    color: #fff;
    border: none;
    border-radius: 9999px;
    padding: 0.6em 2em;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgb(30 25 19 / 7%);
    cursor: pointer;
    transition: background 0.2s;
}
.btn-dark:hover { background: #34231a; }

.user-icon {
    display: inline-block;
    width: 2em;
    height: 2em;
    border-radius: 50%;
    background: #e2e0d1;
    text-align: center;
    line-height: 2em;
    color: #60513d;
    margin-right: 0.3em;
}

/* HERO SECTION - Updated with proper text positioning */
.hero {
    background: linear-gradient(to right, #191813cc 0%, #faf9e800 100%), url('/static/business-8429238.jpg') center/cover no-repeat;
    padding: 7vw 0 2vw 0;
    padding-left: 12vw;  /* Increased left padding to shift text right */
    padding-right: 4vw;
    text-align: left;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: #fff;
    position: relative;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4em);
    margin: 0 0 0.8em 0;
    font-weight: 700;
    line-height: 1.07;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.3em;
    color: #f8f6ec;
    margin-bottom: 2.5em;
    animation: fadeInUp 1.2s ease-out;
}

/* Animation for hero content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .btn-main {
    background: #fff;
    color: #34231a;
    border-radius: 9999px;
    border: none;
    font-size: 1.2em;
    padding: 0.7em 2.2em;
    font-weight: 500;
    margin-bottom: 3em;
    cursor: pointer;
    box-shadow: 0px 6px 26px 0 rgba(60,40,20,0.07);
    transition: background 0.17s;
}
.hero .btn-main:hover { background: #eceae5; }

.cta-estimate {
    background: #fffaac;
    color: #191813;
    font-size: 1.8em;
    border-radius: 20px;
    width: max-content;
    margin: -2.5em auto 0 auto;
    padding: 1em 3em;
    font-weight: 400;
    box-shadow: 0 2px 8px rgb(30 25 19 / 7%);
    position: relative;
    z-index: 5;
    transition: transform 0.2s ease;
}

.cta-estimate:hover {
    transform: translateY(-2px);
}

section.page-section {
    margin: 3em auto;
    padding: 1.5em 2vw;
    max-width: 1800px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 6px 0 #94886818;
}

h2 {
    font-size: 2.5em;
    color: #60513d;
    font-weight: 600;
    margin: 0 0 0.7em 0;
}

.plan-list, .service-list {
    display: flex;
    gap: 2em;
    flex-wrap: wrap;
}
.plan {
    background: #faf9e8;
    border-radius: 18px;
    box-shadow: 0 2px 5px #94886818;
    padding: 1.5em;
    width: clamp(260px,30vw,320px);
    flex: 1 1 250px;
    margin-bottom: 1em;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px #94886828;
}

.plan h3 { margin: 0.5em 0 0.4em 0; }
.plan .price { color: #1d6ef0; font-size: 2em; font-weight: bold; }
.plan ul { list-style: none; padding: 0; margin: 1em 0; }
.plan li:before {
    content: '✓ ';
    color: #1d6ef0;
}

.service {
    flex: 1 1 220px;
    background: #faf9e8;
    border-radius: 12px;
    box-shadow: 0 2px 5px #94886810;
    padding: 1.2em;
    text-align: center;
    margin-bottom: 1.5em;
}
.service img {
    width: 300px;
    margin-bottom: 1em;
}
.service h3 { color: #60513d; }
.service p { color: #555; }
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Counter animation */
.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1d6ef0;
    transition: all 0.5s ease;
}

.about-company {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    align-items: flex-start;
}
.about-img {
    flex: 1 1 300px;
    min-width: 240px;
    max-width: 380px;
}
.about-img img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 2px 12px #34231a08;
    transition: transform 0.3s ease;
}
.about-img img:hover {
    transform: scale(1.02);
}
.about-info { flex: 2 1 400px; }

.form-section {
    background: #faf9e8;
    padding: 2em;
    border-radius: 18px;
    box-shadow: 0 2px 10px #94886810;
    max-width: 410px;
    margin: 2em auto 0 auto;
}
form input, form select {
    display: block;
    margin-bottom: 1.1em;
    width: 100%;
    padding: 0.7em 0.9em;
    font-size: 1.07em;
    border-radius: 6px;
    border: 1px solid #ccc;
    background: #fff;
    transition: border-color 0.2s ease;
}
form input:focus, form select:focus {
    border-color: #1d6ef0;
    outline: none;
}
form button[type=submit] {
    background: #1d6ef0;
    color: #fff;
    font-size: 1.1em;
    border-radius: 9999px;
    border: none;
    padding: 0.7em 2.2em;
    cursor: pointer;
    margin-top: 0.3em;
    font-weight: 500;
    transition: background 0.17s, transform 0.2s ease;
}
form button[type=submit]:hover { 
    background: #1554b0;
    transform: translateY(-1px);
}
.form-section .form-title { text-align: center; color: #60513d; font-weight: 600; }

/* Auth pages */
.auth-section { max-width: 410px; margin: 3em auto; }

.success-message {
    text-align: center;
    font-size: 1.2em;
    color: #1d6ef0;
    background: #e7f8fe;
    padding: 2em 1em;
    border-radius: 12px;
    margin-top: 3em;
    animation: fadeInUp 0.6s ease-out;
}
.logout-link {
    color: #948868;
    margin-top: 1em;
    display: inline-block;
    text-align: right;
}

/* CONTACT SECTION - Updated for side-by-side addresses with individual icons */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: center;
    margin-top: 2em;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    background: #faf9e8;
    border-radius: 16px;
    box-shadow: 0 2px 8px #94886810;
    padding: 1.3em 2em;
    min-width: 250px;
    max-width: 420px;
    width: 100%;
    gap: 1em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px #94886820;
}

.contact-icon {
    margin-right: 1em;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.contact-section strong {
    color: #60513d;
    font-size: 1.14em;
    display: block;
    margin-bottom: 0.35em;
}

.contact-section a {
    text-decoration: underline;
    color: #1d6ef0;
    word-break: break-all;
    transition: color 0.2s ease;
}

.contact-section a:hover {
    color: #1554b0;
}

/* ADDRESS LAYOUT - Side by side with individual icons */
.address-list-row {
    display: flex;
    flex-direction: row;
    gap: 2em;
    width: 100%;
    justify-content: space-between;
}

.address-item {
    display: flex;
    align-items: flex-start;
    flex: 1 1 0;
    gap: 1em;
    min-width: 180px;
    max-width: 320px;
    background: none;
    box-shadow: none;
    padding: 0;
}

.contact-card.addresses {
    min-width: 400px;
    max-width: 920px;
    width: 100%;
    align-items: flex-start;
}

/* MAPS CONTAINER */
.maps-container {
    display: flex;
    gap: 2em;
    margin: 2em 0 0 0;
    flex-wrap: wrap;
}

.map-block {
    flex: 1 1 320px;
    min-width: 240px;
    max-width: 500px;
}

.map-block h3 {
    color: #60513d;
    font-size: 1.18em;
    margin-bottom: .5em;
}

.map-block iframe {
    transition: transform 0.2s ease;
}

.map-block iframe:hover {
    transform: scale(1.02);
}

/* FOOTER STYLES */
.site-footer {
    background: #60513d;
    color: #faf9e8;
    padding: 3em 0 0 0;
    margin-top: 3em;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2em;
}

.footer-brand {
    flex: 1 1 300px;
}

.footer-brand img {
    margin-bottom: 1em;
}

.footer-links, .footer-services, .footer-contact {
    flex: 1 1 200px;
}

.footer h4 {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 1em;
    border-bottom: 1px solid #948868;
    padding-bottom: 0.5em;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer li {
    margin-bottom: 0.5em;
}

.footer a {
    color: #faf9e8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: #1d6ef0;
}

.social-links {
    display: flex;
    gap: 1em;
    margin-top: 1em;
}

.social-links a {
    font-size: 1.5em;
}

.footer-bottom {
    text-align: center;
    padding: 1.5em 0;
    margin-top: 2em;
    border-top: 1px solid #948868;
    font-size: 0.9em;
}

/* QUOTE SECTION */
.quote-section {
    background: #faf9e8;
    padding: 4em 0;
}

.quote-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quote-form {
    flex: 1;
    padding: 3em;
}

.quote-benefits {
    flex: 1;
    padding: 3em;
    background: #1d6ef0;
    color: white;
}

.quote-form h2 {
    color: #60513d;
    margin-bottom: 0.5em;
}

.quote-form p {
    color: #666;
    margin-bottom: 2em;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: 500;
    color: #60513d;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8em;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
}

.form-group textarea {
    min-height: 120px;
}

.btn-quote {
    background: #1d6ef0;
    color: white;
    border: none;
    padding: 1em 2em;
    font-size: 1.1em;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-quote:hover {
    background: #1554b0;
}

.quote-benefits h3 {
    font-size: 1.5em;
    margin-bottom: 1.5em;
}

.quote-benefits ul {
    list-style: none;
    padding: 0;
    margin-bottom: 3em;
}

.quote-benefits li {
    margin-bottom: 1em;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.quote-benefits i {
    font-size: 1.2em;
}

.quote-testimonial {
    background: rgba(255,255,255,0.1);
    padding: 1.5em;
    border-radius: 8px;
}

.quote-testimonial blockquote {
    font-style: italic;
    margin-bottom: 1em;
    line-height: 1.6;
}

.quote-testimonial p {
    text-align: right;
    font-weight: 500;
}

/* FEATURED SERVICES */
.featured-services {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    justify-content: center;
    padding: 3em 2em;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 300px;
    background: white;
    border-radius: 12px;
    padding: 2em;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1em;
}

/* STATS SECTION */
.stats-section {
    display: flex;
    justify-content: center;
    gap: 3em;
    padding: 2em;
    background: #1d6ef0;
    color: white;
    text-align: center;
}

.stat-item {
    flex: 1 1 200px;
    max-width: 200px;
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    display: block;
    margin-bottom: 0.3em;
}

.stat-label {
    font-size: 1.1em;
}

/* TESTIMONIALS */
.testimonials-section {
    padding: 4em 2em;
    background: #faf9e8;
    text-align: center;
}

.testimonials-slider {
    max-width: 800px;
    margin: 2em auto;
    position: relative;
}

.testimonial {
    display: none;
    padding: 2em;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial.active {
    display: block;
}

.testimonial p {
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 1em;
}

.client-info {
    font-weight: bold;
}

.client-company {
    display: block;
    font-weight: normal;
    font-size: 0.9em;
    color: #666;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    margin-top: 1em;
}

.slider-controls button {
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #1d6ef0;
}

.slider-dots {
    display: flex;
    gap: 0.5em;
}

.slider-dots span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.slider-dots span.active {
    background: #1d6ef0;
}

/* BOOKING PAGE STYLES */
.booking-page {
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
}

.booking-form {
    flex: 1 1 500px;
    background: white;
    padding: 2em;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-header {
    margin-bottom: 2em;
}

.step-indicator {
    display: flex;
    align-items: center;
    margin-bottom: 1em;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step.active {
    background: #1d6ef0;
    color: white;
}

.step-line {
    flex: 1;
    height: 2px;
    background: #f0f0f0;
    margin: 0 5px;
}

.form-row {
    display: flex;
    gap: 1.5em;
    margin-bottom: 1.5em;
}

.error-message {
    color: #e74c3c;
    font-size: 0.9em;
    margin-top: 0.3em;
}

.form-actions {
    margin-top: 2em;
    text-align: center;
}

.btn-submit {
    background: #1d6ef0;
    color: white;
    border: none;
    padding: 1em 2em;
    font-size: 1.1em;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
}

.btn-submit:hover {
    background: #1554b0;
}

.form-note {
    font-size: 0.9em;
    color: #666;
    margin-top: 1em;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.booking-benefits {
    flex: 1 1 300px;
    background: #faf9e8;
    padding: 2em;
    border-radius: 12px;
}

.booking-benefits h3 {
    color: #60513d;
    margin-bottom: 1em;
    font-size: 1.3em;
}

.booking-benefits ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2em;
}

.booking-benefits li {
    margin-bottom: 0.8em;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.booking-benefits i {
    color: #1d6ef0;
}

.emergency-contact {
    background: #fff8f8;
    border-left: 4px solid #e74c3c;
    padding: 1em;
    border-radius: 0 8px 8px 0;
}

.emergency-contact h4 {
    color: #e74c3c;
    margin-bottom: 0.5em;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    background: #e74c3c;
    color: white;
    padding: 0.8em 1.5em;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 0.5em;
    transition: background 0.3s;
}

.emergency-btn:hover {
    background: #c0392b;
    color: white;
}

/* HORIZONTAL SERVICES SECTION */
.horizontal-services {
    padding: 4em 2em;
    background: #fff;
    text-align: center;
}

.services-horizontal-container {
    display: flex;
    gap: 1.5em;
    overflow-x: auto;
    padding: 1em 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-horizontal-container::-webkit-scrollbar {
    display: none;
}

.service-horizontal-card {
    flex: 0 0 280px;
    background: #faf9e8;
    border-radius: 12px;
    padding: 2em 1.5em;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-horizontal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-horizontal-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5em;
    border: 3px solid #1d6ef0;
    padding: 5px;
}

.service-horizontal-card h3 {
    color: #60513d;
    margin-bottom: 0.5em;
    font-size: 1.3em;
}

.service-horizontal-card p {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 1.5em;
    flex-grow: 1;
}

.service-horizontal-link {
    color: #1d6ef0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
}

.service-horizontal-link:hover {
    color: #1554b0;
}

/* CENTERED SERVICES SECTION */
.centered-services {
    padding: 4em 0;
    background: #fff;
    text-align: center;
}

.services-centered-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2em;
    overflow: hidden;
}

.services-centered-wrapper {
    display: flex;
    justify-content: center;
    gap: 2em;
    flex-wrap: wrap;
    margin: 0 auto;
}

.service-centered-card {
    flex: 0 0 calc(25% - 2em);
    background: #faf9e8;
    border-radius: 12px;
    padding: 2em 1.5em;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 250px;
    margin-bottom: 1em;
}

.service-centered-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-centered-icon img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5em;
    border: 3px solid #1d6ef0;
    padding: 5px;
}

.service-centered-card h3 {
    color: #60513d;
    margin-bottom: 0.5em;
    font-size: 1.3em;
}

.service-centered-card p {
    color: #666;
    font-size: 0.95em;
    margin-bottom: 1.5em;
    flex-grow: 1;
}

.service-centered-link {
    color: #1d6ef0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
}

.service-centered-link:hover {
    color: #1554b0;
}

/* CHAT WIDGET STYLES */
.chat-widget-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
}

.chat-widget .chat-icon {
    width: 60px;
    height: 60px;
    background: #1d6ef0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(29, 110, 240, 0.3);
    transition: all 0.3s ease;
}

.chat-widget .chat-icon:hover {
    background: #1554b0;
    transform: scale(1.1);
}

.chat-box {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: none;
    flex-direction: column;
    max-height: 500px;
}

.chat-box.active {
    display: flex;
}

.chat-header {
    background: #1d6ef0;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-size: 16px;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
}

.chat-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f9f9f9;
}

.chat-message {
    margin-bottom: 15px;
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
    position: relative;
}

.bot-message {
    background: white;
    border: 1px solid #eee;
    margin-right: auto;
}

.user-message {
    background: #1d6ef0;
    color: white;
    margin-left: auto;
}

.message-time {
    display: block;
    font-size: 10px;
    color: #999;
    margin-top: 5px;
    text-align: right;
}

.user-message .message-time {
    color: rgba(255, 255, 255, 0.7);
}

.chat-input {
    display: flex;
    padding: 10px;
    background: white;
    border-top: 1px solid #eee;
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.chat-input button {
    background: #1d6ef0;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.chat-input button:hover {
    background: #1554b0;
}

/* SERVICE FEATURES WITHOUT BULLETS */
.service-features {
    margin: 1.5em 0;
}

.feature-item {
    margin-bottom: 0.8em;
    padding-left: 0;
    list-style-type: none;
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
}

.feature-item i {
    color: #1d6ef0;
    margin-top: 0.2em;
}

.service-features ul, 
.service-features li {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

/* SERVICE PROCESS SECTION */
.service-process-container {
    background: #faf9e8;
    padding: 3em 2em;
    margin-top: 3em;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.process-title {
    text-align: center;
    color: #60513d;
    margin-bottom: 2em;
    font-size: 1.8em;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 3px;
    background: #1d6ef0;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 22%;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1d6ef0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 1em;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #1d6ef0;
}

.step-content {
    text-align: center;
    padding: 0 1em;
}

.step-content h4 {
    color: #60513d;
    margin-bottom: 0.5em;
}

.step-content p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.5;
}

/* TEAM SECTION STYLES */
.team-section h3 {
    text-align: center;
    color: #60513d;
    margin-bottom: 1.5em;
    font-size: 1.8em;
}

.team-member-card {
    flex: 1 1 300px;
    max-width: 350px;
    background: #faf9e8;
    border-radius: 12px;
    padding: 2em;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.member-icon {
    width: 80px;
    height: 80px;
    background: #1d6ef0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    margin-bottom: 1.5em;
}

.member-info {
    width: 100%;
}

.member-info h4 {
    color: #60513d;
    margin-bottom: 0.5em;
    font-size: 1.3em;
}

.position {
    color: #1d6ef0;
    font-weight: 600;
    margin-bottom: 1em;
    font-size: 0.95em;
}

.member-bio p {
    color: #555;
    font-size: 0.95em;
    line-height: 1.6;
    margin-bottom: 1em;
}

.member-qualifications {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
    margin-top: 1em;
    font-size: 0.85em;
}

.member-qualifications span {
    background: rgba(29, 110, 240, 0.1);
    padding: 0.5em 1em;
    border-radius: 20px;
    color: #1d6ef0;
}

.member-qualifications i {
    margin-right: 0.3em;
}

/* CTA SECTION */
.cta-section {
    text-align: center;
    padding: 3em 2em;
    background: #faf9e8;
    margin: 2em auto;
    max-width: 1200px;
    width: 90%;
}

.cta-section h2 {
    color: #60513d;
    margin-bottom: 0.5em;
    padding: 0 1em;
}

.cta-section p {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 1.5em;
    padding: 0 1em;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5em;
    flex-wrap: wrap;
}

.btn-dark, .btn-main {
    padding: 0.8em 2em;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-main {
    background: #1d6ef0;
    color: white;
}

.btn-main:hover {
    background: #1554b0;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 900px) {
    .maps-container { 
        flex-direction: column; 
        gap: 1em;
    }
    .map-block { 
        max-width: 100%; 
    }
    .quote-container {
        flex-direction: column;
    }
    .quote-form, .quote-benefits {
        padding: 2em;
    }
}

@media (max-width: 850px) {
    .contact-section {
        flex-direction: column;
        gap: 1em;
    }
}

@media (max-width: 800px) {
    .hero {
        padding-top: 4em;
        padding-left: 6vw;
        padding-right: 3vw;
    }
}

@media (max-width: 780px) {
    .nav-inner { width: 98vw; }
    section.page-section { max-width: 100vw; }
    .plan-list, .service-list, .about-company { flex-direction: column; gap: 1em; }
    .about-img, .about-info { width: 100%; max-width: 100%; }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .booking-page {
        flex-direction: column;
    }
    .services-horizontal-container {
        gap: 1em;
        padding-bottom: 1em;
    }
    .service-horizontal-card {
        flex: 0 0 240px;
        padding: 1.5em 1em;
    }
    .service-horizontal-icon img {
        width: 60px;
        height: 60px;
    }
    .services-centered-container {
        padding: 0 1em;
    }
    .services-centered-wrapper {
        gap: 1em;
    }
    .service-centered-card {
        flex: 0 0 calc(50% - 1em);
        min-width: 200px;
    }
    .process-timeline {
        flex-direction: column;
        align-items: center;
    }
    .process-timeline::before {
        width: 3px;
        height: 80%;
        left: 50%;
        top: 10%;
        transform: translateX(-50%);
    }
    .process-step {
        width: 100%;
        margin-bottom: 2em;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
    .step-circle {
        margin-right: 1em;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .step-content {
        text-align: left;
        padding: 0;
    }
    .team-member-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .member-qualifications {
        flex-direction: column;
        align-items: center;
    }
    .cta-section {
        padding: 2em 1em;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1em;
    }
    .btn-dark, .btn-main {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 650px) {
    .address-list-row {
        flex-direction: column;
        gap: 1em;
    }
    .address-item {
        min-width: 0;
        max-width: 100%;
    }
    .contact-card.addresses {
        min-width: 250px;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    body { font-size: 90%; }
    .hero { 
        padding: 4vw 0 1vw 0;
        padding-left: 4vw;
        padding-right: 2vw;
    }
    .cta-estimate { padding: 1em 0.5em; font-size: 1.2em; }
    nav.navbar { padding: 0.8rem 0;}
    .nav-inner { flex-direction: column; gap: 0.7em; align-items: flex-start; }
    .nav-links { justify-content: flex-start; gap: 5vw; }
    .right-nav { gap: 0.7em; }
}

@media (max-width: 480px) {
    .horizontal-services {
        padding: 3em 1em;
    }
    .service-horizontal-card {
        flex: 0 0 200px;
    }
    .centered-services {
        padding: 3em 0;
    }
    .service-centered-card {
        flex: 0 0 100%;
    }
    .chat-widget-container {
        right: 15px;
        bottom: 80px;
    }
    .chat-box {
        width: 280px;
    }
    .service-process-container {
        padding: 2em 1em;
    }
    .process-step {
        margin-bottom: 1.5em;
    }
}

@media (max-width: 1024px) {
    .service-centered-card {
        flex: 0 0 calc(50% - 2em);
    }
}