/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
  font-family: 'GaramondMT';
  src: url('./fonts/Garamond MT W04 Regular.woff') format('woff'),
       url('./fonts/Garamond MT W04 Regular.ttf') format('truetype');
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  font-size: 1.05rem;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

h1, h2, h3 {
  color: #2c3e50;
}

h1, h2 {
  font-family: 'GaramondMT';
  font-weight: 700;
  letter-spacing: 1px;
}

h2, h3 {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  font-size: 3rem;
  line-height: 1.2;
}

h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-shadow: none;
}

.btn {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #d4af37 0%, #e6b800 100%);
  color: #222;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  background: linear-gradient(135deg, #2980b9 0%, #3395d6 100%);
  color: #f9f9f9;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Header */
#header-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

header {
  background: rgba(0, 0, 0, 0.7);
  height: 106px;
  transition: height 0.3s ease, background 0.3s ease;
}

header.sticky {
  height: 70px;
  background: rgba(0, 0, 0, 0.9);
}

header .logo {
  margin-right: auto;
  width: 196px;
  height: auto;
  transition: width 0.3s ease;
}

header.sticky .logo {
  width: 150px;
}

header nav ul {
  margin: 0 auto;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 0 32px;
  height: 104px;
  transition: height 0.3s ease;
}

header.sticky nav ul {
  height: 70px;
}

header nav ul li {
  margin-left: 20px;
}

header nav ul li a {
  color: #f5f0f6;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  margin-right: 32px;
  transition: color 0.3s ease, font-size 0.3s ease;
}

header.sticky nav ul li a {
  font-size: 14px;
}

header nav ul li a:hover {
  color: #3498db;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  box-shadow: -10px 0 10px rgba(255, 255, 255, 0.2);
  display: none;
  flex-direction: column;
}

.sidebar li {
  width: 100%;
  margin-bottom: 32px;
}

.sidebar a {
  width: 100%;
  color: #f5f0f6;
  text-decoration: none;
  padding: 15px 20px;
  font-size: 18px;
  transition: background 0.3s ease;
}

.sidebar a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-button {
  display: none;
  color: #f5f0f6;
  font-size: 32px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.menu-button:hover {
  color: #3498db;
}

/* Hero Section */
.hero-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}

.hero-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44, 62, 80, 0.2), rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.hero-container .slides {
  position: absolute;
  inset: 0;
  background: #2c3e50 center / cover no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in;
}

.hero-container .slides.active {
  opacity: 1;
}

.hero {
  color: #f5f0f6;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  padding: 0 20px;
  z-index: 2;
}

.hero h1 {
  font-family: 'GaramondMT';
  font-size: 4rem;
  font-weight: 600;
  line-height: 0.9;
  margin: 0 auto;
  margin-bottom: 24px;
  color: #f5f0f6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  max-width: 800px;
  animation: fadeInUp 1.2s ease-out 0.5s forwards;
}

.hero p {
  font-weight: 100;
  font-size: 1.2rem;
  line-height: 1.2;
  margin: 0 auto;
  margin-bottom: 36px;
  color: #f5f0f6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  max-width: 700px;
  animation: fadeInUp 1.2s ease-out 0.8s forwards;
}

.hero .btn {
  padding: 8px 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1.2s ease-out 1s forwards;
}

/* Slide Navigation */
.slide-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 3;
  transform: translateY(-50%);
}

.slide-nav .arrow {
  background: rgba(44, 62, 80, 0.7);
  border: none;
  color: #f9f9f9;
  font-size: 2rem;
  padding: 16px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.slide-nav .arrow:hover {
  background: rgba(44, 62, 80, 0.9);
  color: #3498db;
}

/* About Us Section */
.about-us-section {
  margin-top: 100vh;
  padding: 120px 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5)), url("./assets/images/about.jpg") no-repeat center / cover fixed;
}

.about-us-content {
  background: rgba(44, 62, 80, 0.8);
  padding: 60px;
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 1);
  text-align: center;
}

.about-us-heading {
  font-size: 3rem;
  color: #f5f0f6;
  text-shadow: 2px 2px 8px #222;
  margin-bottom: 36px;
  position: relative;
}

.about-us-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #d4af37;
}

.about-us-intro p {
  font-size: 1.1rem;
  color: #f5f0f6;
  max-width: 800px;
  margin: 0 auto 60px;
}

.about-us-mission-vision {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.about-us-card {
  background: #f5f0f6;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 280px;
  max-width: 400px;
}

.about-us-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.about-us-subheading {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
}

.about-us-subheading::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #d4af37;
}

.about-us-text {
  font-size: 1rem;
  color: #4a4a4a;
}

