/* style.css */

:root {
    --primary-color: #1b4332;
    --primary-light: #2d6a4f;
    --primary-dark: #0f2818;
    --accent-color: #c46c27;
    --secondary-accent: #b8860b;
    --text-dark: #1a1a1a;
    --text-light: #f4f4f4;
    --white: #ffffff;
    --earth-brown: #5d4037;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --radius: 12px;
}

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

@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Oswald:wght@400;500;600;700&family=Lora:ital,wght@1,700&family=Caveat:wght@600&family=Inter:wght@400;500;600&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fafaf8;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 0 rgba(27, 67, 50, 0.12), 0 4px 20px rgba(27, 67, 50, 0.07);
}

.nav-company-name {
    font-family: 'Alfa Slab One', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    letter-spacing: -0.3px;
    line-height: 1;
}

.nav-btn {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.6rem 1.4rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(196, 108, 39, 0.25);
    letter-spacing: 0.2px;
}

.nav-btn:hover {
    background-color: #d17a33;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 108, 39, 0.35);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0d0d0d;
    min-height: 100dvh;
    min-height: 100vh; /* fallback */
    overflow: hidden;
    padding: 4rem 6%;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('nottatracelogo.png') center / contain no-repeat;
    opacity: 0.17;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: heroFadeIn 0.9s ease-out 0.15s both;
}

.hero-line-1 {
    font-family: 'Alfa Slab One', serif;
    font-size: clamp(3.5rem, 16vw, 9rem);
    line-height: 0.92;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: -1px;
    margin: 0;
}

.hero-line-2 {
    font-family: 'Alfa Slab One', serif;
    font-size: clamp(2.1rem, 9.5vw, 6rem);
    line-height: 1.05;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 3px;
    margin: 0 0 1.6rem;
}

.hero-motto {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(0.68rem, 2vw, 0.88rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(196, 108, 39, 0.9);
    font-weight: 400;
    margin-bottom: 2.8rem;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-28px); }
    to   { opacity: 1; transform: translateX(0); }
}


/* ===== CTA BUTTON ===== */
.cta-container {
    animation: heroFadeIn 1s ease-out 1s both;
}

.pulse-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1.1rem 2.6rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 28px rgba(196, 108, 39, 0.38);
    animation: organicGrow 2.8s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.pulse-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.18);
    transition: left 0.5s ease;
}

.pulse-button:hover::before { left: 100%; }

.pulse-button:hover {
    background-color: #d17a33;
    box-shadow: 0 14px 38px rgba(196, 108, 39, 0.5);
    transform: translateY(-3px);
}

.pulse-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(196, 108, 39, 0.3);
}


@keyframes organicGrow {
    0%, 100% { transform: scale(1);    box-shadow: 0 8px 28px rgba(196, 108, 39, 0.38); }
    50%       { transform: scale(1.04); box-shadow: 0 14px 38px rgba(196, 108, 39, 0.48); }
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
    border-radius: 2px;
    margin: 0 auto 2rem;
}

/* ===== SERVICES ===== */
.services {
    padding: var(--spacing-lg) 5%;
    background: linear-gradient(180deg, #fafaf8 0%, #f5f4f0 100%);
    text-align: center;
}

h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 2.6rem;
    font-family: 'Alfa Slab One', serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.services h2 {
    margin-bottom: 0.5rem;
}

.services .section-divider {
    margin-bottom: 2.5rem;
}

.grid {
    max-width: 820px;
    margin: 0 auto;
    text-align: left;
}

.service-item {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(27, 67, 50, 0.1);
    align-items: start;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding-top: 0.15rem;
}

.service-item-desc {
    font-size: 0.95rem;
    color: #4a4a42;
    line-height: 1.8;
}

/* ===== SERVICE AREAS ===== */
.service-areas {
    padding: var(--spacing-lg) 5%;
    background: linear-gradient(135deg, #f0ede6 0%, #e8e4db 100%);
    text-align: center;
}

.service-areas h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.areas-subtitle {
    color: #5a5a52;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.service-map-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(27, 67, 50, 0.14);
    border: 1px solid rgba(27, 67, 50, 0.1);
}

/* ===== WHY CHOOSE US ===== */
.features {
    padding: var(--spacing-lg) 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 108, 39, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

/* ===== GALLERY ===== */
.gallery-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius);
    background: rgba(0,0,0,0.1);
    min-height: 300px;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.35);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 0.4rem 0.9rem;
    cursor: pointer;
    border-radius: 4px;
    z-index: 10;
    line-height: 1;
    transition: background 0.2s;
}

.gallery-btn:hover { background: rgba(0,0,0,0.6); }
.gallery-prev { left: 0.75rem; }
.gallery-next { right: 0.75rem; }

