@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary-blue: #1b4ec7;
  --primary-blue-hover: #123fa3;
  --accent-yellow: #ffd200;
  --accent-yellow-hover: #e0b800;
  --dark-bg: #06122c;
  --light-cream: #fdfbf2;
  --light-gray: #f8f9fa;
  --text-dark: #111827;
  --text-muted: #4b5563;
  --text-light: #f3f4f6;
  --white: #ffffff;
  
  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 24px;
  --radius-round: 50%;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 30px rgba(6, 18, 44, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(6, 18, 44, 0.15);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-bg);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-blue-hover);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Spacing */
.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background-color: var(--dark-bg);
  color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-cream {
  background-color: var(--light-cream);
}

.section-gray {
  background-color: var(--light-gray);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-blue);
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 15px;
}

.section-dark .section-label {
  color: var(--accent-yellow);
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.section-dark .section-header p {
  color: var(--text-light);
  opacity: 0.9;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--accent-yellow);
  color: var(--dark-bg);
  border-color: var(--accent-yellow);
}

.btn-primary:hover {
  background-color: var(--accent-yellow-hover);
  border-color: var(--accent-yellow-hover);
  color: var(--dark-bg);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 210, 0, 0.3);
}

.btn-secondary {
  background-color: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

.btn-secondary:hover {
  background-color: var(--primary-blue-hover);
  border-color: var(--primary-blue-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 78, 199, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-outline:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--white);
  color: var(--dark-bg);
  border-color: var(--white);
}

.btn-white:hover {
  background-color: var(--light-gray);
  transform: translateY(-2px);
}

/* Navigation Bar */
.navbar {
  background-color: var(--white);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar.sticky {
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  letter-spacing: -0.5px;
}

.navbar-brand span {
  color: var(--accent-yellow);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-bg);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-yellow);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-blue);
}

.nav-cta {
  background-color: var(--primary-blue);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.nav-cta:hover {
  background-color: var(--primary-blue-hover);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-bg);
  margin: 5px 0;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5deg, 6deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5deg, -6deg);
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 160px 0 180px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(6, 18, 44, 0.9) 30%, rgba(6, 18, 44, 0.4) 100%), url('../img/bg.jpg') no-repeat center center / cover;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 210, 0, 0.1);
  color: var(--accent-yellow);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 210, 0, 0.2);
}

.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 25px;
}

.hero-content h1 span {
  color: var(--accent-yellow);
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

/* Floating Info Cards (Overlapping Hero) */
.hero-floating-cards {
  position: relative;
  margin-top: -80px;
  z-index: 10;
}

.floating-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.floating-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 35px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: var(--transition);
}

.floating-card:hover {
  transform: translateY(-8px);
}

.floating-card-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-yellow);
  color: var(--dark-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.floating-card h3 {
  font-size: 1.3rem;
  color: var(--dark-bg);
}

.floating-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* About Section Grid Layout */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  height: 480px;
}

.about-img-big {
  grid-column: 1 / 10;
  grid-row: 1 / 11;
  z-index: 2;
}

.about-img-small-1 {
  grid-column: 7 / 13;
  grid-row: 6 / 13;
  z-index: 3;
}

.about-images-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}

.about-content-badge {
  display: inline-block;
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 5px 12px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.about-content h2 span {
  color: var(--primary-blue);
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-checklist {
  margin: 30px 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.about-checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--dark-bg);
}

.about-checklist-item i {
  color: var(--primary-blue);
  font-size: 1.1rem;
}

/* Trusted By Ticker */
.logo-ticker {
  padding: 40px 0;
  border-top: 1px solid var(--text-light);
  border-bottom: 1px solid var(--text-light);
}

.ticker-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
}

.ticker-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.ticker-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: -0.5px;
  transition: var(--transition);
}

.ticker-logo:hover {
  color: var(--primary-blue);
}

