* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Luxurious Roman', sans-serif;
    background: black;
  }

  img {
  width: 100%;
  display: block;
}
a {
  text-decoration: none;
}

/* === Layout Helpers === */
.container {
  width: 90%;
  margin: auto;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  place-items: center; /* shorthand for both justify and align */

}
.grid-4 img{
  width: 40%;
    display: block;
margin-left: auto;
  margin-right: auto;
}


.flex-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.flex-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* === Header === */
.site-header {
  background-color: white;
  color: red;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

header .container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  color: red;
  text-decoration: none;
  transition: 0.3s;
text-shadow: 0 1px 1px rgba(0,0,0,0.6);
}

.logo a:hover {
  opacity: 0.8;
}

.main-nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  font-size: 1.6rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: red;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 400;
  text-shadow: 0 1px 1px rgba(0,0,0,0.6);
}

.main-nav a:hover {
  text-decoration: underline;
}

.cta-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  flex-wrap: wrap;
  justify-content: center;
}


.phone-link {
  color: red;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.4rem;
}

.cta-header .btn-primary {
  background-color: red;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  transition: .4s;
  font-size: 25px;
  text-decoration: none;
}

.btn-primary:hover {
  opacity: 0.6;
}

/* === Hamburger Menu === */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  gap: 5px;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: red;
  border-radius: 3px;
  transition: 0.3s;
}

.menu-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding-left: 0;
  margin: 0;
  align-items: center;
}
@media (min-width: 1377px) {
  .header-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .main-nav {
    display: flex !important;
    flex-direction: row;
    background-color: transparent;
    border: none;
    padding: 0;
    width: auto;
  }

  .main-nav ul {
    flex-direction: row;
    gap: 2rem;
    text-align: left;
  }

  .menu-toggle {
    display: none !important;
  }

  .cta-wrapper {
    flex-direction: row;
    justify-content: flex-end;
    gap: 1rem;
  }

  .cta-wrapper .btn-primary,
  .cta-wrapper .phone-link {
    width: auto;
    text-align: left;
    font-size: 1rem;
  }

  .cta-header {
    flex-direction: row;
    justify-content: flex-end;
    gap: 1rem;
  }

  .cta-header .btn-primary,
  .cta-header .phone-link {
    width: auto;
    margin-bottom: 0;
  }
}

@media (max-width: 1376px) {
  .header-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: red;
    padding: 1rem 0;
        border-top: 2px solid white;
  border-bottom: 2px solid white;
  border-radius: 10px;

  }
.main-nav a{
    color: white;
}
  .main-nav.active {
    display: flex;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }
   .cta-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-wrapper .phone-link,
  .cta-wrapper .btn-primary {
    width: 100%;
    text-align: center;
  }
}

