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

/* === CSS Variables === */
:root {
  --primary-color: #D4AF37; /* Rich Gold */
  --primary-dark: #B8860B;
  --bg-dark: #080808;
  --bg-darker: #000000;
  --text-light: #f3f4f6;
  --text-muted: #a3a3a3;
  --card-bg: #111111;
  --accent-red: #8B0000;
  --border-color: rgba(255, 255, 255, 0.1);
  --header-height: 80px;
  
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Resets & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

/* Section Titles */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-light);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-subtitle {
  color: var(--primary-color);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-darker);
}

.btn-primary:hover {
  background-color: #fcd34d;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

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

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--bg-darker);
}

/* === Header Styles === */
.top-bar {
  background-color: var(--bg-darker);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.85rem;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contact {
  display: flex;
  gap: 20px;
}

.top-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.top-contact a:hover {
  color: var(--primary-color);
}

.top-social {
  display: flex;
  gap: 15px;
}

.top-social a {
  color: var(--text-muted);
}

.top-social a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.main-header {
  background-color: rgba(15, 16, 20, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  max-height: 60px;
  width: auto;
  transition: var(--transition);
}

.logo:hover img {
  transform: scale(1.05);
}

.logo span {
  color: var(--primary-color);
}

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

.nav-link {
  font-weight: 500;
  color: var(--text-light);
  position: relative;
}

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  background: none;
  border: none;
}

/* === Responsive Header === */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    z-index: 999;
  }
  
  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    font-size: 2rem;
    font-family: var(--font-heading);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
  }
  
  .nav-links.active .nav-link {
    transform: translateY(0);
    opacity: 1;
  }
  
  .nav-links.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active .nav-link:nth-child(2) { transition-delay: 0.2s; }
  .nav-links.active .nav-link:nth-child(3) { transition-delay: 0.3s; }
  .nav-links.active .nav-link:nth-child(4) { transition-delay: 0.4s; }
  .nav-links.active .nav-link:nth-child(5) { transition-delay: 0.5s; }
  
  .nav-actions {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
    z-index: 1000;
  }
}

@media (max-width: 576px) {
  .top-bar-inner {
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
  }
  .top-contact {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }
  .nav-links {
    top: 0; /* Cover everything on mobile */
  }
  .nav-link {
    font-size: 1.5rem !important;
  }
}

/* === Footer Styles === */
.footer {
  background-color: var(--bg-darker);
  padding: 80px 0 0 0;
  border-top: 1px solid var(--border-color);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

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

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

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary-color);
  color: var(--bg-darker);
  transform: translateY(-3px);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a::before {
  content: '→';
  color: var(--primary-color);
  transition: var(--transition);
}

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

.footer-contact li {
  display: flex;
  gap: 15px;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.footer-contact li i {
  color: var(--primary-color);
  margin-top: 5px;
}

.footer-newsletter p {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.newsletter-form input {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-light);
  border-radius: 4px;
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--primary-color);
}

.newsletter-form button {
  padding: 0 20px;
}

.footer-bottom {
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-bottom span {
  color: var(--primary-color);
}

/* === Hero Section === */
.hero-section {
  min-height: 80vh;
  width: 100%;
  position: relative;
}

.heroSwiper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  z-index: 1;
  transition: transform 8s ease-out;
}

.swiper-slide-active .slide-bg {
  transform: scale(1.02); /* Very smooth subtle zoom */
}

.slide-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.85) 100%);
}

.slide-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: left;
  max-width: 800px;
  margin: 0; 
  padding: 0 20px;
}

.hero-subtitle {
  color: var(--primary-color);
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
  opacity: 0;
}

.hero-title {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
  text-transform: capitalize;
  opacity: 0;
}

.hero-title span {
  color: var(--primary-color);
  font-style: italic;
}

.hero-desc {
  font-size: 1.1rem;
  color: #e5e7eb;
  margin-bottom: 40px;
  max-width: 600px;
  opacity: 0;
}

.hero-btns {
  display: flex;
  gap: 20px;
  opacity: 0;
}