/* Service / Event Offerings Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(27, 78, 199, 0.05);
  color: var(--primary-blue);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--primary-blue);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.35rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
}

.service-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-link:hover {
  color: var(--primary-blue-hover);
}

/* Call to Action Row Banner */
.cta-banner {
  background-color: var(--primary-blue);
  color: var(--white);
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27, 78, 199, 0.95) 0%, rgba(6, 18, 44, 0.9) 100%), url('../img/bg.jpg') no-repeat center center / cover;
  z-index: 1;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-text p {
  color: var(--text-light);
  opacity: 0.9;
  font-size: 1.1rem;
}

/* Split Showcase Row */
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--light-cream);
  overflow: hidden;
}

.showcase-content {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.showcase-list {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.showcase-item {
  display: flex;
  gap: 20px;
}

.showcase-item-number {
  width: 45px;
  height: 45px;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.showcase-item-text h3 {
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.showcase-item-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.showcase-image {
  position: relative;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Achievements Counter Section */
.achievements {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.achievement-card {
  background-color: var(--white);
  color: var(--dark-bg);
  border-radius: var(--radius);
  padding: 35px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.achievement-card h3 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.achievement-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

/* Quote/Quote Banner Form Row */
.quote-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.quote-form-container {
  background-color: var(--accent-yellow);
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-form-container h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.quote-form-container p {
  color: var(--text-dark);
  opacity: 0.8;
  margin-bottom: 35px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--white);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(27, 78, 199, 0.1);
}

.quote-image {
  position: relative;
}

.quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gallery Section (Proud to Deliver First Class) */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.gallery-large {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 500px;
}

.gallery-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 30px;
}

.gallery-small {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 235px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(6, 18, 44, 0.8) 0%, rgba(6, 18, 44, 0.1) 100%);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  z-index: 2;
  transition: var(--transition);
}

.gallery-overlay h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.gallery-overlay p {
  color: var(--accent-yellow);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Testimonials Carousel Section */
.testimonials-section {
  background-color: var(--light-gray);
  padding: 100px 0;
}

.testimonials-carousel-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-avatars {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.avatar-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.6;
}

.avatar-img.active,
.avatar-img:hover {
  opacity: 1;
  border-color: var(--primary-blue);
  transform: scale(1.1);
}

.testimonial-slide-box {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 50px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-quote-icon {
  font-size: 3rem;
  line-height: 1;
  color: var(--accent-yellow);
  margin-bottom: 20px;
}

.testimonial-slide-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.testimonial-slide-author h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.testimonial-slide-author span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Meet Our Experts Section */
.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.expert-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
}

.expert-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.expert-img-wrapper {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.expert-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.expert-card:hover .expert-img-wrapper img {
  transform: scale(1.05);
}

.expert-socials {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: linear-gradient(to top, rgba(6, 18, 44, 0.8), transparent);
  transition: var(--transition);
  z-index: 3;
}

.expert-card:hover .expert-socials {
  bottom: 0;
}

.expert-socials a {
  width: 36px;
  height: 36px;
  background-color: var(--white);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.expert-socials a:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

.expert-info {
  padding: 25px;
}

.expert-info h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.expert-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Call to Action Stripe */
.cta-stripe {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-stripe::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27, 78, 199, 0.95), rgba(6, 18, 44, 0.95)), url('../img/bg.jpg') no-repeat center center / cover;
  z-index: 1;
}

.cta-stripe .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-stripe h2 {
  font-size: 2.2rem;
  color: var(--white);
}

.cta-stripe p {
  color: var(--text-light);
  opacity: 0.9;
  font-size: 1.15rem;
  max-width: 600px;
}

/* FAQ Accordion Section */
.faq-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  overflow: hidden;
  transition: var(--transition);
}

.faq-header {
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background-color: var(--white);
  user-select: none;
}

.faq-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-bg);
  transition: var(--transition);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--primary-blue);
  transition: var(--transition);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: var(--white);
}

.faq-content-inner {
  padding: 0 25px 25px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-header h3 {
  color: var(--primary-blue);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* Sub-page Hero/Header Banner */
.page-hero {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 100px 0;
  position: relative;
  text-align: center;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(6, 18, 44, 0.9), rgba(6, 18, 44, 0.85)), url('../img/bg.jpg') no-repeat center center / cover;
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 15px;
}

.page-hero p {
  color: var(--accent-yellow);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Feature/Casino Split Content Rows */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-content.reverse {
  direction: rtl;
}

.split-content.reverse .split-text {
  direction: ltr;
}

.split-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.split-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.split-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Contact Page Form styling */
.contact-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}

.contact-info {
  background-color: var(--light-cream);
  padding: 50px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-info p {
  color: var(--text-muted);
}

.contact-method-card {
  background-color: var(--white);
  padding: 25px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(27, 78, 199, 0.05);
  color: var(--primary-blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-method-text h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-method-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-form-box {
  background-color: var(--white);
  padding: 50px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-box h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-form-box p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* Legal/Standard Text Page Styling */
.legal-content-box {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content-box h2 {
  font-size: 1.6rem;
  margin: 35px 0 15px;
}

.legal-content-box p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.legal-content-box ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.legal-content-box li {
  margin-bottom: 8px;
}

/* Footer Section styling */
.footer {
  background-color: var(--dark-bg);
  color: var(--white);
  padding: 80px 0 30px;
  border-top: 5px solid var(--accent-yellow);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col-brand {
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.footer-brand-logo span {
  color: var(--accent-yellow);
}

.footer-col-brand p {
  color: var(--text-light);
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.footer-socials a:hover {
  background-color: var(--accent-yellow);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-yellow);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-light);
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-yellow);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.7;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.7;
}

.footer-bottom-links a:hover {
  color: var(--accent-yellow);
}

/* Contact Info Footer Banner Card */
.contact-banner-card {
  background-color: var(--accent-yellow);
  color: var(--dark-bg);
  border-radius: var(--radius);
  padding: 40px 60px;
  margin-bottom: -130px;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow-lg);
}

.contact-banner-left h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.contact-banner-left p {
  font-size: 1rem;
  font-weight: 500;
}

.contact-banner-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact-phone-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-phone-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-phone-details span {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
}

.contact-phone-details strong {
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0;
  width: 100%;
  background-color: var(--dark-bg);
  color: var(--white);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  padding: 20px 0;
  transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid var(--accent-yellow);
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cookie-text {
  font-size: 0.95rem;
  color: var(--text-light);
  opacity: 0.95;
}

.cookie-text a {
  color: var(--accent-yellow);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: var(--white);
}

.cookie-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background-color: var(--accent-yellow);
  color: var(--dark-bg);
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn-accept:hover {
  background-color: var(--accent-yellow-hover);
  transform: translateY(-1px);
}

.cookie-btn-decline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .section {
    padding: 70px 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--light-gray);
    display: none;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .hero {
    padding: 120px 0 140px;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-floating-cards {
    margin-top: -60px;
  }
  
  .floating-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .about-split,
  .services-grid,
  .experts-grid,
  .showcase-row,
  .achievements-grid,
  .quote-row,
  .gallery-grid,
  .faq-row,
  .split-content,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-images-grid {
    height: 380px;
  }
  
  .showcase-content {
    padding: 60px 40px;
  }
  
  .quote-form-container {
    padding: 50px 40px;
  }
  
  .gallery-large {
    height: 350px;
  }
  
  .gallery-small {
    height: 200px;
  }
  
  .contact-banner-card {
    flex-direction: column;
    padding: 40px;
    margin-bottom: -160px;
    text-align: center;
  }
  
  .contact-banner-right {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-col-brand {
    max-width: 100%;
  }
  
  .cookie-banner .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .about-checklist {
    grid-template-columns: 1fr;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .faq-row {
    gap: 30px;
  }
  
  .contact-banner-card {
    margin-bottom: -180px;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