/* === Responsive Layout === */
@media (min-width: 1024px) {
  .site-header .container {
    width: 95%;
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablet: under 1024px */
@media (max-width: 1023px) {

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: under 768px */
@media (max-width: 767px) {
  .container {
    width: 95%;
  }

  .flex-between {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }
  .site-header{
    border-bottom: 2px solid gold;
  }
}


/* === Hero Section === */
.hero-section {
  position: relative;
  background-image: url('Photos/pexels-pixabay-209224.jpg'); /* your image path */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 2.5rem 1rem;
  color: white;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  height: auto;
  border-bottom: 3px solid red;
  background-attachment: fixed;
}
.hero-section .container{
  width: 90%;
}
/* Overlay to darken the image and improve text contrast */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7); /* Adjust opacity for readability */
  z-index: -1;
}

.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: red;
  font-style: oblique;
}
.hero-section h1 span{
  color: white;
}
.hero-section p {
  font-size: 30px;
  margin: 1.5rem 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.hero-section .btn-primary{
  font-size: 30px;
}

.hero-content {
display: flex;
  flex-direction: column;
  align-items: center; /* THIS is the key line */
  text-align: center;
}
.hero-logo {
  width: 20%;
  height: auto;
  margin-bottom: 25px;
  border-radius: 20px;
}

.hero-section .btn-primary {
  background-color: white;
  color: red;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  display: inline-block;
  border-radius: 8px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  font-size: 25px;
  transition: .5s;
}
.hero-section .btn-primary:hover{
    color: white;
    background-color: red;
    opacity: 1;
}
/* === Mobile (up to 599px) === */
@media (max-width: 599px) {
.hero-section{
padding: 2rem .5rem;
}
.hero-logo{
  width: 70%;
}
.hero-section .container{
  width: 95%;
}
.hero-section h1{
    font-size: 50px;
}
.hero-section p{
    font-size: 25px;
}
}

/* === Tablet (600px to 1023px) === */
@media (min-width: 600px) and (max-width: 1023px) {
.hero-section{
padding: 2.5rem .5rem;
}
.hero-section h1{
    font-size: 50px;
}
.hero-section .container{
  width: 90%;
}
.hero-logo{
  width: 50%;
}
}

/* === Laptop (1024px to 1439px) === */
@media (min-width: 1024px) and (max-width: 1439px) {
.hero-section{
padding: 4rem 1rem;
}
.hero-section .container{
  width: 90%;
}
.hero-logo{
  width: 30%;
}
}

/* === Desktop / Large Screens (1440px and up) === */
@media (min-width: 1440px) {
  /* Large screen styles go here */
}
.section-container-why {
    padding: 60px 20px;
    border-bottom: 3px solid red;
        background: rgb(112, 26, 0);
    background: linear-gradient(0deg, rgb(139, 0, 0) 0%, black 100%);
  }

  .section-container-why .container {
    width: 85%;
    margin: 0 auto;
  }

  .section-container-why .section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 30px;
    color: red;
    font-style: oblique;
  }

  .section-container-why .section-subtitle {
    text-align: center;
    font-size: 30px;
    margin-bottom: 50px;
    color: white;
  }

  /* Features Grid */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  .feature-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid red;
  }

  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  }
  .feature-icon {
    font-size: 40px;
    color: red;
    margin-bottom: 15px;
  }
  .feature-card h3 {
    font-size: 30px;
    margin-bottom: 15px;
    color: red;
    font-style: oblique;
  }

  .feature-card p {
    color: black;
    line-height: 1.6;
    font-size: 23px;
  }
  .section-button {
    text-align: center;
    margin-top: 20px;
  }

  .section-container-why .btn-primary {
    display: inline-block;
    background-color: red;
    color: #fff;
    font-weight: bold;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 30px;
    border: 2px solid white;
  }

  .section-container-why .btn-primary:hover {
    background-color: white;
    color: red;
    border: 2px solid red;
    opacity: 1;
  }
  /* Responsive */
  @media(max-width: 768px){
    .section-container-why{
        padding: 50px 10px;
    }
    .section-container-why .container{
        width: 90%;
    }
    .section-container-why .section-title { font-size: 40px; }
  }

 .section-container-serve{
    background: white;
    padding: 30px 10px;
    position: relative;
  background-image: url('Photos/pexels-bopopics-15519425.jpg'); /* your image path */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
    overflow: hidden;
  z-index: 1;
  background-attachment: fixed;
  border-bottom: 3px solid red;
  }
  .section-container-serve::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}
  .section-container-serve .section-title{
    color: gold;
    font-size: 45px;
    text-align: center;
    letter-spacing: 1px;
    font-style: oblique;
    margin-bottom: 20px;
  }
  .section-container-serve .section-subtitle{
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-size: 30px;
  }
.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* Serve Items */
.serve-item {
  background: rgba(0, 0, 0, 0.6);
padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid gold;
}

.serve-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}

/* Icons */
.serve-item i {
  font-size: 2.3rem;
  color: gold;
  margin-bottom: 12px;
}

/* Text */
.serve-item span {
  display: block;
  font-weight: 600;
  font-size: 30px;
  color: gold;
}
.section-container-serve .section-button .btn-primary {
    display: inline-block;
    background-color: gold;
    color: black;
    font-weight: bold;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 30px;
    border: 2px solid white;
  }

  .section-container-serve .section-button .btn-primary:hover {
    background-color: transparent;
    color: gold;
    border: 2px solid gold;
    opacity: 1;
  }
