/* ===== CSS VARIABLES ===== */
:root {
  --primary: #1a2a3a;
  --secondary: #c8102e;
  --accent: #f0b90b;
  --light: #f8f9fa;
  --dark: #121a24;
  --gray: #6c757d;
  --transition: all 0.3s ease;
}

/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Animation Classes */
.animate-pulse {
  animation: pulse 2s infinite;
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.8s ease-out;
}

.animate-fadeInRight {
  animation: fadeInRight 0.8s ease-out;
}

.animate-zoomIn {
  animation: zoomIn 0.8s ease-out;
}

.animate-slideInUp {
  animation: slideInUp 0.8s ease-out;
}

.animate-bounceIn {
  animation: bounceIn 0.8s ease-out;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Section Reveal Animations */
.section-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Animation for Grid Items */
.stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: white;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

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

.logo-icon {
  font-size: 2rem;
  color: var(--accent);
  animation: float 4s ease-in-out infinite;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-tagline {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: -5px;
}

/* Desktop Navigation */
nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

nav a:hover {
  color: var(--accent);
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

nav a:hover::after {
  width: 100%;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.mobile-menu.active {
  transform: rotate(90deg);
  color: var(--accent);
}

/* ===== BUTTON STYLES ===== */
.btn {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  background: #a00d24;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;
  transform: translate(-50%, -50%);
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

.btn-accent {
  background: var(--accent);
  color: var(--dark);
}

.btn-accent:hover {
  background: #d9a50a;
}

.submit-btn {
  background: var(--secondary);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.submit-btn:hover {
  background: #a00d24;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-btn:disabled {
  background: var(--gray);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.submit-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: width 0.6s ease, height 0.6s ease, top 0.6s ease, left 0.6s ease;
  transform: translate(-50%, -50%);
}

.submit-btn:hover::after {
  width: 300px;
  height: 300px;
}

.whatsapp-btn {
  background: #25d366;
  color: white;
}

.whatsapp-btn:hover {
  background: #128c7e;
}

/* Loading Spinner */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
  margin-right: 10px;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  margin-top: 38px;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 400%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.slide {
  width: 25%;
  height: 100%;
  position: relative;
}

.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background: rgba(18, 26, 36, 0.6);
  padding: 20px;
}

.slide-content > div {
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.slide h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Slide Background Images */
.slide-1 {
  background: url("/assets/imgs/team.jpeg") no-repeat center center/cover;
}
.slide-2 {
  background: url("/assets/imgs/team-2.jpeg") no-repeat top center/cover;
}
.slide-3 {
  background: url("/assets/imgs/event-security.jpeg") no-repeat center
    center/cover;
}
.slide-4 {
  background: url("/assets/imgs/team-2.jpeg") no-repeat top center/cover;
}

.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* ===== SECTION COMMON STYLES ===== */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.title-divider {
  width: 80px;
  height: 4px;
  background: var(--secondary);
  margin: 15px auto;
  border-radius: 2px;
}

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

.section-header h1 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 40px;
}

.section-subtitle h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 15px;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  text-align: center;
  border-top: 4px solid var(--secondary);
  position: relative;
  overflow: hidden;
  animation-delay: calc(var(--delay, 0) * 0.1s);
}

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

.service-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.service-card p {
  color: var(--gray);
}

/* ===== FEATURES SECTION ===== */
/* ===== ENHANCED FEATURES SECTION ===== */
.features {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    #2c3e50 50%,
    var(--dark) 100%
  );
  color: white;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(200, 16, 46, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(240, 185, 11, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  animation: pulse 4s ease-in-out infinite;
}

.features .section-title h2 {
  color: white;
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-text {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(240, 185, 11, 0.5);
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
}

.features .section-title p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.3rem;
  font-weight: 300;
  margin-top: 15px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.03);
  border-color: rgba(240, 185, 11, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(200, 16, 46, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--secondary), #a00d24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(200, 16, 46, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--accent), #d9a50a);
  box-shadow: 0 15px 30px rgba(240, 185, 11, 0.4),
    0 0 20px rgba(240, 185, 11, 0.3);
}

.feature-icon-wrapper::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: conic-gradient(
    from 0deg,
    var(--secondary),
    var(--accent),
    var(--secondary)
  );
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper::before {
  opacity: 1;
  animation: rotate 3s linear infinite;
}

.feature-icon-wrapper i {
  font-size: 2.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper i {
  transform: scale(1.1);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

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

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
  font-weight: 700;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
}

.feature-card h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.feature-card:hover h3::after {
  width: 80px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.feature-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #d9a50a);
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(240, 185, 11, 0.3);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-badge {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(240, 185, 11, 0.4);
}
/* Additional Animations */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ===== BENEFITS SECTION ===== */
.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
}

.benefit-column {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  transition: var(--transition);
  animation-delay: calc(var(--delay, 0) * 0.1s);
}

.benefit-item:hover {
  transform: translateX(10px);
  background: rgba(200, 16, 46, 0.05);
  border-radius: 8px;
  padding-left: 15px;
}

.benefit-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.benefit-icon {
  color: var(--secondary);
  margin-right: 15px;
  font-size: 1.2rem;
  margin-top: 3px;
}

.benefit-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--primary);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: white;
}

.testimonials .section-title h2 {
  color: white;
}

.testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial {
  min-width: 100%;
  padding: 30px;
  text-align: center;
}

.testimonial-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
  transition: var(--transition);
}

.testimonial-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-content::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid rgba(255, 255, 255, 0.1);
}

.testimonial-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.author-info p {
  opacity: 0.8;
  font-size: 0.9rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* ===== AREAS SECTION ===== */
.areas {
  background: var(--light);
  text-align: center;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.area-card {
  background: white;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  animation-delay: calc(var(--delay, 0) * 0.1s);
}

.area-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.area-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

.area-card h3 {
  font-size: 1.3rem;
}

/* ===== CTA SECTION ===== */
.cta {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: white;
  text-align: center;
  padding: 100px 0;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.contact-form {
  max-width: 600px;
  margin: 40px auto 0;
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--secondary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 5px;
  display: block;
}

.form-message {
  padding: 15px;
  border-radius: 6px;
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: 50px;
  transition: var(--transition);
}

.contact-option:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.contact-option i {
  font-size: 1.5rem;
  color: var(--accent);
}

.phone {
  font-size: 1.3rem;
  font-weight: 700;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-section {
  background: var(--light);
  padding: 120px 0 80px;
  margin-top: 70px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

.about-text h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 25px;
  font-weight: 600;
}

.about-text h3 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin: 40px 0 20px;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
}

.about-text h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: var(--accent);
  border-radius: 2px;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--gray);
  font-size: 1.05rem;
}

.about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  height: fit-content;
  transition: var(--transition);
}

.about-image:hover {
  transform: rotate(-1deg) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.03);
}

.experience-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
  animation: pulse 2s infinite;
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
  margin: 60px 0;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.client-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  border-top: 4px solid var(--accent);
  animation-delay: calc(var(--delay, 0) * 0.1s);
}