.about-us-btn {
  background: linear-gradient(135deg, #d4af37 0%, #e6b800 100%);
  color: #2c3e50;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

/* Services Section */
.services {
  background: linear-gradient(135deg, #f8f9fa 0%, #f5f0f6 100%);
  padding: 120px 0;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 36px;
  position: relative;
}

.services h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #d4af37;
}

.services p {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin: 0 auto 40px;
  max-width: 800px;
}

.services-wrapper {
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.services-grid {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  min-width: 100%;
  flex: 0 0 100%;
  padding: 20px;
}

.service-card {
  background: #f9f9f9;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.icon {
  background: #d4af37;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon i {
  font-size: 1.2rem;
  color: #2c3e50;
}

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

.service-card p {
  font-size: 0.9rem;
  color: #4a4a4a;
}

/* Scroll Buttons */
.scroll-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.scroll-btn {
  background: #d4af37;
  color: #2c3e50;
  border: none;
  border-radius: 30px;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.scroll-btn:hover {
  transform: translateY(-3px) scale(1.02);
}

/* Success Stories */
.success-stories {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.1), rgba(44, 62, 80, 0.8)), url("./assets/images/passion.jpg") no-repeat center / cover;
  padding: 120px 0;
  text-align: center;
}

.success-stories h2 {
  font-size: 2.5rem;
  color: #f5f0f6;
  margin-bottom: 20px;
  position: relative;
}

.success-stories h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #d4af37;
}

.success-stories p {
  font-size: 1.1rem;
  color: #f5f0f6;
  margin-bottom: 40px;
}

.stories-container {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.story-card {
  flex: 0 0 300px;
  background: rgba(245, 240, 246, 0.8);
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.client-image {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
}

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

.client-details h3 {
  font-size: 1.3rem;
  font-weight: 300;
  color: #000;
  margin-bottom: 10px;
}

.client-details .story {
  font-size: 0.9rem;
  color: #4a4a4a;
  margin-bottom: 15px;
}

.rating {
  color: gold;
  font-size: 1.8rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #f8f9fa 0%, #f5f0f6 100%);
  padding: 120px 0;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
}

.contact h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #d4af37;
}

.contact p {
  font-size: 1rem;
  color: #4a4a4a;
  margin-bottom: 40px;
}

.contact-content {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.contact-details {
  flex: 1;
  max-width: 400px;
}

.contact-details h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.contact-details .detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-details .detail-item i {
  font-size: 2rem;
  color: #d4af37;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  min-width: 30px;
  text-align: center;
}

.contact-details .detail-item a {
  color: #4a4a4a;
  text-decoration: none;
}

.social-media {
  margin-top: 40px;
}

.social-media h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 32px;
}

.social-icons a {
  font-size: 1.5rem;
  color: #2c3e50;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #3498db;
  transform: translateY(-3px);
}

.contact-form {
  flex: 1;
  max-width: 512px;
}

.contact-form .form-group {
  margin-bottom: 25px;
  position: relative;
}

.contact-form label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #2c3e50;
  margin-bottom: 8px;
}

.contact-form label i {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #d4af37;
  min-width: 20px;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #2c3e50;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3498db;
  outline: none;
}

.contact-form .name-fields {
  display: flex;
  gap: 10px;
}

.contact-form .name-fields input {
  flex: 1;
}

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

.contact-form .btn {
  background: linear-gradient(135deg, #d4af37 0%, #e6b800 100%);
  padding: 12px 24px;
  border: none;
  font-weight: 500;
}

/* Footer */
footer {
  background: #222;
  color: #f5f0f6;
  padding: 60px 0 20px;
  text-align: center;
}

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

.footer-section {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
  text-align: center;
}

.footer-logo {
  height: 124px;
  display: block;
  margin: 0 auto 10px;
}

.footer-section .tagline {
  font-size: 0.95rem;
  color: #ccc;
  margin-top: 10px;
}

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

.footer-links,
.contact-info {
  list-style: none;
  padding: 0;
}

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

.footer-links a,
.contact-info li {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-links a:hover {
  color: #3498db;
}

.contact-info li i {
  font-size: 1.2rem;
  color: #d4af37;
  min-width: 20px;
}

.contact-info li a {
  text-decoration: none;
  color: #ccc;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.socials a {
  color: #ccc;
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.socials a:hover {
  color: #3498db;
  transform: translateY(-3px);
}

.copyright {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright p {
  font-size: 0.9rem;
  color: #ccc;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

.fadeIn { animation: fadeIn 1s ease-in-out forwards; }
.fadeInDown { animation: fadeInDown 1s ease-in-out forwards; }
.fadeInUp { animation: fadeInUp 1s ease-in-out forwards; }
.slideInLeft { animation: slideInLeft 1s ease-in-out forwards; }

/* Media Queries */
@media (max-width: 992px) {
  .about-us-content { padding: 40px; }
  .about-us-heading { font-size: 2.5rem; }
  .about-us-intro p { font-size: 1rem; }
}

@media (max-width: 800px) {
  .hideOnMobile { display: none; }
  .menu-button { display: block; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1rem; }
  .slide-nav .arrow { font-size: 1.5rem; padding: 12px; }
  .about-us-heading { font-size: 2rem; }
  .about-us-subheading { font-size: 1.5rem; }
  .about-us-text { font-size: 0.95rem; }
  .about-us-mission-vision { flex-direction: column; align-items: center; }
  .about-us-card { width: 100%; max-width: 100%; }
  .slide { grid-template-columns: 1fr; }
  .service-card { padding: 15px; }
  .icon-title { flex-direction: column; gap: 10px; }
  .icon { width: 35px; height: 35px; }
  .icon i { font-size: 1rem; }
  .service-card h3 { font-size: 1.1rem; }
  .service-card p { font-size: 0.85rem; }
  .story-card { flex: 0 0 250px; }
  .stories-container { justify-content: flex-start; padding-left: 20px; }
  .contact-content { flex-direction: column; align-items: center; text-align: center; }
  .contact-details, .contact-form { max-width: 100%; }
  .contact-form .name-fields { flex-direction: column; }
  .social-icons { justify-content: center; }
  .footer-content { flex-direction: column; align-items: center; text-align: center; }
  .footer-section { text-align: center; }
  .socials { justify-content: center; }
}

@media (max-width: 400px) {
  .sidebar { width: 100%; }
}