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

:root {
  --color-sand: #f5f1eb;
  --color-warm-white: #faf8f5;
  --color-charcoal: #2c2c2c;
  --color-deep-navy: #1a1f2e;
  --color-gold: #c9a961;
  --color-white: #ffffff;

  --font-serif: "Playfair Display", serif;
  --font-sans: "Inter", sans-serif;

  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-warm-white);
  color: var(--color-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all var(--transition-medium);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.logo img{
  height: 70px;
  transition: transform var(--transition-fast);
}

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

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  position: relative;
  color: var(--color-charcoal);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: capitalize;
  transition: color var(--transition-fast);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: all var(--transition-medium);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 31, 46, 0.5), rgba(26, 31, 46, 0.7));
  z-index: 2;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("/placeholder.svg?height=1080&width=1920") center / cover no-repeat;
  animation: kenburns 30s ease-in-out infinite alternate;
}

@keyframes kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--color-white);
  padding: 2rem;
  animation: fadeInUp 1.2s ease-out;
}

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

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 300;
  margin-bottom: 3rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}



/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all var(--transition-medium);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: #b8964f;
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}

.btn-outline {
  border-color: var(--color-white);
  color: var(--color-white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-deep-navy);
}

.btn-full {
  width: 100%;
}

/* Section Styles */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-deep-navy);
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.15rem;
  color: rgba(44, 44, 44, 0.7);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Services Section */
.services-section {
  background: var(--color-sand);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
  opacity: 0;
  transform: translateY(30px);
}

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

.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

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

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

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

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.service-content {
  padding: 2rem;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-deep-navy);
  margin-bottom: 1rem;
}

.service-description {
  color: rgba(44, 44, 44, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-details {
  list-style: none;
}

.service-details li {
  color: rgba(44, 44, 44, 0.7);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.service-details li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 1.5rem;
  line-height: 1;
}

/* About Section */
.about-section {
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transform: translateX(-30px);
}

.about-image.animate {
  animation: fadeInLeft 1s ease-out forwards;
}

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

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

.about-image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  border: 4px solid var(--color-gold);
  border-radius: 12px;
  z-index: -1;
}

.about-content {
  opacity: 0;
  transform: translateX(30px);
}

.about-content.animate {
  animation: fadeInRight 1s ease-out forwards;
}

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

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(44, 44, 44, 0.8);
}

.about-text .highlight {
  color: var(--color-gold);
  font-weight: 600;
  font-size: 1.2rem;
}

/* Social Section */
.social-section {
  background: var(--color-sand);
  padding: 4rem 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.social-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0);
}

.social-icon.animate {
  animation: scaleIn 0.5s ease-out forwards;
}

@keyframes scaleIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.social-icon svg {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 2;
}

.social-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.social-icon:hover {
  transform: translateY(-10px) scale(1.1);
  box-shadow: var(--shadow-xl);
}

.social-icon:hover::before {
  opacity: 1;
}

.social-icon.instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.social-icon.linkedin {
  background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
}

.social-icon.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.social-icon.tiktok {
  background: linear-gradient(135deg, #000000 0%, #2c2c2c 100%);
}

.social-divider {
  max-width: 600px;
  margin: 0 auto;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  border-radius: 2px;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--color-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-white) 100%);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-slow);
  opacity: 0;
  transform: translateY(30px);
}

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

.testimonial-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.testimonial-decoration {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: rgba(201, 169, 97, 0.05);
  border-radius: 50%;
  transition: transform var(--transition-slow);
}

.testimonial-card:hover .testimonial-decoration {
  transform: scale(1.5);
}

.quote-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-gold), #b8964f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2.5rem;
  font-family: var(--font-serif);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.testimonial-text {
  color: rgba(44, 44, 44, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

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

.testimonial-author {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--color-deep-navy);
  font-size: 1.2rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
}

.star {
  color: var(--color-gold);
  font-size: 1.2rem;
}

/* Map Section */
.map-section {
  background: var(--color-sand);
}

.map-container {
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  opacity: 0;
}

.map-container.animate {
  animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

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

/* Contact Section */
.contact-section {
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-sand);
  border-radius: 12px;
  transition: all var(--transition-medium);
  opacity: 0;
  transform: translateX(-30px);
}

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

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(0);
}

.contact-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-deep-navy);
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: rgba(44, 44, 44, 0.8);
  line-height: 1.7;
}

.contact-form-container {
  background: linear-gradient(135deg, var(--color-white), var(--color-sand));
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transform: translateX(30px);
}

.contact-form-container.animate {
  animation: fadeInRight 0.8s ease-out forwards;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid rgba(44, 44, 44, 0.1);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--color-white);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
}

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

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--color-deep-navy) 0%, #0f1419 100%);
  color: var(--color-white);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

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

.footer-column {
  opacity: 0;
  transform: translateY(30px);
}

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

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-gold);
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(201, 169, 97, 0.3);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.footer-social-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  transform: scale(0);
  transition: transform var(--transition-medium);
  border-radius: 50%;
}

.footer-social-icon:hover::before {
  transform: scale(1);
}

.footer-social-icon svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 2;
}

.footer-social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(201, 169, 97, 0.3);
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a,
.footer-links li {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: block;
  padding: 0.25rem 0;
}

.footer-links a:hover {
  color: var(--color-gold);
  transform: translateX(5px);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 2rem 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--color-gold);
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.3);
}

/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--color-gold);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
  z-index: 999;
}

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

.scroll-top-btn:hover {
  background: #b8964f;
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.scroll-top-btn svg {
  width: 24px;
  height: 24px;
}

/* Animations with delays */
[data-animation][data-delay="100"].animate {
  animation-delay: 0.1s;
}

[data-animation][data-delay="200"].animate {
  animation-delay: 0.2s;
}

[data-animation][data-delay="300"].animate {
  animation-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-white);
    padding: 2rem;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  .hero-buttons {
    flex-direction: column;
  }

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

  .about-image {
    height: 400px;
  }

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

  .social-icons {
    gap: 1.5rem;
  }

  .social-icon {
    width: 60px;
    height: 60px;
  }

  .social-icon svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

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

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 4rem 0; /* Fixed: Added '0;' to complete the padding value */
  } /* Fixed: Added closing brace for .section */
} /* Fixed: Added closing brace for @media query */
