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

body {
  font-family: "Inter", sans-serif;
  color: #f5f1e9;
  background-color: #000;
  overflow-x: hidden;
}

/* -----------------------------------
   HERO SECTION (HOME PAGE)
----------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  background: url("bg-desktop.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 6vw;
  overflow: hidden;
}

/* -----------------------------------
   HERO LOGO (top-left corner)
----------------------------------- */
.hero-logo {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 10;
}

.main-logo {
  height: 80px; /* bigger */
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
  margin-left: 80px; /* move slightly to the right */
}

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

/* -----------------------------------
   HERO CONTENT
----------------------------------- */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 700px;
  margin-top: 8rem;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  backdrop-filter: blur(0.5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: #e0ddd7;
}

/* -----------------------------------
   BUTTONS
----------------------------------- */
.buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  font-weight: 500;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  transition: 0.3s ease;
  font-size: 1rem;
  cursor: pointer;
}

.btn.primary {
  background-color: #c67509;
  color: #fff;
}

.btn.primary:hover {
  background-color: #b56507;
  box-shadow: 0 0 10px rgba(198, 117, 9, 0.6);
}

.btn.secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* -----------------------------------
   REGISTER PAGE
----------------------------------- */
.register-section {
  position: relative;
  min-height: 100vh;
  background: url("bg-desktop.jpg") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.form-container {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 1rem;
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  color: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.form-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #d8d5ce;
  margin-top: -0.8rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  opacity: 0.9;
}

.form-location {
  text-align: center;
  font-size: 0.95rem;
  color: #d8d5ce;
  margin-top: -0.5rem;
  margin-bottom: 1.8rem;
}

.form-location a {
  color: #c67509;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.form-location a:hover {
  color: #e08b1b;
  text-decoration: underline;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.register-form label {
  font-size: 0.95rem;
  font-weight: 500;
}

.register-form input,
.register-form select {
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  outline: none;
  appearance: none;
}

.register-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.register-form input:focus,
.register-form select:focus {
  border-color: #c67509;
  background-color: rgba(255, 255, 255, 0.15);
}

.submit-btn {
  margin-top: 1rem;
  width: 100%;
  text-align: center;
}

.form-message {
  text-align: center;
  font-size: 1rem;
  margin-top: 1.2rem;
  color: #c67509;
  min-height: 1.5em;
  transition: 0.3s ease;
}

.form-message.error {
  color: #e74c3c;
}

/* -----------------------------------
   LEARN MORE PAGE
----------------------------------- */
.learnmore-section {
  background: url("bg-desktop.jpg") center center/cover no-repeat;
  color: #f5f1e9;
  min-height: 100vh;
  padding: 6rem 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.learnmore-content {
  background: rgba(0, 0, 0, 0.7);
  padding: 2.5rem;
  border-radius: 1rem;
  max-width: 800px;
  line-height: 1.8;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

.learnmore-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.learnmore-content p {
  font-size: 1.05rem;
  color: #e2dfd8;
  margin-bottom: 1.2rem;
}

.learnmore-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* -----------------------------------
   GALLERY PAGE
----------------------------------- */
.gallery-section {
  background-color: #000;
  color: #f5f1e9;
  min-height: 100vh;
  padding: 4rem 2rem;
  text-align: center;
}

.gallery-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
}

.gallery-subtitle {
  font-size: 1.1rem;
  color: #d8d5ce;
  margin-bottom: 2.5rem;
}

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

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
  cursor: pointer;
}

.gallery-grid img.visible {
  opacity: 1;
  transform: scale(1);
}

.gallery-grid img:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
  object-fit: contain;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #c67509;
}

/* Gallery bottom buttons */
.gallery-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-bottom: 3rem;
}

.gallery-buttons .btn {
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 500;
}