/* Slide Entry Animations */
@keyframes slideUpFade {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.swiper-slide-active .hero-subtitle {
  animation: slideUpFade 1s ease 0.3s forwards;
}
.swiper-slide-active .hero-title {
  animation: slideUpFade 1s ease 0.5s forwards;
}
.swiper-slide-active .hero-desc {
  animation: slideUpFade 1s ease 0.7s forwards;
}
.swiper-slide-active .hero-btns {
  animation: slideUpFade 1s ease 0.9s forwards;
}

.swiper-button-next, .swiper-button-prev {
  color: var(--primary-color) !important;
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 0.5 !important;
}
.swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
  opacity: 1 !important;
}

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

.about-image-wrapper {
  position: relative;
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.about-experience {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--primary-color);
  color: var(--bg-darker);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
  display: flex;
  flex-direction: column;
}

.exp-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
}

.exp-text {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.about-text h2 {
  font-size: 3rem;
  margin: 15px 0 25px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.about-features {
  margin-bottom: 35px;
}

.about-features li {
  margin-bottom: 15px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-features li i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* === Stats Section === */
.stats-section {
  background-color: var(--card-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.stat-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.stat-number {
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.stat-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === Services Section === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.8);
  border-color: rgba(212, 175, 55, 0.4);
}

.service-img {
  position: relative;
  height: 380px;
  width: 100%;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-img::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  opacity: 0.8;
  transition: opacity 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-card:hover .service-img::after {
  opacity: 1;
  background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(212,175,55,0.4) 100%);
}

.service-content {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  padding: 30px 25px;
  z-index: 2;
  transform: translateY(45%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-content {
  transform: translateY(0);
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
  transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
  color: var(--primary-color);
}

.service-content p {
  color: #d1d5db;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
  margin-bottom: 20px;
}

.service-card:hover .service-content p {
  opacity: 1;
  transform: translateY(0);
}

.service-overlay {
  display: none; /* Hide old overlay */
}

/* === Mid Banner Slider Section === */
.mid-banner-slider {
  position: relative;
  height: 60vh;
  min-height: 450px;
}

.midBannerSwiper {
  width: 100%;
  height: 100%;
}

.mid-banner-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  filter: brightness(0.3);
}

.mid-banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.mid-banner-content h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.mid-banner-content h2 span {
  color: var(--primary-color);
  font-style: italic;
}

.mid-banner-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #e5e7eb;
}

/* === Why Choose Us === */
.wcu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.wcu-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  background: var(--card-bg);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.wcu-item:hover {
  transform: translateX(15px) translateY(-5px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
  border-left-color: #fff;
  background: #1a1a1a;
}

.wcu-icon {
  font-size: 2.2rem;
  color: var(--primary-color);
  min-width: 50px;
  transition: transform 0.4s ease, color 0.4s ease;
}

.wcu-item:hover .wcu-icon {
  transform: rotate(15deg) scale(1.1);
  color: #fff;
}

.wcu-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

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

.wcu-image {
  position: relative;
  height: 100%;
  min-height: 450px;
  background-image: url('https://images.unsplash.com/photo-1543881518-2e0e0f316b23?w=800&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.wcu-grid:hover .wcu-image {
  transform: scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.glass-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(15, 16, 20, 0.8);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

.glass-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.client-logos {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.client-logos span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* === Gallery Section (Accordion Style) === */
.gallery-accordion {
  display: flex;
  width: 100%;
  height: 450px;
  gap: 15px;
  margin-top: 30px;
}

.gallery-panel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  border-radius: 15px;
  color: #fff;
  cursor: pointer;
  flex: 0.5;
  margin: 0;
  position: relative;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.gallery-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 60%);
  opacity: 0.5;
  transition: opacity 0.5s ease;
}

.gallery-panel:hover {
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.gallery-panel.active {
  flex: 4;
}

.gallery-panel.active::before {
  opacity: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(212, 175, 55, 0.2) 60%);
}

.gallery-panel h3 {
  font-size: 1.8rem;
  position: absolute;
  bottom: 30px;
  left: 30px;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  white-space: nowrap;
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
  color: #fff;
}

.gallery-panel.active h3 {
  opacity: 1;
  transform: translateY(0);
}

/* === Packages Section === */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.package-card {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: var(--transition);
}

.package-card.featured {
  transform: scale(1.05);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  z-index: 2;
}

.package-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.5);
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-15px);
  box-shadow: 0 30px 60px rgba(212, 175, 55, 0.3);
}

.pkg-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--primary-color);
  color: var(--bg-darker);
  padding: 5px 40px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  transform: rotate(45deg);
  z-index: 10;
}

.pkg-header {
  position: relative;
  height: 200px;
}

.pkg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.pkg-title-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(15, 16, 20, 1), transparent);
}

