/* ==========================================================================
   DINO PAINTING — GOLD STANDARD DESIGN
   Brand: Dark Green (#004A3D) + Orange Accent (#F48220) — matched to dinopainting.com
   ========================================================================== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Brand Colors — matched to dinopainting.com */
    --brand-green: #004A3D;
    --brand-green-light: #065E4F;
    --brand-deep: #0D1712;
    --brand-dark: #111A17;
    --brand-charcoal: #1A2824;
    --brand-gray: #2A3B36;
    --accent: #F48220;
    --accent-hover: #D96E10;
    --accent-light: #FFF5EB;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
    --text-light: #E0E0E0;
    --text-muted: #B0B0B0;
    --green: #22C55E;

    /* Typography */
    --font-primary: 'Inter', -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-pad: 100px;
    --container-width: 1200px;

    /* Transitions */
    --transition: 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SECTION THEMES ===== */
.section--dark {
    background: var(--brand-dark);
    color: var(--white);
}

.section--light {
    background: var(--white);
    color: #1A1A1A;
}

.section--accent {
    background: var(--accent);
    color: #1A1A1A;
}

.section--light,
.section--dark,
.section--accent {
    padding: var(--section-pad) 0;
}

/* ===== SECTION BADGES ===== */
.section-badge {
    display: inline-block;
    background: #111;
    color: var(--white);
    border: 2px solid var(--accent);
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.section-badge--light {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent);
}

.section-badge--dark {
    background: #111;
    color: var(--white);
    border-color: var(--accent);
}

/* ===== SECTION TITLES ===== */
.section__title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section__title--dark { color: #1A1A1A; }
.section__title--light { color: var(--white); }

.section__subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 750px;
    margin-bottom: 48px;
}

.section__subtitle--light { color: var(--text-light); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--accent);
    color: #111;
    border-color: var(--accent);
}
.btn--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

