/* pages.css - RESPONSIVE VERSION */
/* ===== Global Font Reset — match homepage (Raleway + Bebas Neue) ===== */
:root{
    --heading-font: 'Raleway', sans-serif;
    --body-font: 'Raleway', sans-serif;

}
/* Body defaults */
body{
    font-family: var(--body-font) !important;
    color:#000;
    line-height:1.7;
    letter-spacing:.2px;
}

/* All headings + shared title classes */
h1,h2,h3,h4,h5,h6,
.section-title,
.about-title-overlay h1{
    font-family: var(--heading-font) !important;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    line-height:1.1;
    margin-top:0;
    margin-bottom:.5rem;
}

/* Paragraphs, subtitles, buttons, misc text */
p,
.section-subtitle,
.btn-primary,
.btn-primary-custom,
.service-card p,
.feature-item p,
.contact-item p{
    font-family: var(--body-font) !important;
    font-weight:400;
    letter-spacing:.25px;
    line-height:1.75;
    color:inherit;
}

/* Any markup using .playfair should follow the heading style, not a different font */
.playfair{
    font-family: var(--heading-font) !important;
    font-weight:700 !important;
    text-transform:uppercase !important;
    letter-spacing:2px !important;
}
/* ==========================================
   PACKAGE BUILDER – FONT WEIGHT ADJUSTMENTS
   Make headings lighter & more legible
========================================== */

/* Softer heading styles inside package cards */
.premade-package-title,
.package-service-content h4,
.summary-header h3 {
    font-family: var(--heading-font) !important;
    font-weight: 500 !important;     /* was 800 */
    text-transform: uppercase;
    letter-spacing: 1px !important;  /* slightly tighter */
}

/* Section titles remain bold but not overpowering */
.package-builder-section h1,
.package-builder-section h2 {
    font-family: var(--heading-font) !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px;
}

/* Body text stays clean and readable */
.package-builder-section p,
.premade-package-subtitle,
.package-service-content p,
.summary-header p {
    font-family: var(--body-font) !important;
    font-weight: 400 !important;
    letter-spacing: 0.25px;
    line-height: 1.7;
    color: #444;
}


.container, .services-container .service-wrap, .success-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* BUTTONS */
.btn-primary-custom {
  background-color: #13286b;
  color: #ffffff;
  padding: 8px 20px;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 8px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn-primary-custom:hover {
  background-color: #558ac8;
  color: white;
}

.btn-primary {
  border: none;
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(212, 99, 214, 0.3);
  letter-spacing: 1px;
}

/* Navbar Overrides */
.navbar {
  background-color: rgba(0,0,0,0.8) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* Hero Section */
.about-hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.about-hero.container {
  width: 100vw;
  max-width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding-left: 0 !important;
  padding-right: 0 !important;
  overflow: hidden;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Background image */
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) blur(2px);
  transform: none;
}

/* Overlay container */
.about-title-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 90%;
  max-width: 900px;
  padding: 0 20px;
}

.about-title-overlay h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
}

.about-title-overlay .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin-bottom: 2rem;
  color: #f5f5f5;
  font-weight: 400;
  opacity: 0.95;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

/* === HERO BUTTONS === */
.about-title-overlay .btn-primary,
.about-title-overlay .btn-outline {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  letter-spacing: 0.5px;
  margin: 0 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Solid button */
.about-title-overlay .btn-primary {
  color: #fff;
  border: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.about-title-overlay .btn-primary:hover {
  color: #fff;
}

/* Outline button */
.about-title-overlay .btn-outline {
  background: transparent;
  border: 2px solid #fff;
  padding: 0.55rem 1.5rem !important;
  color: #fff;
  text-decoration: none;
}

.about-title-overlay .btn-outline:hover {
  background: #fff;
  color: #000;
}

/* Hero Buttons Group */
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* === RESPONSIVE ADJUSTMENTS === */

/* Tablet (≤991px) */
@media (max-width: 991px) {
  .hero-image-wrapper {
    height: 60vh;
    min-height: 400px;
  }

  .about-title-overlay h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
  }

  .about-title-overlay .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .about-title-overlay .btn-primary,
  .about-title-overlay .btn-outline {
    font-size: 1rem;
    margin: 0.4rem 0.4rem;
  }
}

/* Mobile (≤575px) */
@media (max-width: 575px) {
  .hero-image-wrapper {
    height: 50vh;
    min-height: 300px;
  }

  .about-title-overlay {
    top: 55%;
    transform: translate(-50%, -50%);
    width: 95%;
    padding: 0 10px;
  }

  .about-title-overlay h1 {
    font-size: 1.8rem;
  }

  .about-title-overlay .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }

  .about-title-overlay .btn-primary,
  .about-title-overlay .btn-outline {
    width: 90%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    margin: 0.4rem auto;
  }
}

