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

html {
scroll-behavior: smooth;
}

body {
font-family: Arial, Helvetica, sans-serif;
background: #e9e2d6;
color: #1f2a24;
line-height: 1.6;
}

/* HEADER */

.header {
width: 100%;
padding: 20px 8%;
display: flex;
justify-content: space-between;
align-items: center;
background: #1f2a24;
color: white;
position: sticky;
top: 0;
z-index: 10;
box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}

.logo {
font-size: 1.4rem;
font-weight: bold;
}

.nav a {
color: white;
text-decoration: none;
margin-left: 25px;
font-weight: bold;
}

.nav a:hover {
color: #d8a24a;
}

/* GENERAL */

.section {
padding: 80px 8%;
}

.section h2 {
font-size: clamp(2rem, 4vw, 3.5rem);
margin-bottom: 20px;
}

.small-title {
color: #d8a24a;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 10px;
}

.btn {
display: inline-block;
padding: 14px 24px;
border-radius: 999px;
text-decoration: none;
font-weight: bold;
transition: 0.2s ease;
}

.primary {
background: #d8a24a;
color: #1f2a24;
}

.primary:hover {
background: #b8842f;
transform: translateY(-2px);
}

.secondary {
border: 2px solid white;
color: white;
}

.secondary:hover {
background: white;
color: #1f2a24;
transform: translateY(-2px);
}

/* HERO BUBBLE */

.hero {
min-height: auto;
margin: 40px 1.5%;
padding: 80px;
border-radius: 30px;
background:
    linear-gradient(90deg, rgba(16, 25, 20, 0.90) 0%, rgba(16, 25, 20, 0.78) 40%, rgba(16, 25, 20, 0.45) 100%),
    url("images/HeroImage.JPG");
background-size: cover;
background-position: center 52%;
color: white;
box-shadow: 0 18px 45px rgba(0,0,0,0.22);
}

.hero-content {
max-width: 850px;
}

.hero h1 {
font-size: clamp(2.8rem, 7vw, 5.8rem);
line-height: 1;
margin-bottom: 25px;
}

.hero-text {
font-size: 1.2rem;
max-width: 700px;
margin-bottom: 30px;
}

