/* ===== TEMMYTEE AUTO-DOC VENTURE - COMPLETE STYLESHEET ===== */
:root {
    --white: #ffffff;
    --green: #1e7e34;
    --green-light: #d0f0d6;
    --green-dark: #145a26;
    --gray: #f8f9f8;
    --text-dark: #222;
    --text-light: #555;
    --shadow: 0 4px 12px rgba(0, 40, 0, 0.08);
    --shadow-hover: 0 16px 28px rgba(30, 126, 52, 0.15);
    --border-radius: 28px;
    --border-radius-sm: 12px;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}

.section-title {
    font-size: 2.2rem;
    margin: 2.5rem 0 1.5rem;
    border-left: 6px solid var(--green);
    padding-left: 1.5rem;
}

.green-text {
    color: var(--green);
}

/* ===== ACCESSIBILITY ===== */
a,
button {
    transition: all 0.2s ease;
}

:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 4px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 0.8rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: var(--text-dark);
}

.logo-img {
    width: 127px;
    height: 105px;
    object-fit: contain;
}

.logo-text {
    font-weight: 750;
    font-size: 2.2rem;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--green);
    font-weight: 800;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.5rem 0.2rem;
    border-bottom: 2px solid transparent;
}

.nav-links li a:hover,
.nav-links li a:focus-visible,
.nav-links li a.active {
    border-bottom-color: var(--green);
    color: var(--green);
}

.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--green);
    cursor: pointer;
    padding: 0.2rem 0.8rem;
    border-radius: 8px;
}

.hamburger:hover {
    background-color: var(--green-light);
}

/* ===== MOBILE NAVIGATION ===== */
@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 5%;
        flex-wrap: wrap;
        justify-content: space-between;
    }

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

    .logo-img {
        width: 60px;
        height: 50px;
    }

    .logo-text {
        font-size: 1.5rem;
        white-space: nowrap;
    }

    .hamburger {
        display: block;
        margin-left: auto;
        /* Ensure it pushes to the right if needed, though space-between handles it */
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out, padding 0.3s ease;
        padding: 0;
        margin-top: 0;
        background-color: var(--white);
        border-radius: 0 0 12px 12px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        /* Nice shadow for the dropdown */
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        /* Subtle separator */
    }

    .nav-links.show {
        max-height: 500px;
        padding: 1rem 0;
        margin-top: 1rem;
        /* Space between header and menu */
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        /* Center links on mobile */
        padding: 0;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        padding: 0.8rem 0;
        border-radius: 8px;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        background-color: var(--green-light);
        color: var(--green-dark);
        border-bottom: none;
        /* Remove desktop border */
    }
}

/* ===== EXTRA SMALL MOBILE (Very small screens) ===== */
@media (max-width: 480px) {
    .logo-img {
        width: 50px;
        height: 42px;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .navbar {
        padding: 0.5rem 2%;
    }
}

/* ===== CONTAINER & LAYOUT ===== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 5%;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(145deg, var(--white) 20%, #f0fff0 100%);
    padding: 3rem 2rem;
    border-radius: 40px;
    margin: 1rem 0 3rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--green-light);
    text-align: center;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
}

.hero p {
    font-size: 1.3rem;
    margin-top: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #2d4a2d;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

/* ===== CARDS GRID ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card,
.info-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid #e0f0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover,
.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 3rem;
    color: var(--green);
    margin-bottom: 1.2rem;
}

.service-card h3,
.info-card h3 {
    color: var(--green);
    margin-bottom: 0.8rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--green);
    color: white;
    box-shadow: 0 4px 12px rgba(30, 126, 52, 0.3);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 126, 52, 0.4);
}

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

.btn-outline:hover {
    background: var(--green-light);
    transform: translateY(-2px);
}

/* ===== INFO BLOCKS ===== */
.info-block {
    background: var(--gray);
    padding: 2rem;
    border-radius: 32px;
    margin: 2rem 0;
    border-left: 5px solid var(--green);
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-list i {
    color: var(--green);
    font-size: 1.2rem;
}

/* ===== CONTACT SECTION ===== */
.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background: var(--green-light);
    padding: 2.5rem;
    border-radius: 48px;
    margin: 2rem 0;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 60px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-item i {
    color: var(--green);
    font-size: 1.8rem;
}

.contact-item a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--green);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-item {
        width: 100%;
        justify-content: center;
    }
}

/* ===== FORMS ===== */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 32px;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 2rem auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--green-dark);
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0f0e0;
    border-radius: 16px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--green);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ===== TABLES ===== */
.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 2rem 0;
}

.price-table th {
    background: var(--green);
    color: white;
    padding: 1rem;
    text-align: left;
}

.price-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--green-light);
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tr:hover {
    background: var(--green-light);
}

/* ===== FOOTER ===== */
.footer {
    background: #1a2a1a;
    color: #ddd;
    padding: 3rem 5% 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-col p,
.footer-col ul {
    margin-top: 0.8rem;
}

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

.footer-col ul li {
    margin: 0.6rem 0;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: padding-left 0.3s;
}

.footer-col ul li a:hover {
    color: var(--green-light);
    padding-left: 5px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.footer-logo small {
    color: var(--green-light);
    font-size: 1rem;
}

.copyright {
    text-align: center;
    padding-top: 3rem;
    margin-top: 2rem;
    border-top: 1px solid #334433;
    font-size: 0.9rem;
    color: #a0b8a0;
}

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

.social-links a {
    color: white;
    background: var(--green);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: var(--green-dark);
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.py-4 {
    padding: 2rem 0;
}

.flex {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.align-center {
    align-items: center;
}