/* Very small devices (<360px) */
@media (max-width: 360px) {
  .hero-image-wrapper {
    height: 45vh;
    min-height: 260px;
  }

  .about-title-overlay h1 {
    font-size: 1.5rem;
  }

  .about-title-overlay .hero-subtitle {
    font-size: 0.85rem;
  }

  .about-title-overlay .btn-primary,
  .about-title-overlay .btn-outline {
    font-size: 0.85rem;
    width: 100%;
  }
}


/* Section header styles */
.section {
  padding: 3rem 15px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #1e2931;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: #7a7a7a;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  font-weight: 400;
  padding: 0 15px;
}

/* --- WHY CHOOSE US --- */
.why-choose {
  background: transparent;
  padding: 4rem 15px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  text-align: left;
  justify-items: center;
}

/* Remove box background & shadow */
.feature-card {
  background: none;
  border: none;
  box-shadow: none;
  overflow: hidden;
  text-align: left;
}

/* Taller, full-bleed images */
.feature-card img {
  width: 90%;
  height: 480px; /* increase height */
  object-fit: cover;
  border-radius: 12px; /* matches your screenshot’s rounded edges */
  display: block;
}


.feature-content {
  margin-top: 1rem;
  padding: 0 0.25rem;
}

.feature-content h4 {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5rem;
}

.feature-content p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 767px) {
  .feature-card img {
    height: 240px;
  }
}


/* Services Section */
.services-section {
  padding: 3rem 15px;
}

.services-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 15px;
}

.services-container .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.service-wrap {
  padding: 16px 8px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
  height: 100%;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.service-card h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 1rem;
  color: #2c3e50;
}

.service-card p {
  color: #7a7a7a;
  line-height: 1.8;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
}

/* Carousel */
#servicesCarousel {
  position: relative;
}

#servicesCarousel .carousel-indicators {
  position: static;
  margin-top: 20px;
}

#servicesCarousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #1e2931;
  opacity: 0.4;
  border: none;
  margin: 0 6px;
}

#servicesCarousel .carousel-indicators .active {
  opacity: 1;
}

#servicesCarousel .carousel-control-prev,
#servicesCarousel .carousel-control-next {
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  opacity: 1;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding: 0 15px;
}

.gallery-item {
  position: relative;
  transition: all 0.3s ease;
}

.gallery-item iframe {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
}

.gallery-item:hover {
  transform: scale(1.03);
}

/* CTA Section */
.cta-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 15px;
}

.contact-item {
  padding: 1.5rem 1rem;
}


.contact-item h5 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin: 1rem 0 0.5rem;
}

.contact-item p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #7a7a7a;
}

/* RESPONSIVE BREAKPOINTS */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Desktop (992px - 1399px) */
@media (max-width: 1399px) and (min-width: 992px) {
  .hero-image-wrapper {
    height: 350px;
  }

  .service-card {
    min-height: 380px;
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .hero-image-wrapper {
    height: 300px;
    border-radius: 15px;
  }

  .about-title-overlay {
    width: 95%;
  }

  .btn-primary {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .service-card {
    min-height: 350px;
    padding: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  /* Adjust carousel for 2 items per slide on tablet */
  #servicesCarousel .row {
    --bs-gutter-x: 1rem;
  }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
  .hero-image-wrapper {
    height: 250px;
    border-radius: 10px;
  }

  .about-hero {
    padding: 20px 0;
    margin-top: 50px;
  }

  .section {
    padding: 2rem 15px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-item {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .service-card {
    min-height: 320px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  #servicesCarousel .carousel-control-prev,
  #servicesCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .cta-content .row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
  }

  .cta-content .col-md-4 {
    flex: 1 1 0;
    max-width: 33%; /* force 3 across */
    padding: 0 5px;
  }

  .cta-content .contact-item {
    padding: 0.5rem;
  }

  .cta-content .contact-item i {
    font-size: 1.2rem !important; /* smaller icons */
    margin-bottom: 0.5rem;
  }

  .cta-content .contact-item h5 {
    font-size: 0.9rem;
    margin: 0.5rem 0;
  }

  .cta-content .contact-item p {
    font-size: 0.8rem;
  }

    #gallery .row.mt-5 {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 8px;
  }
  #gallery .row.mt-5 > [class*="col-"] {
    flex: 0 0 33.333% !important;
    max-width: 33.333% !important;
    padding-left: 5px;
    padding-right: 5px;
    min-width: 0; /* allow text to shrink */
  }

  #gallery .row.mt-5 .contact-item {
    padding: 0.5rem;
  }
  #gallery .row.mt-5 .contact-item i {
    font-size: 1.2rem !important;
    margin-bottom: 0.4rem;
  }
  #gallery .row.mt-5 .contact-item h5 {
    font-size: 0.9rem;
    margin: 0.4rem 0;
  }
  #gallery .row.mt-5 .contact-item p {
    font-size: 0.8rem;
    line-height: 1.3;
    /* optional: prevent long email/phone from breaking layout */
    word-break: break-word;
  }
}