.buttons {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.voicemail-note {
margin-top: 18px;
font-size: 0.95rem;
color: #f5ead8;
}

/* CARD STYLE SECTIONS */

.about,
#services,
#work,
.contact,
.reviews {
background: #f8f3ea;
border-radius: 30px;
margin: 50px 8%;
padding: 70px;
box-shadow: 0 18px 45px rgba(0,0,0,0.10);
}

/* ABOUT */

.about {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 40px;
align-items: center;
}

.section-text p {
margin-bottom: 18px;
font-size: 1.05rem;
}

.about-card {
background: white;
padding: 30px;
border-radius: 22px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.about-image {
width: 100%;
height: 260px;
object-fit: cover;
object-position: center;
border-radius: 18px;
margin-bottom: 20px;
}

.about-card h3 {
margin-bottom: 15px;
}

.about-card ul {
padding-left: 20px;
}

/* SERVICES AND WORK */

.services-grid,
.work-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 30px;
}

.service-card,
.work-card {
background: white;
padding: 32px;
border-radius: 24px;
box-shadow: 0 12px 32px rgba(0,0,0,0.08);
transition: 0.2s ease;
}

.service-card:hover,
.work-card:hover {
transform: translateY(-5px);
box-shadow: 0 18px 38px rgba(0,0,0,0.12);
}

.service-card h3,
.work-card h3 {
margin-bottom: 10px;
}

.work-image {
width: 100%;
height: 250px;
object-fit: cover;
object-position: center;
border-radius: 18px;
margin-bottom: 20px;
}

.experience-note {
margin-top: 40px;
background: #f4e2be;
padding: 25px;
border-radius: 18px;
text-align: center;
}

.experience-note p {
margin: 0;
font-size: 1rem;
}

/* TRUST SECTION */

.trust {
background: #1f2a24;
color: white;
border-radius: 30px;
margin: 50px 8%;
padding: 70px;
box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.trust p {
max-width: 750px;
font-size: 1.1rem;
}

/* REVIEWS SECTION */

.reviews {
display: block;
}

.review-top {
display: grid;
grid-template-columns: auto 1fr auto;
gap: 35px;
align-items: center;
margin-bottom: 35px;
}

.review-icon {
width: 120px;
height: 120px;
border-radius: 50%;
background: #f4e2be;
display: flex;
align-items: center;
justify-content: center;
color: #d8a24a;
font-size: 3rem;
font-weight: bold;
}

.manual-reviews {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
}

.review-card {
background: white;
padding: 28px;
border-radius: 22px;
box-shadow: 0 12px 32px rgba(0,0,0,0.08);
transition: 0.2s ease;
}

.review-card:hover {
transform: translateY(-5px);
box-shadow: 0 18px 38px rgba(0,0,0,0.12);
}

.review-card p {
margin-bottom: 12px;
}

.review-card h4 {
color: #1f2a24;
margin-top: 10px;
font-size: 1rem;
}

.stars {
color: #d8a24a;
font-weight: bold;
letter-spacing: 2px;
font-size: 1.1rem;
}

.review-source {
font-size: 0.85rem;
color: #777;
margin-top: 10px;
}

.review-action {
text-align: center;
}

.review-action .btn {
white-space: nowrap;
}

/* RECENT WORK */

.image-placeholder {
height: 220px;
background: #ddd2c1;
border-radius: 18px;
display: flex;
align-items: center;
justify-content: center;
color: #5d5548;
font-weight: bold;
margin-bottom: 20px;
}

/* CONTACT */

.contact p {
max-width: 700px;
margin-bottom: 30px;
}

.callout-box {
background: #f4e2be;
border-radius: 20px;
padding: 35px;
margin-bottom: 35px;
text-align: center;
}

.callout-box h3 {
margin-bottom: 15px;
font-size: 1.8rem;
}

.callout-box p {
max-width: 700px;
margin: 0 auto 20px auto;
}

.contact-form {
max-width: 700px;
display: grid;
gap: 15px;
}

.contact-form input,
.contact-form textarea {
width: 100%;
padding: 16px;
border: 1px solid #ccc;
border-radius: 14px;
font-size: 1rem;
}

.vehicle-row {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 15px;
}

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

.contact-form button {
padding: 16px;
border: none;
border-radius: 999px;
background: #1f2a24;
color: white;
font-weight: bold;
font-size: 1rem;
cursor: pointer;
}

.contact-form button:hover {
background: #d8a24a;
color: #1f2a24;
}

/* FOOTER */

.footer {
background: #1f2a24;
color: white;
text-align: center;
padding: 50px 8%;
margin-top: 50px;
}

.footer h2 {
margin-bottom: 10px;
}

/* MOBILE */

@media (max-width: 900px) {


.services-grid,
.work-grid {
    grid-template-columns: repeat(2, 1fr);
}

.review-top {
    grid-template-columns: 1fr;
    text-align: center;
}

.manual-reviews {
    grid-template-columns: 1fr;
}

.reviews {
    text-align: center;
}

.review-icon {
    margin: 0 auto;
}


}

@media (max-width: 800px) {


.header {
    flex-direction: column;
    gap: 15px;
}

.nav {
    text-align: center;
}

.nav a {
    margin: 0 8px;
    font-size: 0.9rem;
}

.hero,
.about,
#services,
#work,
.contact,
.reviews,
.trust {
    margin: 25px 5%;
    padding: 40px 25px;
    border-radius: 24px;
}

.about {
    grid-template-columns: 1fr;
}

.services-grid,
.work-grid {
    grid-template-columns: 1fr;
}

.vehicle-row {
    grid-template-columns: 1fr;
}

.hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
}

.hero-text {
    font-size: 1rem;
}

.buttons {
    flex-direction: column;
}

.btn {
    text-align: center;
}

.about-image,
.work-image {
    height: 220px;
}


}


/* PHOTO / PORTFOLIO FIXES */
#work {
    margin-left: 1.5%;
    margin-right: 1.5%;
    padding-left: 40px;
    padding-right: 40px;
}

.work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.work-card {
    padding: 24px;
}

.work-image {
    height: 380px;
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 20px;
}

.work-card:nth-child(1) .work-image {
    object-position: center top;
}

.work-card:nth-child(2) .work-image {
    object-position: center 48%;
}

.work-card:nth-child(3) .work-image {
    object-position: center 42%;
}

@media (max-width: 1100px) {
    .work-grid {
        grid-template-columns: 1fr;
    }

    .work-image {
        height: 520px;
    }
}

@media (max-width: 800px) {
    #work {
        margin-left: 5%;
        margin-right: 5%;
        padding-left: 25px;
        padding-right: 25px;
    }

    .work-image {
        height: 360px;
    }
}

/* FINAL RECENT WORK PHOTO POSITIONING */
.work-card:nth-child(1) .work-image {
    object-position: center 64%;
}

.work-card:nth-child(2) .work-image {
    object-position: center 38%;
}

.work-card:nth-child(3) .work-image {
    object-position: center 56%;
}


.hidden-field {
    display: none;
}