.gallery-dots {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.gallery-dot.active { background: white; }

.gallery-container:not(:has(.gallery-slide)) .gallery-btn,
.gallery-container:not(:has(.gallery-slide)) .gallery-dots { display: none; }

@media (max-width: 600px) { .gallery-slide { height: 220px; } }

/* ===== CONTACT CTA SECTION ===== */
.contact-section {
    padding: var(--spacing-lg) 5%;
    background: linear-gradient(180deg, #fafaf8 0%, #f5f4f0 100%);
    text-align: center;
}

.contact-content {
    max-width: 580px;
    margin: 0 auto;
}

.contact-section h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-section .section-divider {
    margin-bottom: 1.2rem;
}

#contact-subtitle {
    font-size: 1.05rem;
    color: #5a5a52;
    margin-bottom: 2.2rem;
    line-height: 1.7;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.contact-btn {
    display: inline-block;
    padding: 0.95rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.25s ease;
}

.contact-btn--call {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(27, 67, 50, 0.25);
}

.contact-btn--call:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(27, 67, 50, 0.32);
}

.contact-btn--sms {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(196, 108, 39, 0.28);
}

.contact-btn--sms:hover {
    background-color: #d17a33;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(196, 108, 39, 0.38);
}

.contact-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Lora', serif;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* ===== FAB ===== */
.fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d17a33 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 6px 22px rgba(196, 108, 39, 0.4);
    text-decoration: none;
    z-index: 1000;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fabPulse 3s ease-in-out infinite;
}

.fab:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(196, 108, 39, 0.5);
}

.fab:active { transform: scale(0.95); }

@keyframes fabPulse {
    0%, 100% { box-shadow: 0 6px 22px rgba(196, 108, 39, 0.4); }
    50%       { box-shadow: 0 10px 30px rgba(196, 108, 39, 0.55); }
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(180deg, #161616 0%, #0d0d0d 100%);
    color: #888;
    text-align: center;
    padding: 3.5rem 1.5rem;
    border-top: 1px solid rgba(196, 108, 39, 0.18);
}

.footer-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.4rem;
    opacity: 0.9;
    filter: brightness(0) invert(1);
}

footer h3 {
    color: var(--accent-color);
    font-family: 'Alfa Slab One', serif;
    font-size: 1.7rem;
    margin-bottom: 0.8rem;
}

footer p {
    font-size: 0.92rem;
    line-height: 1.75;
    max-width: 500px;
    margin: 0 auto;
}

.copyright {
    font-size: 0.78rem;
    margin-top: 2rem;
    color: #555;
    letter-spacing: 0.4px;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: var(--spacing-lg) 5%;
    background: linear-gradient(180deg, #f0ede6 0%, #e8e4db 100%);
    text-align: center;
}

.reviews-section h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
    max-width: 900px;
    margin: 0 auto 3.5rem;
    text-align: left;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
    padding: 1.75rem;
    box-shadow: 0 2px 16px rgba(27, 67, 50, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(27, 67, 50, 0.14);
}

.testimonial-card-stars {
    font-size: 1.1rem;
    color: var(--secondary-accent);
    letter-spacing: 2px;
    margin-bottom: 0.9rem;
    line-height: 1;
}

.testimonial-card-text {
    font-size: 0.95rem;
    color: #3a3a32;
    line-height: 1.82;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 1.25rem;
    padding-top: 0.5rem;
    position: relative;
}

.testimonial-card-text::before {
    content: '\201C';
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 3.8rem;
    color: rgba(27, 67, 50, 0.14);
    position: absolute;
    top: -0.9rem;
    left: -0.3rem;
    line-height: 1;
    font-style: normal;
}

.testimonial-card-byline {
    border-top: 1px solid rgba(27, 67, 50, 0.1);
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
}

.testimonial-byline-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-byline-location {
    font-size: 0.82rem;
    color: #999;
}

.testimonial-byline-service {
    display: inline-block;
    font-size: 0.72rem;
    color: var(--accent-color);
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    background: rgba(196, 108, 39, 0.1);
    padding: 0.15rem 0.55rem;
    border-radius: 4px;
    margin-top: 0.3rem;
    align-self: flex-start;
}

/* Review action area — Google CTA + form */
.review-action-area {
    max-width: 600px;
    margin: 0 auto;
}

.review-google-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    padding: 2.5rem 2.2rem;
}

.review-google-prompt {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.68;
    margin-bottom: 1.6rem;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 0.9rem 1.9rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
    transition: all 0.25s ease;
    letter-spacing: 0.1px;
}

.google-review-btn:hover {
    background: #f2fff8;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.24);
}

.google-g-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}


/* ===== MOBILE ===== */
@media (max-width: 768px) {
    h2 { font-size: 2.2rem; }

    .hero { padding: 4rem 6%; }

    .nav-company-name { font-size: 1.1rem; }

    .nav-btn {
        padding: 0.5rem 1.1rem;
        font-size: 0.88rem;
    }

    .pulse-button {
        padding: 1rem 2rem;
        font-size: 0.98rem;
    }

    #hero-subtitle { font-size: 1rem; }

    .service-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1.5rem 0;
    }

    .service-map-container iframe { height: 340px; }

    .contact-actions { flex-direction: column; align-items: center; }
    .contact-btn { width: 100%; max-width: 300px; text-align: center; }

    .fab {
        width: 54px;
        height: 54px;
        bottom: 18px;
        right: 18px;
    }

    footer { padding: 2.5rem 1rem; }

    .footer-logo { height: 80px; }

    /* Reviews — 768px */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .review-google-cta {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-tagline { font-size: 0.72rem; letter-spacing: 1.5px; }

    .testimonial-card {
        padding: 1.3rem 1.2rem;
    }
}