/* -----------------------------------
   RESPONSIVE DESIGN
----------------------------------- */
@media (max-width: 768px) {
  .hero {
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
    background: url("bg-mobile.jpg") center center/cover no-repeat;
  }

  .hero-logo {
    top: 1rem;
    left: 0.6;
  }

  .main-logo {
    height: 80px;
    margin-left: 0;
  }

  .hero-content {
    margin-top: 6rem;
    padding: 1.5rem;
  }

  .buttons {
    justify-content: center;
  }

  .title {
    font-size: 2.4rem;
  }

  .subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .gallery-buttons {
    flex-direction: column;
    align-items: center;
  }

  .gallery-buttons .btn {
    width: 80%;
    text-align: center;
  }
}
/* -----------------------------------
   INFO + TERMS SECTIONS
----------------------------------- */
.info-section,
.terms-section {
  background: #000;
  color: #f5f1e9;
  padding: 3rem 2rem;
  text-align: left;
}

.info-container,
.terms-container {
  max-width: 800px;
  margin: auto;
}

.info-title,
.terms-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #c67509;
  margin-bottom: 1.5rem;
  text-align: center;
}

.info-list,
.terms-list {
  list-style: none;
  padding-left: 0;
}

.info-list li,
.terms-list li {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.info-list li::before,
.terms-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c67509;
  font-size: 1.2rem;
  top: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .register-section {
    background: url("bg-mobile.jpg") center center/cover no-repeat;
  }
}
/* -----------------------------------
   TERMS AND CONDITIONS SECTION
----------------------------------- */
.terms-section {
  background: rgba(0, 0, 0, 0.7);
  color: #f5f1e9;
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 3rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.terms-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #c67509;
  margin-bottom: 1rem;
}

.terms-list {
  list-style: disc;
  padding-left: 1.5rem;
  text-align: left;
  margin: 1rem auto 2rem;
  max-width: 500px;
}

.terms-list li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

/* ✅ Buttons under terms */
.terms-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.terms-buttons .btn {
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
  font-size: 1rem;
}

.terms-buttons .btn.primary {
  background-color: #c67509;
  color: #fff;
}

.terms-buttons .btn.primary:hover {
  background-color: #b56507;
  box-shadow: 0 0 10px rgba(198, 117, 9, 0.6);
}

.terms-buttons .btn.secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.terms-buttons .btn.secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
/* --- WHAT WE WILL DO + TERMS SECTIONS --- */
.info-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 4rem 1rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
}

.info-box {
  background: rgba(30, 20, 10, 0.5);
  border: 1px solid rgba(198, 117, 9, 0.4);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  max-width: 800px;
  width: 90%;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
  color: #f5f1e9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(198, 117, 9, 0.25);
}

.info-title {
  color: #c67509;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.info-list {
  list-style: disc;
  margin-left: 1.5rem;
  line-height: 1.8;
  color: #f5f1e9;
}

.info-list li {
  margin-bottom: 1rem;
}

/* --- BUTTONS BELOW TERMS --- */
.info-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.info-buttons a {
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  padding: 0.8rem 1.8rem;
  transition: all 0.3s ease;
}

.btn-dark {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-dark:hover {
  background: rgba(255, 255, 255, 0.25);
}

.btn-accent {
  background: #c67509;
  color: white;
  border: none;
}

.btn-accent:hover {
  background: #9c5606;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
  .info-box {
    padding: 1.5rem 1.2rem;
  }
  .info-title {
    font-size: 1.6rem;
  }
}

/* -----------------------------------
   new
----------------------------------- */

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: #c67509;
  position: relative;
}

.scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #c67509;
  border-bottom: 2px solid #c67509;
  transform: rotate(45deg);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Section Titles */
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #c67509;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c67509, #e08b1b);
  border-radius: 2px;
}

