:root {
    --primary-color: #00B233;
    /* Slightly darker green for better contrast on white */
    --primary-light: #dcfce7;
    /* Light green background */
    --bg-main: #ffffff;
    --bg-alt: #f8f9fa;
    --text-main: #111827;
    --text-muted: #6b7280;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-main);
}

.highlight {
    color: var(--primary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 178, 51, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 178, 51, 0.4);
    background-color: #00992b;
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Header */
header {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    z-index: 100;
    /* Added subtle gradient for text readability over hero */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    /* Keep logo white for Hero overlay */
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    /* Keep nav links white for Hero overlay */
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('assets/hero-bg.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark overlay only for Hero to make text pop */
    background: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    /* Hero text stays white */
}

.hero p {
    font-size: 1.25rem;
    color: #e5e7eb;
    /* Light gray for readability on dark overlay */
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
}

/* Intro Section */
.intro-section {
    padding: 100px 0;
    background-color: var(--bg-main);
}

.intro-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.intro-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.intro-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.service-types {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.type-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-main);
    padding: 40px;
    border-radius: 20px;
    text-align: left;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid #e5e7eb;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.type-card .icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
    background: var(--primary-light);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.type-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.type-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background-color: var(--bg-alt);
    /* Light gray for contrast */
    border-bottom: none;
}

.process-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    background: var(--bg-main);
    /* White card */
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
}

.process-content {
    flex: 1;
    max-width: 400px;
}

.process-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-main);
}

.process-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.process-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: #e5e7eb;
    z-index: 0;
}

.step-item {
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0, 178, 51, 0.2);
}

.step-info h3 {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 8px;
}

.step-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Services / Tabs Section */
.services {
    padding: 100px 0;
    background-color: var(--bg-main);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--bg-alt);
    border: 1px solid #e5e7eb;
    color: var(--text-muted);
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 178, 51, 0.2);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--bg-main);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    min-height: 400px;
    box-shadow: var(--shadow-xl);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-img {
    flex: 1;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-img:hover img {
    transform: scale(1.05);
}

.service-details {
    flex: 1;
    text-align: left;
}

.service-details h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.price {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 5px;
    display: block;
}

.duration {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.service-details p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-weight: 500;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
}

/* Reviews Section */
#reviews {
    padding: 100px 0;
    background-color: var(--bg-alt);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 10px;
}

.review-card {
    background: var(--bg-main);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #e5e7eb;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-badge {
    background-color: #eff6ff;
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    text-transform: uppercase;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.reviewer-name {
    font-weight: 700;
    color: var(--text-main);
    border-top: 1px solid #f3f4f6;
    padding-top: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    font-size: 14px;
    color: #e5e7eb;
    /* Light text for hero badge */
}

/* CTA Banner */
.cta-banner {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/service-ceramic.png');
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}

.cta-banner h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

/* Footer */
footer {
    padding: 60px 0 30px;
    background-color: #111;
    /* Keep footer dark for contrast */
    text-align: center;
    color: #fff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    background: #222;
}

.social-link:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 3rem;
    }

    /* Navigation Mobile */
    .menu-toggle {
        display: block;
        color: #fff;
        font-size: 28px;
        cursor: pointer;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: #111;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }

    .nav-links.mobile-active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 24px;
        color: #fff;
    }

    /* Center Text Mobile */
    .hero-content {
        padding: 0 20px;
    }

    .intro-header,
    .process-wrapper,
    .service-details {
        text-align: center;
    }

    .process-wrapper {
        flex-direction: column;
        padding: 40px;
        align-items: center;
    }

    .process-steps {
        width: 100%;
        text-align: left;
        /* Steps often look better left aligned even on mobile, but wrapper title is centered */
    }

    /* Step items centered for better mobile aesthetic request */
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .process-steps::before {
        left: 50%;
        margin-left: -1px;
    }

    .tab-content.active {
        flex-direction: column;
        padding: 20px;
        box-shadow: none;
        border: none;
        text-align: center;
    }

    .service-details {
        text-align: center;
        /* Enforce center on mobile */
    }

    .service-details h3,
    .price,
    .duration,
    .features-list li {
        justify-content: center;
    }

    .service-img {
        width: 100%;
        height: 250px;
        margin-bottom: 30px;
    }

    .tabs {
        flex-wrap: wrap;
    }
}

/* Close Menu */
/* Close Menu */
.close-menu {
    display: none;
}

@media (max-width: 900px) {
    .close-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
        color: white;
        font-size: 28px;
    }
}

.booking-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.booking-modal.active {
    display: flex;
}

.booking-modal-content {
    background-color: #fefefe;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    height: 80vh;
    position: relative;
    animation: slideUp 0.3s ease-out;
    overflow: hidden;
}

.booking-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.close-modal:hover,
.close-modal:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .booking-modal-content {
        width: 100%;
        height: 100%;
        max-width: 100%;
        border-radius: 0;
    }
}

@media (min-width: 1000px) {
    .menu-toggle {
        display: none;
    }
}