/* ==========================================================================
   Base Styles
   ========================================================================== */
:root {
  --primary-color: #2ea3f2;
  --secondary-color: #c40001;
  /* red used for dots */
  --text-color: #666;
  --heading-color: #333;
  --bg-dark: #32373c;
  /* buttons and dark backgrounds */
  --bg-light: #f3f3f3;
  --white: #fff;
  --font-primary: 'Open Sans', Arial, sans-serif;
  --font-secondary: 'Playfair Display', serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

a:hover {
  color: #1a7bbd;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 8px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background-color: #ff0000;
  color: var(--white);
  /* border: 2px solid var(--secondary-color); */
}

.btn:hover,
.btn-primary:hover {
  color: var(--white);
}



.btn-dark {
  background-color: var(--bg-dark);
  color: var(--white);
  border: 2px solid var(--bg-dark);
}


/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.main-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.main-header.scrolled {
  padding: 5px 0;
}

.main-header.scrolled .has-submenu {
  padding-bottom: 23px;
  margin-bottom: -23px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-height: 65px;
  width: auto;
  transition: max-height 0.3s ease;
}

.main-header.scrolled .logo img {
  max-height: 55px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav a {
  color: #00000099;
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: #00000099;
  /* Keep the same as normal state */
}

.main-nav a.active {
  color: #FEC40D;
  /* Gold/yellow color for active state only */
}

.phone-link a {
  background-color: #ff0000;
  color: var(--white);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.3s ease;
}


.main-nav a.nav-estimate-btn {
  background-color: #ffc107;
  color: #222222;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.main-nav a.nav-estimate-btn:hover {
  background-color: #ffc107;
  opacity: 0.9;
}

.phone-link a:hover {
  background-color: #ff0000;
  color: var(--white);
  opacity: 0.9;
  /* Add a slight opacity change for hover effect instead of changing the color */
}

/* Dropdown */
.has-submenu {
  position: relative;
  /* Bridge the gap to exactly the bottom of the header */
  padding-bottom: 28px;
  margin-bottom: -28px;
}

.submenu {
  display: none !important;
  /* Hide by default */
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  flex-direction: column !important;
  gap: 0 !important;
  padding: 10px 0;
  border-top: 3px solid #FEC40D;
}

@media (min-width: 992px) {
  .has-submenu:hover .submenu {
    display: flex !important;
  }
}
.has-submenu.open .submenu {
  display: flex !important;
}

.submenu li a {
  display: block;
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 14px;
  text-align: left !important;
}

.submenu li a:hover {
  background: #f9f9f9;
  color: #FEC40D;
}

.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--heading-color);
}

/* ==========================================================================
   Home Page Sections
   ========================================================================== */
.hero-banner {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 150px 0;
  text-align: center;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-banner h1 {
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
  font-size: 70px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-divider {
  margin: 20px auto;
  max-width: 250px;
}

.hero-banner h2 {
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
  color: var(--white);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 40px;
}

.hero-stars {
  display: block;
  margin: 30px auto 0;
  max-width: 300px;
}

.trust-bar {
  background: #171717;
  padding: 30px 0;
}

.trust-bar h4 {
  margin: 0;
  font-size: 18px;
  color: var(--white);
  text-align: center;
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
}

.trust-bar .dot {
  color: var(--secondary-color);
  margin: 0 10px;
}

.about-section {
  padding: 80px 0;
}

.about-section h2 {
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
  font-size: 40px;
}

.section-divider {
  margin: 20px auto 40px;
  max-width: 300px;
}

.about-section p {
  width: 100%;
  margin: 0 auto 20px;
  font-size: 17px;
}

.about-section a {
  color: #fec40d;
  font-weight: 600;
}

.about-section a:hover {
  color: #dca700;
}

.cta-bar {
  background: #171717;
  padding: 30px 0;
}

.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-bar h3 {
  color: var(--white);
  margin: 0;
  font-size: 32px;
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
}

.services-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.services-section h2 {
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
  font-size: 40px;
}

.services-section .section-divider {
  max-width: 400px;
  /* Increased border/divider size specifically for this section */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}

.service-card:hover::before {
  background: rgba(0, 0, 0, 0.2);
}

.service-card h3 {
  position: relative;
  color: var(--white);
  z-index: 2;
  font-size: 24px;
  margin: 0;
  text-transform: uppercase;
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
  padding: 80px 0;
  background: var(--white);
}

.testimonials-section h2 {
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
  font-size: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--white);
  padding: 20px;
  min-height: 420px;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 15px 15px -10px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-card h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--heading-color);
  font-weight: 500;
}

