/* ===========================
   RESET & GLOBAL STYLES
=========================== */

.hero-banner h1 {
  color: #00ff00;
}

body, h1, h2, h3, h4, h5, h6, p, li, ul, ol, nav, a, span, div, input, button {
  font-family: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f4f4f4;
}

p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300; /* Light */
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1em;
}

ul li {
  font-family: 'Montserrat', sans-serif;
    font-weight: 300; /* Light */
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1em;
}



a {
    text-decoration: none;
    color: #00e600;
    transition: color 0.3s ease;
}

a:hover {
    color: #00cc00;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-phone {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 25px;
}

.contact-phone a {
  color: #00ff00;
  text-decoration: none;
}

.contact-phone a:hover {
  text-decoration: underline;
}


/* ===========================
   HEADINGS (all h2)
=========================== */
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  color: #fff; /* <-- this fixes it */
}


/* ===========================
   BUTTONS
=========================== */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00e600;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #00cc00;
}

.cta-section .phone-text {
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.cta-section .phone-text a {
  color: #00ff00;
  text-decoration: none;
}




/* ===========================
   HEADER
=========================== */
header {
    background-color: #000;
    padding: 20px 0;
}

header h1 {
    font-family: 'Montserrat', Times, serif;
    color: #00ff00;
}




/* ===========================
   NAVIGATION
=========================== */

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  overflow-x: hidden;
}

header nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 20px;
  padding: 0;
  margin: 0;
}

header nav li {
  margin: 0; /* remove old left margin */
}

header nav li a {
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
}

header nav li a:hover {
  color: #00ff00;
}


/* ===========================
   HERO SECTION
=========================== */
.hero {
    background-image: url('images/HEROIMAGE-01.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 150px 20px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 90%;
}

.hero-logo {
    max-width: 400px;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 2.5em;
    color: #00ff00;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* ===========================
   SERVICES SECTION
=========================== */
.services {
    padding: 30px 20px;
    background-color: #fff;
}

.services h2 {
    display: none;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    position: relative;
    background-color: #f4f4f4;
    border-radius: 5px;
    overflow: hidden;
    height: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service-img-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-title {
    font-family: 'Montserrat', Arial, sans-serif; 
    position: absolute;
    bottom: 10px;
    left: 20px;
    font-size: 1.5em;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px;
    z-index: 2;
}

.service-item:hover .service-title {
    color: #00ff00;
    background-color: rgba(0, 0, 0, 0.7);
}

.service-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.service-description {
    font-size: 14px;
    color: #ffffff;
    margin-top: 10px;
    padding: 0 15px 15px;
    text-align: center;
}

/* ===========================
   NUMBER PLATES SECTION
=========================== */
.number-plates-section.dark-style {
  background-color: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.number-plates-section.dark-style h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.number-plates-section.dark-style p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.btn.yellow-btn {
  background-color: #ffeb3b;
  color: #000;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.btn.yellow-btn:hover {
  background-color: #fdd835;
}


/* ===========================
   ABOUT SECTION
=========================== */
.about {
    padding: 60px 0;
    background-color: #333;
    color: #fff;
    text-align: center;
}

.about h2 {
    margin-bottom: 20px;
}

/* ===========================
   CONTACT SECTION
=========================== */
.contact {
    padding: 60px 0;
    background-color: #fff;
}

.contact h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
}

.contact label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button {
    width: 100%;
    padding: 15px;
    background-color: #00e600;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact button:hover {
    background-color: #00cc00;
}

/* Contact & Map side by side */
.contact-map-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 0;
    background-color: #fff;
}

.contact-form-container {
    flex: 1 1 400px;
    max-width: 600px;
}

.map-container {
    flex: 1 1 400px;
    max-width: 600px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* ===========================
   REVIEWS
=========================== */
.reviews {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.reviews h2 {
    margin-bottom: 30px;
    font-size: 2em;
    color: #000;
}

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.review-item {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: left;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-stars {
    color: #FFD700;
    font-size: 1.2em;
}

/* ===========================
   FOOTER
=========================== */
footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* ===========================
   MARQUEE REVIEWS (Optional)
=========================== */
.reviews-container {
    width: 300px;
    overflow: hidden;
}

.reviews-container marquee {
    width: 500px;
    height: 30px;
    padding: 10px;
}

.review {
    display: inline-block;
    margin-right: 20px;
}

/* ===========================
   MEDIA QUERIES
=========================== */
@media (min-width: 769px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        padding: 100px 20px;
    }

    .hero h2 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .contact-map-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .contact-form-container,
    .map-container {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
}




/* Gallery Styles */
.gallery-section {
    background-image: url('images/HEROIMAGE-01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
    position: relative;
    text-align: center;
}

.gallery-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.gallery-images {
    height: 620px; /* Desktop default */
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px; /* optional */
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.gallery-img.active {
    display: block;
    position: relative;
}

/* Tablets */
@media (max-width: 768px) {
    .gallery-images {
        height: 50vh; /* 50% of viewport height */
    }
}

/* Phones */
@media (max-width: 480px) {
    .gallery-images {
        height: 50vh; /* about half screen */
    }
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    user-select: none;
    transition: background 0.3s ease;
}

.gallery-btn:hover,
.gallery-btn:focus {
    background: rgba(0, 230, 0, 0.8);
    outline: none;
}

.gallery-btn.left {
    left: 15px;
}

.gallery-btn.right {
    right: 15px;
}

/* Responsive tweaks */

@media (max-width: 768px) {
    .gallery-images {
        height: 300px;
    }
    .gallery-btn {
        font-size: 2rem;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .gallery-images {
        height: 200px;
    }
    .gallery-btn {
        font-size: 1.5rem;
        padding: 8px 12px;
    }
}

/* Description Styles */
.service-description-section {
    background-color: #fff;
    padding: 60px 20px;
    color: #333;
    text-align: center;
}

.service-description-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00e600;
}

.service-description-section p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-description-section ul {
    list-style-type: disc;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 20px;
    text-align: left;
}

.cta-section {
  text-align: center;
  padding: 40px 20px 60px; /* top, sides, bottom padding for spacing */
}

.cta-section .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  font-size: 1.1rem;
}




/* ===== Number Plates Page Styles ===== */

.hero-banner {
  background-image: url('images/number-plates-hero.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 160px 20px;
  position: relative;
}
.hero-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.hero-banner .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.hero-banner h1 {
  font-size: 3rem;
  color: #00ff00;
}
.strapline {
  font-size: 1.5rem;
  font-weight: bold;
}

.plate-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
  color: #000;
  border-bottom: 1px solid #ddd;
}
.plate-section img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.plate-section h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.plate-section p {
  font-size: 1.2rem;
  margin: 0 auto;
  max-width: 600px;
}

.terms-list {
  list-style-type: disc;
  text-align: left;
  margin: 0 auto;
  padding-left: 20px;
  max-width: 600px;
  font-size: 1.1rem;
}

.cta-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #000;
  color: #fff;
}
.cta-section a.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background-color: #00ff00;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #000;
  color: #ccc;
}