.btn--dark {
    background: #111;
    color: var(--white);
}
.btn--dark:hover { background: #333; }

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn--outline-white:hover {
    background: var(--white);
    color: #111;
}

.btn--outline-dark {
    background: transparent;
    color: #111;
    border-color: #111;
}
.btn--outline-dark:hover {
    background: #111;
    color: var(--white);
}

.btn--lg { padding: 16px 36px; font-size: 15px; }
.btn--full { width: 100%; justify-content: center; }
.btn__arrow { font-size: 20px; font-weight: 400; }

/* ===== STICKY TOP BAR ===== */
.top-bar {
    background: var(--brand-green);
    color: var(--white);
    padding: 10px 0;
    position: relative;
    z-index: 1001;
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar__text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.top-bar__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-dark);
    color: var(--white);
    padding: 8px 20px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.top-bar__phone:hover { background: var(--accent); color: #111; }
.top-bar__phone svg { flex-shrink: 0; }

/* ===== NAVBAR ===== */
.navbar {
    background: var(--white);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo-img { height: 52px; width: auto; }

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar__menu li { position: relative; }
.navbar__menu li:not(:last-child)::after {
    content: '|';
    color: #ccc;
    margin-left: 8px;
    font-size: 14px;
}

.navbar__menu a {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
    padding: 8px 4px;
    transition: color var(--transition);
}
.navbar__menu a:hover { color: var(--accent); }

.navbar__cta {
    background: var(--accent);
    color: #111;
    border-color: var(--accent);
    padding: 10px 20px;
    font-size: 13px;
}
.navbar__cta:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.navbar__toggle span {
    width: 24px;
    height: 2px;
    background: #333;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 30, 25, 0.75);
}

.hero__inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 80px 24px;
    z-index: 1;
}

.hero__content { flex: 1; color: var(--white); }

.hero__services-list {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero__description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== HERO FORM CARD ===== */
.hero__form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 36px 32px;
    width: 400px;
    flex-shrink: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero__form-card--bottom {
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.form__title-highlight {
    font-size: 22px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 20px;
}

.form__input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    font-size: 15px;
    font-family: var(--font-primary);
    margin-bottom: 12px;
    transition: border-color var(--transition);
    border-radius: 0;
}

.form__input:focus {
    outline: none;
    border-color: var(--accent);
}

.form__textarea { resize: vertical; }

.form__rating {
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.form__stars {
    color: #FBBC04;
    font-size: 20px;
    letter-spacing: 2px;
}

.form__rating-text {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 4px;
    font-weight: 600;
}

.lead-form .btn--dark {
    margin-top: 4px;
    padding: 16px;
    font-size: 15px;
}

/* ===== SERVICE CARDS ===== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    background: var(--white);
    border: 1px solid #eee;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.service-card__img {
    height: 260px;
    overflow: hidden;
    border-bottom: 3px solid var(--accent);
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.service-card:hover .service-card__img img {
    transform: scale(1.05);
}

.service-card__body { padding: 28px 24px; }

.service-card__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1A1A1A;
}

.service-card__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* ===== CTA BAR ===== */
.cta-bar {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 16px;
}

/* ===== ANGLED DIVIDERS ===== */
.angle-divider {
    height: 80px;
    position: relative;
    z-index: 1;
}

.angle-divider--to-dark {
    background: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
    background: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
    margin-bottom: -1px;
}
.angle-divider--to-dark + .section--dark { position: relative; }
.angle-divider--to-dark {
    background: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
}

.angle-divider--to-light {
    background: var(--brand-dark);
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
    margin-bottom: -1px;
}

.angle-divider--to-accent {
    background: var(--brand-dark);
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
    margin-bottom: -1px;
}

/* ===== ABOUT SECTION ===== */
.about__inner {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about__content { flex: 1; }

.about__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about__why-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    margin-top: 32px;
    margin-bottom: 24px;
    color: var(--accent);
}

.about__checklist { display: flex; flex-direction: column; gap: 20px; }

.about__checklist li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.check-icon {
    width: 28px;
    height: 28px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

.about__checklist li div {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.about__checklist li strong { color: var(--white); }

.about__image {
    width: 380px;
    flex-shrink: 0;
}

.about__image-frame {
    border: 3px solid var(--accent);
    padding: 6px;
    margin-bottom: 24px;
}

.about__image-frame img {
    width: 100%;
    height: auto;
}

.about__ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

/* ===== PROCESS SECTION ===== */
.process__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.process__step { text-align: center; }

.process__step-badge {
    display: inline-block;
    background: #111;
    color: var(--white);
    border: 2px solid var(--accent);
    padding: 8px 24px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process__step-card {
    background: var(--off-white);
    padding: 36px 24px;
    min-height: 280px;
}

.process__icon {
    width: 80px;
    height: 80px;
    background: var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process__step-title {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #1A1A1A;
}

.process__step-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

/* ===== REVIEW CARDS ===== */
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.review-card {
    background: rgba(255,255,255,0.05);
    border-top: 3px solid var(--accent);
    padding: 32px 28px;
}

.review-card__stars {
    color: #FBBC04;
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 16px;
    display: block;
}

.review-card__text {
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

.review-card__author {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
}

/* ===== GUARANTEE ===== */
.guarantee {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255,255,255,0.05);
    border: 2px solid var(--accent);
    border-radius: 60px;
    padding: 28px 40px;
    margin: 48px auto;
    max-width: 800px;
}

.guarantee__icon { flex-shrink: 0; }

.guarantee__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--white);
}

.guarantee__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===== FAQ ===== */
.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: var(--white);
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq__question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    transition: background var(--transition);
}

.faq__question:hover { background: #f9f9f9; }

.faq__icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--accent);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform var(--transition);
}

.faq__item.active .faq__icon { transform: rotate(45deg); }

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.active .faq__answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq__answer p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* ===== BOTTOM FORM SECTION ===== */
.bottom-form__inner {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.bottom-form__content { flex: 1; }

.bottom-form__text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
}

.bottom-form__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bottom-form__phone,
.bottom-form__email {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    transition: opacity var(--transition);
}

.bottom-form__phone:hover,
.bottom-form__email:hover { opacity: 0.8; }

.bottom-form__phone svg,
.bottom-form__email svg { fill: var(--accent); flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer {
    background: #0A0F0D;
    color: var(--text-muted);
    padding: 32px 0;
    font-size: 14px;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero__inner { flex-direction: column; padding: 60px 24px; }
    .hero__form-card { width: 100%; max-width: 480px; }
    .hero__title { font-size: 42px; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .about__inner { flex-direction: column; }
    .about__image { width: 100%; max-width: 400px; }
    .process__steps { grid-template-columns: repeat(2, 1fr); }
    .reviews__grid { grid-template-columns: repeat(2, 1fr); }
    .bottom-form__inner { flex-direction: column; }
    .hero__form-card--bottom { width: 100%; max-width: 480px; }
}

@media (max-width: 768px) {
    :root { --section-pad: 64px; }

    .top-bar__text { display: none; }
    .top-bar__inner { justify-content: center; }

    .navbar__menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
    .navbar__menu.active { display: flex; }
    .navbar__menu li::after { display: none; }
    .navbar__menu a { padding: 12px 0; font-size: 15px; }
    .navbar__cta { display: none; }
    .navbar__toggle { display: flex; }

    .hero { min-height: auto; }
    .hero__title { font-size: 36px; }
    .hero__ctas { flex-direction: column; }
    .hero__ctas .btn { justify-content: center; }

    .section__title { font-size: 32px; }

    .services__grid,
    .process__steps,
    .reviews__grid { grid-template-columns: 1fr; }

    .guarantee { flex-direction: column; text-align: center; border-radius: 20px; padding: 24px; }

    .cta-bar { flex-direction: column; }
    .cta-bar .btn { justify-content: center; width: 100%; }

    .footer__inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .hero__form-card { padding: 28px 20px; }
    .hero__title { font-size: 30px; }
}
