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

/* =========================
   BASE
========================= */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

/* =========================
   HEADER / NAVBAR
========================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
}

.navbar {
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0.8rem 1.5rem;
}

/* LOGO */
.logo img {
    height: 100px;
    width: auto;
    display: block;
}

/* NAV LINKS (DESKTOP) */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #cccccc;
}

/* HAMBURGER */
.hamburger {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

/* =========================
   HERO
========================= */

.hero {
    height: 100vh;

    background:
        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url("images/hero.jpeg");

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: white;
}

.hero-content {
    max-width: 700px;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* =========================
   BUTTON
========================= */

.btn {
    display: inline-block;
    padding: 12px 24px;

    background: white;
    color: black;

    text-decoration: none;
    border-radius: 5px;

    transition: 0.3s;
}

.btn:hover {
    background: #dddddd;
}

/* =========================
   SECTIONS
========================= */

.section {
    max-width: 1200px;
    margin: auto;

    padding: 60px 2rem 50px;
}

.section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

/* =========================
   SERVICES CARDS
========================= */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;

    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.card img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.card h3,
.card p {
    padding: 1rem;
}

/* =========================
   ABOUT SLIDER
========================= */

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-slider {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
}

.slide {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: none;
}

.slide.active {
    display: block;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    background: rgba(0,0,0,0.5);
    color: white;

    border: none;
    padding: 10px 15px;

    cursor: pointer;
    font-size: 20px;

    z-index: 10;
    border-radius: 5px;
}

.arrow:hover {
    background: rgba(0,0,0,0.7);
}

.arrow.left { left: 10px; }
.arrow.right { right: 10px; }

/* =========================
   REVIEWS
========================= */

.reviews-section {
    text-align: center;
    background: #f8f8f8;
}

.reviews-subtitle {
    margin-bottom: 3rem;
    color: #666;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.review-item {
    padding: 1rem;
}

.review-text {
    color: #555;
    font-style: italic;
    margin: 1rem 0;
}

.review-item h4 {
    color: #111;
}

.reviews-button {
    margin-top: 3rem;
}

.reviews-button .btn {
    background: #f5c542;
    color: #111;
    font-weight: 600;
}

.reviews-button .btn:hover {
    background: #e6b93a;
}

/* CONTACT GRID LAYOUT */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;

    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* OPTIONAL: cleaner text spacing */
.contact-box {
    text-align: center;
}

/* MOBILE STACK */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   GOOGLE TRANSLATE
========================= */

#google_translate_element {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
}

/* =========================
   FOOTER
========================= */

footer {
    background: #111;
    color: white;

    text-align: center;

    padding: 1rem 2rem;
    margin-top: 10px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    /* hamburger visible */
    .hamburger {
        display: block;
    }

    /* nav dropdown */
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;

        background: rgba(0,0,0,0.95);

        display: none;
        flex-direction: column;
        text-align: center;

        padding: 1rem 0;
        gap: 1.5rem;
    }

    .nav-links.active {
        display: flex;
    }

    /* about stacks */
    .about-section {
        grid-template-columns: 1fr;
    }

    /* hero fix */
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 90px;
    }

    /* smaller text */
    .hero h1 {
        font-size: 2.5rem;
    }
}