.section-description {
  font-size: 1.1rem;
  color: #e0ddd7;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* about  */
.about-section {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  padding: 6rem 0;
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("images/IMG_5497.webp") center/cover;
  opacity: 0.1;
  z-index: 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-text {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1s ease forwards;
}

.about-features {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(198, 117, 9, 0.1);
  border-radius: 10px;
  border-left: 4px solid #c67509;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(198, 117, 9, 0.2);
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
  color: #c67509;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(198, 117, 9, 0.1);
  border-radius: 50%;
  border: 2px solid rgba(198, 117, 9, 0.3);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: #c67509;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(198, 117, 9, 0.4);
}

.feature-item h3 {
  color: #c67509;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: #e0ddd7;
  font-size: 0.95rem;
  line-height: 1.5;
}

.about-image {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s ease forwards 0.3s;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(198, 117, 9, 0.2), transparent);
  border-radius: 15px;
}

/* Services Section */
.services-section {
  background: #000;
  padding: 6rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  position: relative;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  position: relative;
  width: 100%;
  height: 100%;
}

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

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7),
    rgba(198, 117, 9, 0.8)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-overlay h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.service-overlay p {
  color: #e0ddd7;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.service-btn {
  background: #fff;
  color: #c67509;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-btn:hover {
  background: #c67509;
  color: #fff;
  transform: scale(1.05);
}

/* expreicance */
.experience-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
  padding: 6rem 0;
  position: relative;
}

.experience-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.experience-text {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1s ease forwards;
}

.experience-steps {
  margin-top: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border-left: 4px solid #c67509;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 25px rgba(198, 117, 9, 0.2);
}

.step-number {
  background: #c67509;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h3 {
  color: #c67509;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

.step-content p {
  color: #e0ddd7;
  line-height: 1.6;
}

.experience-image {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s ease forwards 0.3s;
}

.experience-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
  color: #c67509;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(198, 117, 9, 0.3);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.floating-element i {
  font-size: 1.5rem;
}

.element-1 {
  top: 20%;
  left: -10%;
  animation-delay: 0s;
}

.element-2 {
  top: 60%;
  right: -10%;
  animation-delay: 1s;
}

.element-3 {
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}

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

/* Testimonials Section */
.testimonials-section {
  background: #000;
  padding: 6rem 0;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  height: 300px;
  overflow: hidden;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-content {
  text-align: center;
  padding: 2rem;
  background: rgba(198, 117, 9, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(198, 117, 9, 0.3);
  max-width: 600px;
}

.testimonial-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #f5f1e9;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author strong {
  color: #c67509;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-author span {
  color: #e0ddd7;
  font-size: 0.9rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(198, 117, 9, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #c67509;
  transform: scale(1.2);
}

/* gallery */
.gallery-preview-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
  padding: 6rem 0;
}

.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 1rem;
  margin: 3rem 0;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

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

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7),
    rgba(198, 117, 9, 0.8)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

.gallery-overlay p {
  color: #e0ddd7;
  font-size: 0.9rem;
}

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Contact cta Section */
.contact-cta-section {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  padding: 6rem 0;
  position: relative;
}

.contact-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("images/IMG_7787.webp") center/cover;
  opacity: 0.1;
  z-index: 0;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(50px);
  animation: slideInUp 1s ease forwards;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.btn.large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-item {
  background: rgba(198, 117, 9, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(198, 117, 9, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(198, 117, 9, 0.2);
}

.contact-item strong {
  color: #c67509;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-item strong i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.contact-item span {
  color: #e0ddd7;
  font-size: 0.95rem;
}

/* Animations */
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* responsve for new Sections */
@media (max-width: 768px) {
  .about-content,
  .experience-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about-image,
  .experience-image {
    order: -1;
  }

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

  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 150px);
  }

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .floating-elements {
    display: none;
  }
}
/* -----------------------------------
   CUSTOM SELECT DROPDOWN
----------------------------------- */
.register-form select {
  background-color: rgba(0, 0, 0, 0.4);
  color: #f5f1e9;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.6rem;
  font-size: 1rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23f5f1e9' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1rem;
  padding-right: 2rem;
}

.register-form select:hover,
.register-form select:focus {
  border-color: #c67509;
  background-color: rgba(0, 0, 0, 0.6);
  outline: none;
}