.client-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.client-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 15px;
  border: 4px solid var(--accent);
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-card h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--primary);
  font-weight: 600;
}

.client-card p {
  font-size: 0.95rem;
  color: var(--gray);
}

/* ===== EVENTS SECTION ===== */
.events-section {
  margin: 60px 0;
}

.event-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.event-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  animation-delay: calc(var(--delay, 0) * 0.1s);
}

.event-item:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.event-icon {
  color: var(--secondary);
  font-size: 1.4rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.event-text {
  flex: 1;
}

.event-text h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.event-text p {
  font-size: 0.95rem;
  color: var(--gray);
}

/* ===== QUALITIES SECTION ===== */
.qualities-section {
  margin: 60px 0;
}

.qualities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.quality-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  text-align: center;
  border-left: 4px solid var(--secondary);
  animation-delay: calc(var(--delay, 0) * 0.1s);
}

.quality-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.quality-icon {
  font-size: 2.8rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.quality-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary);
  font-weight: 600;
}

.quality-card p {
  font-size: 0.95rem;
  color: var(--gray);
}

/* ===== MISSION SECTION ===== */
.mission-section {
  margin: 60px 0;
}

.mission-box {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: white;
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.mission-box:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mission-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(240,185,11,0.1)"/></svg>');
  background-size: cover;
}