.pkg-title-wrap h3 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 5px;
}

.pkg-price {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.pkg-body {
  padding: 30px;
}

.pkg-features {
  margin-bottom: 30px;
}

.pkg-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 15px;
}

.pkg-features li:last-child {
  border-bottom: none;
}

.pkg-features li i {
  color: var(--primary-color);
}

.pkg-features li.excluded {
  color: var(--text-muted);
  text-decoration: line-through;
}

.pkg-features li.excluded i {
  color: var(--accent-red);
}

.pkg-btn {
  width: 100%;
  text-align: center;
  transition: all 0.4s ease;
}

.package-card:hover .pkg-btn.btn-outline {
  background-color: var(--primary-color);
  color: #000;
  letter-spacing: 2px;
}

.package-card:hover .pkg-btn.btn-primary {
  background-color: #fff;
  color: #000;
  letter-spacing: 2px;
  box-shadow: 0 5px 20px rgba(255,255,255,0.4);
}

/* === Responsive Details === */
@media (max-width: 1200px) {
  .hero-title { font-size: 3rem; }
  .about-grid, .wcu-grid { gap: 40px; }
  .stat-number { font-size: 2.5rem; }
}

@media (max-width: 768px) {
  .section-padding { padding: 50px 0; }
  .section-title { font-size: 2rem; }
  .section-subtitle { font-size: 0.9rem; }
  .section-title-wrapper { margin-bottom: 30px; }
}

@media (max-width: 992px) {
  .hero-title { font-size: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrapper { margin-bottom: 50px; }
  .about-experience { bottom: 0; right: 0; padding: 20px; }
  .exp-number { font-size: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .wcu-grid { grid-template-columns: 1fr; }
  .wcu-image { height: 300px; min-height: auto; }
  .packages-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .package-card.featured { transform: scale(1); }
  .package-card.featured:hover { transform: translateY(-10px); }
  .gallery-accordion { height: 400px; }
  .gallery-panel h3 { font-size: 1.2rem; left: 15px; bottom: 15px; }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); } /* 2x2 on tablet */
}

@media (max-width: 576px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 0.85rem; letter-spacing: 2px; }
  .stats-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-accordion { flex-direction: column; height: 600px; }
  .gallery-panel { flex: 0.5; }
  .gallery-panel.active { flex: 4; }
  .client-logos { flex-direction: column; gap: 10px; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 1.6rem; }
  .section-title { font-size: 1.8rem; }
}

/* === Inner Page Styles === */
.inner-page-header {
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -var(--header-height); /* Pull up if header is transparent/overlay */
  padding-top: var(--header-height);
}

.inner-page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
}

.header-content h1 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 1rem;
}

.breadcrumb a {
  color: #fff;
  transition: var(--transition);
}

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

.breadcrumb span {
  color: var(--text-muted);
}

/* Contact Page Specific */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.info-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  display: flex;
  gap: 20px;
  align-items: center;
}

.info-card i {
  font-size: 1.5rem;
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.info-card h4 {
  margin-bottom: 5px;
}

.info-card p, .info-card a {
  color: var(--text-muted);
}

.contact-form-wrapper {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-light);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-color);
  color: #fff;
  border-radius: 4px;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
}

.map-section {
  height: 450px;
  width: 100%;
  margin-top: 50px;
  border-radius: 12px;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Gallery Page Specific */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
}

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

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

.gallery-item-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay i {
  color: var(--primary-color);
  font-size: 2rem;
}

@media (max-width: 768px) {
  .inner-page-header { height: 250px; padding-top: var(--header-height); }
  .header-content h1 { font-size: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-form-wrapper { padding: 30px 20px; }
  .map-section { height: 300px; }
  
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .footer-social { justify-content: center; }
  .footer-links a { justify-content: center; }
  .footer-contact li { justify-content: center; }
  .newsletter-form { flex-direction: column; }
}