.testimonial-card p {
  font-size: 16px;
  font-family: "Open Sans", Arial, sans-serif;
  color: #000000;
  line-height: 1.6;
  padding: 0 0 16px;
  margin: 0;
}

.testimonial-stars {
  margin-top: auto;
  /* Pushes the stars to the bottom of the flex card */
}

.testimonial-stars img {
  height: 25px;
  display: block;
}

/* ==========================================================================
   Contact Form Section
   ========================================================================== */
.contact-form-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 140px 0;
  color: var(--white);
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contact-form-text h2 {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--white);
}

.contact-form-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-warning {
  background: #ffc107;
  color: #ffffff;
  display: inline-block;
  padding: 14px 28px;
  text-decoration: none;
  /* font-weight: bold; */
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
}

.btn-warning:hover {
  background: #e0a800;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 2px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 15px;
  background: var(--white);
  color: #333;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #ffc107;
}

.captcha-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  color: var(--white);
  font-size: 16px;
}

.captcha-input {
  width: 70px !important;
  text-align: center;
  padding: 12px !important;
}

.form-errors {
  color: red;
  margin-bottom: 20px;
  font-size: 15px;
}

.form-errors ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 5px;
}

.contact-form input.error-field,
.contact-form textarea.error-field {
  border: 1px solid red;
  outline: none !important;
}

@media (max-width: 991px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .captcha-row {
    justify-content: center;
  }
}

/* ==========================================================================
   SEO Text Section
   ========================================================================== */
.seo-text-section {
  padding: 80px 0;
  background: var(--white);
}

.seo-text-section h2 {
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
  font-size: 40px;
  color: #444;
  margin-bottom: 15px;

}

.seo-text-section .section-divider {
  margin: 0 auto 30px;
  display: block;
}

.seo-text-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-phone {
  color: #ffc107;
  font-weight: bold;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
  background: #222222;
  color: #ffffff;
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.main-footer h4 {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 20px;
  font-family: "Open Sans", Arial, sans-serif;
}

.mt-4 {
  margin-top: 30px;
}

.about-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #ffffff;
}

.main-footer ul {
  list-style: none;
  padding-left: 0;
}

.main-footer ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 12px;
  font-size: 14px;
}

.main-footer ul li::before {
  content: "•";
  color: #ffc107;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
}

.main-footer a {
  color: #ffffff;
  text-decoration: none;
}

.main-footer a:hover {
  color: #ffc107;
}

.footer-bottom {
  background: #1a1a1a;
  padding: 25px 0;
  text-align: left;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #aaa;
}

/* ==========================================================================
   Service Pages (Hero, Gallery, FAQ)
   ========================================================================== */