.mission-box h3 {
  color: var(--accent);
  margin-bottom: 25px;
  font-size: 2rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.mission-box p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ===== COVERAGE SECTION ===== */
.coverage-section {
  margin: 60px 0;
}

.coverage-list {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.coverage-list ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.coverage-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: var(--transition);
  animation-delay: calc(var(--delay, 0) * 0.1s);
}

.coverage-list li:hover {
  transform: translateX(10px);
  background: rgba(240, 185, 11, 0.05);
  border-radius: 8px;
  padding-left: 15px;
}

.coverage-list li:last-child {
  border-bottom: none;
}

.coverage-list i {
  color: var(--secondary);
  font-size: 1.2rem;
}

/* ===== TRUST SECTION ===== */
.trust-section {
  margin: 60px 0 0;
}

.trust-list {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.trust-list ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  transition: var(--transition);
  animation-delay: calc(var(--delay, 0) * 0.1s);
}

.trust-list li:hover {
  transform: translateX(10px);
  background: rgba(240, 185, 11, 0.05);
  border-radius: 8px;
  padding-left: 15px;
}

.trust-list i {
  color: var(--accent);
  font-size: 1.2rem;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: var(--light);
  margin-top: 70px;
  padding: 80px 0;
}

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

.gallery-header h2 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.gallery-header p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

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

.masonry-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  /* Reduced height for mobile - using min-height instead of aspect-ratio */
  min-height: 200px;
  height: 300px; /* Fixed height for desktop */
  animation-delay: calc(var(--delay, 0) * 0.1s);
}

.masonry-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.gallery-overlay i {
  color: white;
  font-size: 2.5rem;
}

/* ===== VIP SECTION ===== */
.vip-section {
  background: var(--light);
  margin-top: 70px;
}

.vip-header {
  text-align: center;
  margin-bottom: 60px;
}

.vip-header h1 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.vip-header p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.vip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.vip-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  background: white;
  animation-delay: calc(var(--delay, 0) * 0.1s);
}

.vip-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.vip-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.celebrity-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vip-content {
  padding: 25px;
}

.celebrity-name {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}

.celebrity-role {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1rem;
}