/* Mobile Portrait (320px - 575px) */
@media (max-width: 575px) {
  .hero-image-wrapper {
    height: 200px;
    border-radius: 8px;
  }

  .about-title-overlay h1 {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .btn-primary {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }

  .section {
    padding: 1.5rem 10px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .feature-item {
    padding: 1.25rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .service-card {
    min-height: 280px;
    padding: 1.25rem;
    border-radius: 15px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .contact-item {
    padding: 1rem 0.5rem;
  }

  .contact-item i {
    font-size: 1.5rem !important;
  }

  #servicesCarousel .carousel-control-prev,
  #servicesCarousel .carousel-control-next {
    width: 35px;
    height: 35px;
  }

  #servicesCarousel .carousel-indicators {
    margin-top: 15px;
  }

  #servicesCarousel .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }

    .cta-content .row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
  }

  .cta-content .col-md-4 {
    flex: 1 1 0;
    max-width: 33%; /* force 3 across */
    padding: 0 5px;
  }

  .cta-content .contact-item {
    padding: 0.5rem;
  }

  .cta-content .contact-item i {
    font-size: 1.2rem !important; /* smaller icons */
    margin-bottom: 0.5rem;
  }

  .cta-content .contact-item h5 {
    font-size: 0.9rem;
    margin: 0.5rem 0;
  }

  .cta-content .contact-item p {
    font-size: 0.8rem;
  }
}

/* Extra Small Mobile (below 320px) */
@media (max-width: 319px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-image-wrapper {
    height: 180px;
  }

  .about-title-overlay h1 {
    font-size: 1.5rem;
  }

  .btn-primary {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .service-card {
    min-height: 250px;
  }

    .cta-content .row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
  }

  .cta-content .col-md-4 {
    flex: 1 1 0;
    max-width: 33%; /* force 3 across */
    padding: 0 5px;
  }

  .cta-content .contact-item {
    padding: 0.5rem;
  }

  .cta-content .contact-item i {
    font-size: 1.2rem !important; /* smaller icons */
    margin-bottom: 0.5rem;
  }

  .cta-content .contact-item h5 {
    font-size: 0.9rem;
    margin: 0.5rem 0;
  }

  .cta-content .contact-item p {
    font-size: 0.8rem;
  }
}

/* Utility Classes for Responsive */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }

  .text-center-mobile {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

/* Corporate Gallery Section */
.gallery-section {
  padding: 10px 16px;
}

.gallery-container {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
  max-width: 1300px;
  margin: 0 auto 60px;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-section .section-header {
  text-align: center;
  margin-bottom: 24px;
}

.gallery-section .section-title {
  font-size: 2.25rem;
  margin-bottom: .5rem;
}

.gallery-section .section-subtitle {
  font-size: 1.05rem;
  color: #666;
}

/* Video Styling */
.gallery-section .video-wrap {
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-caption {
  margin-top: 18px;
  color: #2f3440;
}

.gallery-caption h4 {
  font-weight: 600;
  margin-bottom: 6px;
}

.gallery-caption p {
  font-size: 0.95rem;
  color: #666;
}

/* Carousel Controls + Indicators */
.carousel-indicators {
  position: static;
  margin-top: 12px;
  z-index: 6;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #1e2931;
  opacity: .4;
  border: none;
  margin: 0 6px;
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  top: 45%;
  transform: translateY(-50%);
  border-radius: 50%;
  opacity: 1;
  z-index: 5;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) drop-shadow(0 0 4px rgba(0,0,0,.6));
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-container { padding: 22px 16px; min-height: 450px; }
  .gallery-section .video-wrap { max-width: 100%; }
  .gallery-section .section-title { font-size: 1.8rem; }
}