/* Responsive */
@media (max-width: 768px) {
  .serve-grid {
    gap: 20px;
  }
  .serve-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 40px;
}
}
.section-container-testimonials{
  padding: 40px 10px;
  background: white;
          background: rgb(112, 26, 0);
    background: linear-gradient(0deg, rgb(139, 0, 0) 0%, black 100%);
}
.section-container-testimonials .section-title{
  font-size: 45px;
  letter-spacing: 1px;
  font-style: oblique;
  text-align: center;
  margin-bottom: 20px;
  color: red;
}
.section-container-testimonials .section-subtitle{
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
  color: white;
}
/* Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Card */
.testimonial-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  position: relative;
}

/* Quote Style */
.testimonial-text {
  font-style: italic;
  color: black;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 22px;
}

/* Name */
.testimonial-name {
  font-weight: 600;
  color: red;
  font-size: 25px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px 25px;
  }
}
.section-container-explore{
  padding: 50px;
  background: url(Photos/pexels-rdne-7821685.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: 1;
  overflow: hidden;
  position: relative;
  border-top: 3px solid red;
  border-bottom: 3px solid red;
}
 .section-container-explore::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.section-container-explore .section-title{
  color: red;
  text-align: center;
  font-size: 45px;
  letter-spacing: 1px;
  font-style: oblique;
  margin-bottom: 20px;
}
.section-container-explore .section-subtitle{
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
  color: white;
}
/* Grid */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Cards */
.explore-card {
  background: rgba(0, 0, 0, 0.8);
  padding: 35px 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}
.explore-card h3{
  color: white;
  font-size: 30px;
  margin-bottom: 10px;
}
.explore-card p{
  color: white;
  font-size: 25px;
  margin-bottom: 10px;
}
/* Icons */
.explore-card i {
  font-size: 2.6rem;
  color: red;
  margin-bottom: 18px;
}

/* Links */
.explore-link {
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  color: red;
  text-decoration: none;
  font-size: 25px;
}

.explore-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .explore-card {
    padding: 30px 20px;
  }
  .section-container-explore{
    padding: 20px 0;
  }
}
.contact-section {
  background: linear-gradient(270deg, #cc1003, #111c24, #a30b00);
  background-size: 600% 600%;
  animation: gradientShift 15s ease infinite;
  color: #fff;
  padding: 40px 10px;
  border-bottom: 3px solid red;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.contact-container {
  width: 90%;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h1 {
  color: gold;
  font-size: 50px;
  margin-bottom: 15px;
  position: relative;
  font-style: oblique;
}

.contact-header h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: gold;
  margin: 15px auto 0;
  border-radius: 2px;
}

.contact-header p {
  font-size: 27px;
  color: white;
  width: 75%;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.contact-info h2 {
  color: gold;
  font-size: 40px;
  margin-bottom: 15px;
}

.contact-info p, .contact-info li {
  color: white;
  font-size: 25px;
  margin-bottom: 10px;
}

.contact-info a {
  color: gold;
  text-decoration: none;
}

.contact-info a:hover {
  color: white;
  text-decoration: underline;
}

.contact-hours h3 {
  color: gold;
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 35px;
}

.contact-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-form2 {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.contact-form2 h2 {
  color: gold;
  font-size: 35px;
  margin-bottom: 20px;
  text-align: center;
}

.contact-form2 .form-group {
  margin-bottom: 20px;
}

.contact-form2 input, .contact-form2 textarea {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: none;
  font-size: 22px;
  outline: none;
  background: #1c2a35;
  color: #fff;
  transition: 0.3s;
}

.contact-form2 input:focus, .contact-form2 textarea:focus {
  background: #243643;
  border: 1px solid gold;
}

.contact-form2 .contact-btn {
  background-color: gold;
  color: #0d1b24;
  border: none;
  padding: 15px 30px;
  font-size: 25px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  margin: 0 auto;
  display: block;
}

.contact-form2 .contact-btn:hover {
  background-color: #e6c200;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-content {
    flex-direction: column;
  }

  .contact-info, .contact-form2 {
    width: 100%;
  }

  .contact-header h1 {
    font-size: 40px;
  }

  .contact-header p {
    font-size: 23px;
  }
  .contact-container{
    width: 100%;
  }
  .contact-header p{
    width: 100%;
  }
  .contact-header{
    margin-bottom: 30px;
  }
}
/* Appointments Section */
.appointments-section {
  padding: 80px 20px;
  background: url(Photos/pexels-leeloothefirst-8962457.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
 .appointments-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
/* Grid Layout */
.appointments-grid {
  width: 85%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Content */
.appointments-info h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #cc1003;
}

.appointments-intro {
  font-size: 1.6rem;
  color: white;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Benefits List */
.appointments-benefits {
  list-style: none;
  padding: 0;
}

.appointments-benefits li {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: white;
}

.appointments-benefits i {
  color: #cc1003;
  margin-right: 10px;
}

/* Form Wrapper */
.appointments-form-wrapper {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.appointments-form-wrapper h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #cc1003;
}

/* Form */
.appointments-form {
  display: flex;
  flex-direction: column;
}

.appointments-form .form-group {
  margin-bottom: 18px;
}

.appointments-form .form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.appointments-form .form-group input,
.appointments-form .form-group select,
.appointments-form .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #cc1003;
  font-size: 1.2rem;
  color: #cc1003;
}

.appointments-form .form-group input:focus,
.appointments-form .form-group select:focus,
.appointments-form .form-group textarea:focus {
  outline: none;
  border-color: #cc1003;
}

.appointments-form .btn-full {
  width: 100%;
  margin-top: 1rem;
  padding: 0.9rem 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: linear-gradient(135deg, #cc1003, #a80c02);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(204, 16, 3, 0.25);
}

.appointments-form .btn-full:hover {
  transform: translateY(-2px);
  color: #cc1003;
  background: transparent;
}


/* Note */
.appointments-note {
  font-size: 1.3rem;
  color: black;
  margin-top: 15px;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .appointments-section{
    padding: 3rem 1rem;
  }
  .appointments-grid {
    grid-template-columns: 1fr;
  }


}
.contact-cta {
  padding: 5rem 0rem;
  border-top: 3px solid #cc1003;
  background-color: #f9f9f9;
  border-bottom: 3px solid #cc1003;
}

.contact-cta-inner {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.cta-text h2 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  color: #cc1003;
  text-align: center;
}

.cta-text p {
  font-size: 1.4rem;
  color: black;
  text-align: center;
}

.cta-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.cta-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: gold;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid #cc1003;
  transition: all 0.3s ease;
}

.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.cta-icon {
  font-size: 2rem;
}

.cta-card h3 {
  font-size: 1.4rem;
  margin: 0;
  color: #cc1003;
}

.cta-card p {
  margin: 0.2rem 0 0;
  font-size: 1.2rem;
  color: black;
    word-break: break-word;
  overflow-wrap: anywhere;
}

@media (max-width: 1023px) {
  .contact-cta{
    padding: 2rem 0rem;
  }
  .contact-cta-inner {
    grid-template-columns: 1fr;
    width: 95%;
  }

  .cta-text {
    order: 1;
  }

  .cta-methods {
    order: 2;
  }
}
.services-hero {
  padding: 4rem .5rem;
  background: url(Photos/pexels-leeloothefirst-8962520.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: 1;
  position: relative;
  border-bottom: 3px solid #cc1003;
}
 .services-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.services-hero h1 {
  font-size: 50px;
  color: #cc1003;
  margin-bottom: 1rem;
  text-align: center;
}

.services-hero p {
  font-size: 30px;
  text-align: center;
  color: white;
}

.services {
  padding: 2rem .5rem;
  background: white;
  border-bottom: 3px solid gold;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #cc1003;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 2px solid gold;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.service-card:hover .service-icon {
  transform: scale(1.05);
  transition: transform 0.25s ease;
}

.service-card h2 {
  color: gold;
  font-size: 30px;
  font-style: oblique;
    letter-spacing: 1px;
}
.service-intro{
  font-size: 22px;
  padding: 1rem 0;
  color: white;
}

.service-card ul {
  padding-left: 1.2rem;
  margin: 0;
}

.service-card li {
  font-size: 25px;
  margin-bottom: 0.6rem;
  line-height: 1.5;
  color: white;
}

.services-cta {
  margin-top: 2rem;
  text-align: center;
}
.services-cta p{
  font-size: 30px;
  text-align: center;
  padding: 1.5rem 0;
}

.services-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.1rem 2.75rem;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #ffffff;
  background: linear-gradient(135deg, #cc1003, #a80c02);
  border-radius: 10px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(204,16,3,0.35);
  transition: all 0.25s ease;
  opacity: 1;
}
.services-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(204,16,3,0.45);
  background: linear-gradient(135deg, #d41406, #b10f04);
  opacity: 1;
}

.services-cta .btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(204,16,3,0.3);
}

.services-cta .btn-primary:focus-visible {
  outline: 3px solid rgba(204,16,3,0.4);
  outline-offset: 4px;
}

.services-support {
  padding: 3rem 0;
background: #000000;
background: linear-gradient(229deg, rgba(0, 0, 0, 1) 0%, rgba(204, 16, 3, 1) 50%, rgba(0, 0, 0, 1) 100%);
border-bottom: 3px solid gold;
}

.services-support .container {
  width: 85%;
  margin: 0 auto;
  text-align: center;
}

.services-support h2 {
  font-size: 40px;
  font-weight: 700;
  color: gold;
  margin-bottom: 1rem;
}

.services-support p {
  font-size: 30px;
  line-height: 1.8;
  color: white;
  margin-bottom: 1.25rem;
}

.services-support p strong {
  color: #cc1003;
}

@media (max-width: 768px) {
  .services-support h2 {
    font-size: 35px;
  }

  .services-support p {
    font-size: 25px;
    line-height: 1.6;
  }
}
/* Blog Hero Section */
.blog-hero {
  padding: 3rem 0;
  background-color: black;
  border-bottom: 3px solid #cc1003;
  text-align: center;
}

.blog-hero h1 {
  font-size: 50px;
  font-weight: 700;
  color: #cc1003;
  margin-bottom: 1rem;
}

.blog-hero p {
  font-size: 30px;
  color: white;
  margin: 0 auto;
}

.blog-posts {
  padding: 3rem 0;
  background-color: #fff;
  border-bottom: 3px solid #cc1003;
}

.blog-posts .container {
  width: 85%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.blog-card {
  border: 1px solid #cc1003;
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.3s ease;
  background-color: #fefefe;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(204,16,3,0.15);
}

.blog-card h2 {
  font-size: 40px;
  color: #cc1003;
  margin-bottom: 0.75rem;
  text-align: center;
}
.blog-card h3{
  font-size: 30px;
  padding: 1rem;
}
.blog-card p {
  font-size: 25px;
  line-height: 1.7;
  color: black;
  margin-bottom: 0.75rem;
  text-align: center;
}
.blog-card li{
  list-style: none;
  font-size: 25px;
}
.blog-card .blog-date {
  font-size: 25px;
  color: #cc1003;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-hero h1 {
    font-size: 40px;
  }

  .blog-hero p {
    font-size: 25px;
  }

  .blog-card h2 {
    font-size: 35px;
  }

  .blog-card p {
    font-size: 23px;
  }
}
/* Hero Section */
.resources-hero {
  padding: 3rem 0;
  background-color: black;
  border-bottom: 3px solid #cc1003;
  text-align: center;
}

.resources-hero h1 {
  font-size: 50px;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.resources-hero p {
  font-size: 30px;
  color: #cc1003;
  margin: 0 auto;
}

/* Resource Cards Section */
.resources-links {
  padding: 3rem 0;
background: #000000;
background: linear-gradient(15deg, rgba(0, 0, 0, 1) 0%, rgba(204, 16, 3, 1) 50%, rgba(0, 0, 0, 1) 100%);}

.resources-links .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  width: 85%;
  margin: 0 auto;
}

.resource-card {
  border: 1px solid #cc1003;
  border-radius: 10px;
  padding: 2rem;
  background-color: #fefefe;
  transition: all 0.3s ease;
  text-align: left;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(204,16,3,0.15);
}

.resource-card h2 {
  font-size: 35px;
  color: #cc1003;
  margin-bottom: 0.75rem;
}

.resource-card p {
  font-size: 23px;
  color: #111;
  margin-bottom: 1.25rem;
}

.resource-card .btn-primary {
  background-color: #cc1003;
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-size: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.resource-card .btn-primary:hover {
  background-color: #a10c02;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .resources-hero h1 {
    font-size: 2.25rem;
  }

  .resources-hero p {
    font-size: 1.1rem;
  }

  .resource-card h2 {
    font-size: 1.35rem;
  }

  .resource-card p {
    font-size: 1rem;
  }
}

.policies {
  background: #f9fbfc;
  padding: 50px 10px;
}

.policies-container {
  width: 90%;
  margin: 0 auto;
  background: #cc1003;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.policies h1 {
  font-size:3rem;
  margin-bottom: 10px;
  color: gold;
  text-align: center;
}

.policies .intro {
  font-size: 1.6rem;
  color: white;
  text-align: center;
  margin-bottom: 10px;
}

.policy-section {
  border-top: 1px solid #eee;
  padding: 25px 0;
}

.policy-section:first-of-type {
  border-top: none;
}

.policy-section h2 {
  font-size: 2.5rem;
  color: gold;
  margin-bottom: 10px;
  text-align: center;
}
.policy-section h3 {
  font-size: 1.7rem;
  color: gold;
  margin: 20px 0;
  text-align: center;
  font-style: oblique;
}
.policy-section p {
  color: white;
  line-height: 1.6;
  text-align: center;
  font-size: 1.6rem;
}

.policies .note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  font-size: 30px;
  color: white;
}

.policies .note a {
  color: gold;
  text-decoration: none;
  font-weight: 500;
}

.policies .note a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .policies{
    padding: 30px 10px;
  }
  .policies-container{
    width: 95%;
  }
  .services-hero{
    padding: 2rem .5rem;
  }
  .services{
    padding: 2rem .5rem;
  }
  .services-grid{
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
footer {
  position: relative;
  color: white;
  background: url('Images/belton-16x9-1.jpg') center/cover no-repeat;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: -1;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-logo {
  width: 250px;
  margin: 0 auto 15px;
  display: block;
  border-radius: 20%;
}

.footer-about p, .footer-links a, .footer-contact a {
  font-size: 25px;
  line-height: 1.5;
  color: #f1f1f1;
}

.footer-links h3, .footer-contact h3 {
  color: red;
  font-size: 30px;
  margin-bottom: 10px;
}

.footer-links ul, .footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li, .footer-contact li {
  margin-bottom: 10px;
}

.footer-links a:hover, .footer-contact a:hover {
  color: gold;
}

.footer-social {
  margin-top: 15px;
}
.footer-contact i{
  font-size: 20px;
}
.footer-social i{
  font-size: 30px;
}
.footer-social a {
  color: red;
  margin-right: 10px;
  font-size: 30px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: gold;
}

.footer-extras {
  border-top: 1px solid rgba(255, 238, 0, 0.3);
  border-bottom: 1px solid rgba(255, 208, 0, 0.3);
  margin: 40px auto 20px;
  padding: 20px;
  width: 90%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  gap: 15px;
}

.footer-verse {
  line-height: 1.5;
  font-weight: 500;
  font-size: 25px;
}

.footer-verse p {
  font-style: italic;
  margin: 0;
}

.footer-verse span {
  display: block;
  margin-top: 5px;
  color: red;
  font-weight: 600;
  font-size: 30px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  font-size: 25px;
  color: white;
}

.footer-bottom a {
  color: red;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 30px 15px;
  }
  .footer-extras {
    padding: 15px;
    width: 100%;
  }

}

@media (max-width: 500px) {
  footer {
    padding: 20px 10px;
  }
  .footer-extras {
    padding: 10px;
    gap: 10px;
  }
  .footer-container {
    gap: 20px;
  }
  .footer-contact ul li{
        word-break: break-word;
  overflow-wrap: anywhere;

  }
}