.service-description {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-details {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.service-details i {
  color: var(--secondary);
  font-size: 1.1rem;
}

.service-details span {
  font-size: 0.9rem;
  color: var(--gray);
}

/* ===== GALLERY MODAL ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1100;
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
}

.modal-content {
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 90%;
  max-height: 90%;
  top: 50%;
  transform: translateY(-50%);
}

.modal-image {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: fixed;
  top: 25px;
  right: 35px;
  color: white;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  z-index: 1101;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.modal-close:hover {
  color: var(--accent);
  background: rgba(0, 0, 0, 0.8);
}

.modal-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 1101;
  background: rgba(0, 0, 0, 0.5);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.modal-nav:hover {
  background: rgba(0, 0, 0, 0.8);
  color: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

.modal-prev {
  left: 30px;
}

.modal-next {
  right: 30px;
}

.modal-caption {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 80%;
  text-align: center;
  color: white;
  padding: 15px 25px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-section {
  background: var(--light);
  padding: 120px 0 80px;
  margin-top: 70px;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h1 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-header p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 30px;
  font-weight: 600;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: var(--light);
  border-radius: 8px;
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.3rem;
}

.contact-text h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-text p {
  color: var(--gray);
  line-height: 1.6;
}

.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-container h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 30px;
  font-weight: 600;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
  background: white;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.emergency-contact {
  background: linear-gradient(135deg, var(--secondary), #a00d24);
  color: white;
  padding: 30px;
  border-radius: 12px;
  margin-top: 30px;
  text-align: center;
}

.emergency-contact h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: white;
}

.emergency-contact .phone {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 10px 0;
}

.emergency-contact p {
  opacity: 0.9;
  margin-bottom: 15px;
}

.coverage-areas {
  margin-top: 40px;
}

.coverage-areas h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tag {
  background: var(--light);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--primary);
  border: 1px solid #e9ecef;
  transition: var(--transition);
}

.area-tag:hover {
  transform: translateY(-3px);
  background: var(--secondary);
  color: white;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 20px;
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
}

.footer-logo .logo-text {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-logo p {
  opacity: 0.8;
  margin-bottom: 20px;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--accent);
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary);
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--accent);
  width: 20px;
}

.registration {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.registration h4 {
  margin-bottom: 10px;
  color: var(--accent);
}

.registration p {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ===== UTILITY COMPONENTS ===== */

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 100px;
  right: 40px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-button:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
/* ===== PAGE-SPECIFIC STYLES ===== */
.page-hero {
  background: linear-gradient(rgba(18, 26, 36, 0.8), rgba(18, 26, 36, 0.8)),
    url("/assets/imgs/team.jpeg") no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  margin-top: 70px;
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

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

.page-section-alt {
  background: var(--light);
}

.page-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-service-card {
  background: white !important;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  text-align: center;
  border-top: 4px solid var(--secondary);
}

.page-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.page-service-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.page-service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.page-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.page-area-card {
  background: white;
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
}

.page-area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.page-area-card i {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

.page-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  counter-reset: step-counter;
}

.page-process-step {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.page-process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-process-step::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.page-industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.page-industry-card {
  background: white;
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
}

.page-industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-industry-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

.page-cta-box {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: white;
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.page-cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.page-cta-box p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== RESPONSIVE STYLES - ALL MEDIA QUERIES IN ONE PLACE ===== */

/* Large Desktops: 1200px and below */
@media (max-width: 1200px) {
  .masonry-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .masonry-item {
    height: 280px; /* Slightly smaller height */
  }

  .vip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .features .section-title h2 {
    font-size: 2.5rem;
  }
}

/* Tablets: 992px and below */
@media (max-width: 992px) {
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .masonry-item {
    height: 250px; /* Reduced height for tablets */
  }

  .gallery-header h1,
  .contact-header h1,
  .section-header h1,
  .vip-header h1 {
    font-size: 2.3rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .slide h1 {
    font-size: 2.8rem;
  }

  .benefits-container {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .vip-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 768px and below */
@media (max-width: 768px) {
  /* Navigation */
  .mobile-menu {
    display: block;
  }

  nav ul {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    gap: 15px;
  }

  nav ul.active {
    display: block !important;
  }

  nav a {
    padding: 12px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav a:last-child {
    border-bottom: none;
  }

  /* Ensure desktop navigation stays visible */
  @media (min-width: 769px) {
    nav ul {
      display: flex !important;
    }
  }

  /* Gallery Mobile Fixes */
  .masonry-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
  }

  .masonry-item {
    height: 200px; /* Even smaller for mobile */
    min-height: 180px; /* Minimum height */
  }

  .gallery-image img {
    object-fit: cover; /* Ensure image covers the container */
  }

  .gallery-header h1,
  .contact-header h1,
  .section-header h1,
  .vip-header h1 {
    font-size: 2rem;
  }

  .modal {
    padding: 15px;
  }

  .modal-content {
    max-width: 95%;
    max-height: 85%;
  }

  .modal-image {
    max-height: 80vh;
  }

  .modal-close {
    top: 15px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 2.5rem;
  }

  .modal-nav {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }

  .modal-prev {
    left: 20px;
  }

  .modal-next {
    right: 20px;
  }

  .modal-caption {
    bottom: 20px;
    font-size: 1rem;
    padding: 12px 20px;
    max-width: 90%;
  }

  /* Typography */
  .gallery-header h1,
  .contact-header h1,
  .section-header h1,
  .vip-header h1 {
    font-size: 2rem;
  }

  .contact-info,
  .contact-form-container {
    padding: 30px;
  }

  .slide h1 {
    font-size: 2.3rem;
  }

  .slide p {
    font-size: 1.1rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  /* Layout */
  .contact-options {
    flex-direction: column;
    align-items: center;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .mission-box {
    padding: 30px;
  }

  .mission-box h3 {
    font-size: 1.7rem;
  }

  .mission-box p {
    font-size: 1.1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
  }

  .features .section-title h2 {
    font-size: 2.2rem;
  }

  .features .section-title p {
    font-size: 1.1rem;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .feature-icon-wrapper i {
    font-size: 2rem;
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-container {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .qualities-grid {
    grid-template-columns: 1fr;
  }

  .coverage-list ul,
  .trust-list ul {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links h3::after,
  .footer-contact h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .page-hero {
    height: 50vh;
  }

  .page-hero h1 {
    font-size: 2.3rem;
  }

  .page-hero p {
    font-size: 1.1rem;
  }

  .page-services-grid {
    grid-template-columns: 1fr;
  }

  .page-areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-process-steps {
    grid-template-columns: 1fr;
  }

  .page-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small Mobile: 576px and below */
@media (max-width: 576px) {
  .masonry-grid {
    gap: 12px;
  }

  .masonry-item {
    height: 180px; /* Smallest height for very small devices */
    min-height: 160px;
  }

  .modal {
    padding: 10px;
  }

  .modal-content {
    max-width: 98%;
  }

  .modal-close {
    top: 10px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }

  .modal-nav {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
  }

  .modal-prev {
    left: 15px;
  }

  .modal-next {
    right: 15px;
  }

  .modal-caption {
    bottom: 15px;
    font-size: 0.9rem;
    padding: 10px 15px;
  }

  .gallery-header h1,
  .contact-header h1,
  .section-header h1,
  .vip-header h1 {
    font-size: 1.8rem;
  }

  .contact-info,
  .contact-form-container {
    padding: 20px;
  }

  .contact-item {
    padding: 15px;
  }

  .emergency-contact .phone {
    font-size: 1.5rem;
  }

  .slide h1 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 25px;
  }

  .testimonial-content {
    padding: 25px;
  }

  .clients-grid {
    grid-template-columns: 1fr;
  }

  .event-list {
    grid-template-columns: 1fr;
  }

  .qualities-grid {
    grid-template-columns: 1fr;
  }

  .coverage-list ul {
    grid-template-columns: 1fr;
  }

  .trust-list ul {
    grid-template-columns: 1fr;
  }

  .vip-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    height: 70vh;
  }

  .slide h1 {
    font-size: 1.8rem;
  }

  .slide p {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
  .features .section-title h2 {
    font-size: 1.8rem;
  }

  .features .section-title p {
    font-size: 1rem;
  }

  .feature-card {
    padding: 25px 15px;
  }

  .feature-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .feature-icon-wrapper i {
    font-size: 1.8rem;
  }

  .feature-card h3 {
    font-size: 1.2rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }
  .page-hero {
    height: 100vh;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-areas-grid {
    grid-template-columns: 1fr;
  }

  .page-industries-grid {
    grid-template-columns: 1fr;
  }

  .page-cta-box {
    padding: 40px 20px;
  }

  .page-cta-box h2 {
    font-size: 2rem;
  }
}
