* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #fff;
  background-color: #1a1a2e;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 50px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.logo-text span {
  color: #e94560;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
  padding: 5px 0;
  position: relative;
}

nav a:hover {
  color: #e94560;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #e94560;
  transition: width 0.3s;
}

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

.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(26, 26, 46, 0.7), rgba(26, 26, 46, 0.9));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.hero h1 span {
  color: #e94560;
}

.hero p {
  font-size: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  color: #ccc;
}

.section {
  padding: 80px 0;
}

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

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #e94560;
  margin: 15px auto 0;
}

.who-we-are {
  background: #16213e;
}

.who-we-are-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.who-we-are-text p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 20px;
}

.who-we-are-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.what-we-do {
  background: #1a1a2e;
}

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

.service-card {
  background: #16213e;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(233, 69, 96, 0.2);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #e94560;
}

.service-card p {
  color: #ccc;
  font-size: 0.95rem;
}

.gallery {
  background: #16213e;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 3/2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.gallery-item::after {
  content: attr(data-title);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
  font-weight: 500;
}

.support-us {
  background: #1a1a2e;
  text-align: center;
}

.support-us h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.support-us p {
  color: #ccc;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  background: #e94560;
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background: #ff6b6b;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 2px solid #e94560;
}

.btn-secondary:hover {
  background: #e94560;
}

footer {
  background: #0f0f23;
  padding: 60px 0 30px;
}

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

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #e94560;
}

.footer-section p,
.footer-section a {
  color: #ccc;
  margin-bottom: 10px;
  display: block;
}

.footer-section a:hover {
  color: #e94560;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #16213e;
  border-radius: 50%;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #e94560;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #16213e;
  color: #666;
}

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

.footer-logo img {
  height: 40px;
}

.page-hero {
  padding-top: 100px;
}

.services-detail {
  background: #16213e;
}

.service-detail-card {
  background: #1a1a2e;
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: center;
}

.service-detail-card:nth-child(even) {
  direction: rtl;
}

.service-detail-card:nth-child(even) > * {
  direction: ltr;
}

.service-detail-icon {
  font-size: 4rem;
  text-align: center;
  color: #e94560;
}

.service-detail-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fff;
}

.service-detail-content p {
  color: #ccc;
  margin-bottom: 15px;
}

.service-note {
  font-style: italic;
  color: #e94560 !important;
  font-size: 0.95rem !important;
}

.booking-form {
  background: #16213e;
  padding: 50px;
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.booking-form h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.8rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: #1a1a2e;
  border: 1px solid #16213e;
  border-radius: 5px;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e94560;
}

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

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text p {
  color: #ccc;
  margin-bottom: 15px;
}

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

.team-member {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
}

.team-member img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.team-member:hover img {
  transform: scale(1.1);
}

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

.swag-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
  cursor: pointer;
}

.swag-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  background: #16213e;
  padding: 40px;
  border-radius: 10px;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-item-icon {
  font-size: 1.5rem;
  color: #e94560;
}

.contact-item-content h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-item-content p {
  color: #ccc;
}

.contact-form {
  background: #16213e;
  padding: 40px;
  border-radius: 10px;
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.photo-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 3/4;
}

.photo-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .swag-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .photo-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 15px;
  }
  
  nav ul {
    gap: 15px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .who-we-are-content {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .service-detail-card {
    grid-template-columns: 1fr;
  }
  
  .service-detail-card:nth-child(even) {
    direction: ltr;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .swag-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .photo-gallery {
    grid-template-columns: 1fr;
  }
  
  .booking-form {
    padding: 30px 20px;
  }
}