.service-hero {
  position: relative;
  padding: 150px 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
  font-size: 70px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-divider {
  margin: 0 auto 20px;
}

.hero-subtext {
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-trust-stars {
  margin-top: 30px;
}

.section-padding {
  padding: 80px 0;
}

.intro-section h2 {
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
}

.intro-section p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 1300px;
  margin: 0 auto 20px;
  color: #000000;
}

.seo-text-section {
  padding: 60px 0;
}

.seo-text-section h2 {
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
  font-size: 40px;
  color: #444444;
  margin: 0 0 15px;
  font-weight: 500;
}

.gallery-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: block;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay .thin-plus {
  background-color: #FEC40D;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
  line-height: 1;
  padding-bottom: 2px;
  transform: scale(0.5);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay,
.gallery-item.active .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay .thin-plus,
.gallery-item.active .gallery-overlay .thin-plus {
  transform: scale(1);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  z-index: 10;
}

.lightbox-content img {
  width: auto;
  height: 80vh;
  max-width: 90vw;
  object-fit: contain;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 11;
  line-height: 1;
  font-weight: 300;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 50px;
  cursor: pointer;
  z-index: 11;
  padding: 20px;
  font-weight: 300;
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  right: 30px;
  color: #fff;
  font-size: 14px;
  z-index: 11;
}

.cta-bar {
  padding: 50px 0;
}

.cta-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-bar-flex h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 32px;
}

/* FAQ Accordion */
.faq-section h2 {
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
  color: #444444;
  font-size: 40px;
  font-weight: 500;
  margin: 0 0 15px;
}

.section-divider {
  display: block;
  margin: 0 auto 30px auto;
}

.faq-accordion {
  width: 100%;
  margin: 40px auto 0;
}

.faq-item {
  border: 1px solid #ddd;
  margin-bottom: 15px;
  border-radius: 4px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background: #f9f9f9;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.faq-question:hover {
  background: #f1f1f1;
}

.faq-question h4 {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.faq-question i {
  color: var(--secondary-color);
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: var(--white);
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 500px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  
  .main-header {
    position: relative;
  }

  .main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    margin: 0;
    gap: 0;
  }
  
  .main-nav li.has-submenu {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .main-nav > ul > li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .main-nav ul li a {
    display: block;
    padding: 15px 20px;
    color: #666;
    font-weight: 500;
  }

  .main-nav ul li.has-submenu > a {
    display: flex;
    align-items: center;
  }
  
  .main-nav ul li.has-submenu > a.active {
    color: #FEC40D;
  }
  .main-nav ul li.has-submenu > a.active i {
    color: #FEC40D;
  }

  .main-nav ul li a.nav-estimate-btn {
    background: #ffc107 !important;
    color: #222 !important;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    margin: 15px 20px;
    padding: 15px !important;
    border-radius: 4px;
    width: calc(100% - 40px);
  }
  
  .main-nav ul li.phone-link {
    display: none;
  }
  
  .main-nav .submenu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 20px;
    display: none;
    opacity: 1;
    visibility: visible;
    min-width: 100%;
    transform: none;
  }
  
  .main-nav .has-submenu.open .submenu {
    display: block;
  }

  .mobile-menu-toggle {
    display: block;
    color: #c40001;
    font-size: 24px;
    cursor: pointer;
  }
  
  .mobile-controls {
    display: flex;
    align-items: center;
    margin-left: auto;
  }
  
  .mobile-phone-btn {
    display: inline-block;
    background: #c40001;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    margin-right: 15px;
    font-size: 18px;
  }


  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {

  .hero-banner h1,
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-banner h2,
  .hero-subtext {
    font-size: 20px;
  }

  .trust-bar h4 {
    font-size: 15px;
    line-height: 1.8;
  }

  .trust-bar .dot {
    display: block;
    color: transparent;
    height: 5px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .gallery-grid-4 {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 992px) {
  .mobile-controls { display: none; }
}


a, button, .mobile-menu-toggle, .mobile-phone-btn {
  -webkit-tap-highlight-color: transparent;
}

/* ==========================================================================
   Video Page Styles
   ========================================================================== */
.video-hero-section {
  background-color: #222;
  background-image: url('https://gardencityrenovations.com/wp-content/uploads/2025/01/banner-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  color: #fff;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-hero-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.video-hero-left, .video-hero-right {
  flex: 1;
}

.sp-card {
  background-color: #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  max-width: 450px;
  margin: 0 auto;
}

.sp-image {
  width: 100%;
  height: auto;
  display: block;
}

.sp-info {
  padding: 20px;
  text-align: center;
}

.sp-title {
  color: #fff;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.sp-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.seen-on {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.media-logos-img {
  height: 24px;
  width: auto;
}

.video-hero-heading {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 25px;
}

.video-hero-subheading {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 18px;
  color: #d1d1d1;
  line-height: 1.6;
  margin-bottom: 40px;
}

.video-arrow {
  text-align: center;
  margin-top: 20px;
}

.video-arrow img {
  width: 50px;
  height: auto;
}

.video-player-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.video-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.flr-video-player {
  width: 100%;
  display: block;
}

@media (max-width: 991px) {
  .video-hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .video-hero-heading {
    font-size: 32px;
  }
  
  .video-hero-right {
    order: -1;
    margin-bottom: 30px;
  }
}
