:root {
    --primary-color: #007bff; /* Blue for primary actions */
    --secondary-color: #ffc107; /* Yellow/Orange for accents */
    --text-dark: #333;
    --text-light: #f4f4f4;
    --bg-light: #ffffff;
    --bg-dark: #222;
    --grey-light: #f8f9fa;
    --grey-medium: #e9ecef;
    --site-header-height: 80px; /* Default desktop header height */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Adjusted h1 for general use, site-header-title will override */
h1 {
    font-size: 2.8em;
    color: var(--primary-color);
}

h2 {
    font-size: 2.2em;
    color: var(--text-dark);
}

h3 {
    font-size: 1.8em;
}

h4 {
    font-size: 1.4em;
}

p {
    margin-bottom: 15px;
}

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

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 10px 5px 10px 0;
}

.btn.primary-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn.primary-btn:hover {
    background-color: #0056b3; /* Darken primary color */
    border-color: #0056b3;
}

.btn.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn.large-btn {
    padding: 15px 30px;
    font-size: 1.2em;
}

/* NEW: Site Header Styles */
.site-header {
    background-color: var(--bg-light);
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.logo-area {
    display: flex;
    align-items: center;
}

.site-header-logo {
    width: 80px; /* Increased logo size */
    height: auto;
    margin-right: 10px;
    border-radius: 50%;
}

.site-header-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin: 0;
    white-space: nowrap; /* Prevent title from wrapping */
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-nav ul li a {
    color: var(--text-dark);
    font-weight: bold;
    font-size: 1.1em;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: var(--primary-color);
}

.header-contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-tagline {
    color: var(--primary-color);
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
}

.header-call-btn {
    padding: 8px 15px;
    font-size: 0.9em;
    margin: 0;
}

.hamburger-menu {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 20px; /* Space between call button and hamburger */
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Hero Section adjustments */
.hero-section {
    padding: 60px 20px; /* Base padding */
    padding-top: calc(60px + var(--site-header-height)); /* Adjust for sticky header height */
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(hero-background-new.png) no-repeat center center/cover;
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Remove or override old hero elements */
.hero-section .logo-container,
.hero-section .tagline,
.hero-section h1.hero-h1-old-style { /* Removed or adjusted from previous version */
    display: none;
}

/* Ensure hero section h2 and p remain styled for the hero */
.hero-section h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: var(--text-light);
}

.hero-section .service-description {
    font-size: 2em;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-section .btn {
    margin: 15px 10px;
    font-size: 1.1em;
    padding: 15px 30px;
}

.hero-image {
    display: none; /* Hide for smaller screens or when background image is used */
}

/* Info Section (Why Choose Us) */
.info-section {
    background: var(--grey-light);
    padding: 60px 0;
    text-align: center;
}

.info-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.info-item {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex; /* Added for better alignment of image and text */
    flex-direction: column; /* Stack image and text vertically */
    align-items: center; /* Center content horizontally */
    text-align: center; /* Center text within the card */
}

.info-item:hover {
    transform: translateY(-10px);
}

.info-item-icon {
    width: 100%; /* Make image fill card width */
    max-width: 150px; /* Max width for images */
    height: auto;
    object-fit: contain; /* Ensure image is fully visible */
    border-radius: 8px; /* Match card border radius */
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Subtle shadow for images */
}

.info-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Call to Action Banner */
.call-to-action-banner {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 50px 0;
    margin-top: 60px;
    text-align: center;
}

.call-to-action-banner h3 {
    color: var(--secondary-color);
    font-size: 2.5em;
    margin-bottom: 15px;
}

.call-to-action-banner p {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.call-to-action-banner .btn.primary-btn {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-dark);
}

.call-to-action-banner .btn.primary-btn:hover {
    background-color: #e0a800; /* Darken secondary color */
    border-color: #e0a800;
}

.call-to-action-banner .btn.secondary-btn {
    color: var(--text-light);
    border-color: var(--text-light);
}
.call-to-action-banner .btn.secondary-btn:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

/* About Section */
.about-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.about-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    color: var(--primary-color);
}

.about-text ul {
    list-style: none;
    margin-top: 20px;
}

.about-text ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.about-text ul li .icon {
    font-size: 1.5em;
    color: green;
    margin-right: 10px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Services Offered Section */
.services-offered-section {
    padding: 60px 0;
    background: var(--grey-medium);
    text-align: center;
}

.services-offered-section h2 {
    color: var(--primary-color);
}

.services-offered-section > p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-icon {
    width: 100%; /* Make image fill card width */
    max-height: 200px; /* Limit height to keep cards uniform */
    object-fit: cover; /* Cover the area, crop if needed */
    border-radius: 8px; /* Match card border radius */
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Subtle shadow for images */
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: var(--bg-light); /* Or a contrasting color */
    text-align: center;
}

/* New Section: Experience Section */
.experience-section {
    padding: 60px 0;
    background: var(--grey-light);
    text-align: center;
}

.experience-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.experience-heading {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.5em;
}

.experience-text {
    font-size: 1.1em;
    line-height: 1.8;
}

.experience-text p {
    margin-bottom: 20px;
}

.separator {
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0px auto 30px auto;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .experience-heading {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .experience-heading {
        font-size: 1.6em;
    }
    .experience-text {
        font-size: 1em;
    }
}

/* NEW: Detailed Info Section */
.detailed-info-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.detailed-info-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.detailed-info-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.detailed-info-section h3 {
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.6em;
}

.detailed-info-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.detailed-info-section strong {
    color: var(--primary-color);
}

.detailed-info-section em {
    font-style: normal;
    color: var(--secondary-color);
}

.detailed-info-section ul.styled-list {
    list-style: none; /* Remove default bullet */
    padding-left: 0;
    margin-bottom: 20px;
}

.detailed-info-section ul.styled-list li {
    margin-bottom: 8px;
    padding-left: 25px; /* Indent text */
    position: relative;
    font-size: 1.05em;
    line-height: 1.5;
}

.detailed-info-section ul.styled-list li::before {
    content: '✔️'; /* Custom bullet icon */
    position: absolute;
    left: 0;
    color: green; /* Color of the checkmark */
    font-size: 1.1em;
    top: 0;
}

.detailed-info-section .customer-quotes p {
    font-style: italic;
    color: #555;
    margin-left: 20px; /* Indent quotes slightly */
    border-left: 3px solid var(--secondary-color); /* Add a visual cue for quotes */
    padding-left: 15px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .detailed-info-section h2 {
        font-size: 2em;
    }
    .detailed-info-section h3 {
        font-size: 1.4em;
    }
    .detailed-info-section ul.styled-list li {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .detailed-info-section h2 {
        font-size: 1.6em;
    }
    .detailed-info-section h3 {
        font-size: 1.2em;
    }
    .detailed-info-section ul.styled-list li {
        font-size: 0.95em;
    }
    .detailed-info-section .customer-quotes p {
        margin-left: 0;
        padding-left: 10px;
    }
}

.testimonials-section h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2.5em;
}

.testimonial-carousel-container {
    position: relative;
    max-width: 900px; /* Adjust as needed */
    margin: 0 auto;
    display: flex;
    align-items: center;
    overflow: hidden; /* Hide overflowing cards */
}

.testimonial-carousel-wrapper {
    flex-grow: 1;
    overflow: hidden; /* Important for carousel functionality */
}

.testimonial-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: max-content; /* Allow track to be wider than wrapper */
}

.testimonial-card {
    flex: 0 0 300px; /* Each card takes up 300px width */
    margin: 0 15px; /* Space between cards */
    background: var(--grey-light);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes content apart, good for varied text lengths */
    min-height: 220px; /* Ensure cards have a minimum height */
}

.customer-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.customer-pic {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary-color);
}

.customer-name {
    font-weight: bold;
    color: var(--text-dark);
    margin: 0;
    font-size: 1.1em;
}

.stars {
    color: var(--secondary-color); /* Yellow/Orange for stars */
    font-size: 1.2em;
    margin-top: 5px;
}

.star.half {
    /* You might need a more complex solution for true half-stars if SVG is not used.
       For simplicity, we can use a filled star and visually imply a half.
       Or, use a background gradient for the half-star span */
    position: relative;
    display: inline-block;
    width: 0.6em; /* Half the width of a full star */
    overflow: hidden;
}

.star.half::before {
    content: '★'; /* Full star character */
    position: absolute;
    left: 0;
    width: 50%; /* Only show half of the star */
    overflow: hidden;
    color: var(--secondary-color);
}
.star.half.empty::before { /* For showing an empty part of a half star */
    content: '★';
    color: var(--grey-medium); /* Or a lighter color */
    width: 100%;
}

.review-date {
    font-size: 0.85em;
    color: #666;
    margin-top: 5px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-top: 10px;
    line-height: 1.5;
}

.carousel-arrow {
    background: var(--primary-color);
    border: none;
    color: var(--text-light);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background-color: #0056b3;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev-arrow {
    left: -20px; /* Position outside for better visibility */
}

.carousel-arrow.next-arrow {
    right: -20px; /* Position outside for better visibility */
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.carousel-pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    background-color: var(--grey-medium);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.pagination-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 50px 0 20px;
    font-size: 0.9em;
}

footer h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

footer a {
    color: var(--text-light);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column .btn {
    margin-top: 15px;
    font-size: 0.9em;
    padding: 10px 20px;
}

.footer-column.contact-info .btn.primary-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
}
.footer-column.contact-info .btn.primary-btn:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    :root {
        --site-header-height: 60px; /* Adjusted header height for tablets/smaller desktops */
    }
    .main-nav {
        display: none; /* Hide nav links on smaller screens */
    }
    .header-contact-info .header-tagline {
        display: none; /* Hide tagline on smaller screens */
    }
    .hamburger-menu {
        display: flex; /* Show hamburger menu */
    }
    .header-wrapper {
        justify-content: space-between;
        gap: 15px; /* Add some gap for wrapping items */
    }
    .header-contact-info {
        gap: 10px;
    }

    /* Mobile nav menu styles */
    .main-nav.active {
        display: block; /* Show as block for full width */
        position: absolute;
        top: 100%; /* Position below the site-header */
        left: 0;
        width: 100%;
        background-color: var(--bg-light);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 999;
        padding: 20px 0;
        text-align: center;
    }
    .main-nav.active ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .main-nav.active ul li a {
        font-size: 1.2em;
        padding: 10px 0;
        width: 100%; /* Make links full width for easier tapping */
        display: block;
    }
    .main-nav.active ul li a:hover {
        background-color: var(--grey-light);
    }

    /* Hamburger animation */
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .hero-section {
        padding-top: calc(40px + var(--site-header-height)); /* Adjust for smaller mobile header */
    }
    .hero-section h2 {
        font-size: 2em; /* Smaller font for hero heading on tablets */
    }
    .hero-section .service-description {
        font-size: 1.5em; /* Smaller font for hero description */
    }
}

@media (max-width: 768px) {
    :root {
        --site-header-height: 60px; /* Consistent height for smaller screens */
    }
    .site-header {
        padding: 10px 15px;
    }
    .site-header-title {
        font-size: 1.5em;
    }
    .site-header-logo {
        width: 60px; /* Adjusted logo size for medium screens */
    }
    .header-call-btn {
        padding: 6px 12px;
        font-size: 0.85em;
    }

    .info-section .container,
    .about-section .container {
        flex-direction: column;
    }

    .info-item,
    .about-text,
    .about-image {
        min-width: unset;
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-section h2 {
        font-size: 2em;
    }

    .testimonial-carousel-container {
        flex-direction: column; /* Stack arrows and carousel wrapper */
        max-width: 100%;
        margin: 0;
        padding: 0 10px; /* Add some padding to the sides */
    }

    .testimonial-carousel-wrapper {
        width: 100%; /* Take full width */
        margin-top: 20px;
    }

    .testimonial-carousel-track {
        justify-content: center; /* Center cards when fewer visible */
    }

    .testimonial-card {
        flex: 0 0 90%; /* Occupy most of the width */
        margin: 0 5%; /* Keep spacing */
    }

    .carousel-arrow {
        position: static; /* Remove absolute positioning */
        transform: none; /* Remove transform */
        margin: 10px auto; /* Center buttons */
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    .carousel-arrow.prev-arrow {
        order: 2; /* Position prev arrow below carousel */
    }
    .carousel-arrow.next-arrow {
        order: 3; /* Position next arrow below prev arrow */
    }
    .carousel-pagination {
        order: 4; /* Position pagination last */
    }
    .carousel-arrow:hover {
        transform: scale(1.1); /* Keep hover effect consistent */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column ul {
        padding-left: 0;
    }
    .footer-column .btn {
        margin: 10px auto;
    }
    /* Logo area in header can wrap or adjust */
    .logo-area {
        flex-grow: 1;
        justify-content: flex-start;
    }
    .header-contact-info {
        order: 3; /* Move contact info below logo/nav toggle */
        flex-basis: 100%; /* Take full width */
        justify-content: center;
        margin-top: 10px;
    }
    .hamburger-menu {
        margin-left: auto; /* Push hamburger to the right */
        order: 2; /* Place hamburger after logo area */
    }

    .fab-call-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .fab-call-btn svg {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2em;
    }
    h2 {
        font-size: 1.6em;
    }
    h3 {
        font-size: 1.4em;
    }
    .btn {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .hero-section .btn {
        font-size: 1em;
        padding: 12px 20px;
    }
    .call-to-action-banner .btn {
        font-size: 1em;
    }
    .site-header-title {
        font-size: 1.2em;
    }
    .site-header-logo {
        width: 50px; /* Adjusted logo size for small screens */
    }
    .header-call-btn {
        display: none; /* Hide call button on very small screens */
    }
    .header-contact-info {
        gap: 0; /* No gap if button is hidden */
        margin-top: 5px;
    }
    .hamburger-menu {
        margin-left: auto; /* Push hamburger to the right */
        order: 2; /* Place hamburger after logo area */
    }

    .fab-call-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    .fab-call-btn svg {
        width: 25px;
        height: 25px;
    }
}

/* Floating Action Button (FAB) for call */
.fab-call-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--primary-color); /* Changed to primary blue */
    color: var(--text-light); /* Changed to light text for contrast */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    z-index: 1001; /* Ensure it's above other elements */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.fab-call-btn:hover {
    transform: scale(1.1);
    background-color: #0056b3; /* Darken primary blue on hover */
}

.fab-call-btn svg {
    width: 30px; /* Size of the phone icon */
    height: 30px;
    fill: currentColor; /* Inherit color from parent */
}