:root {
  --primary: #c17b6e;
  --primary-dark: #a45f52;
  --primary-light: #f4e2dd;
  --secondary: #2c2c2c;
  --soft-peach: #fdf8f5;
  --soft-pink: #fbedea;
  --gray-muted: #6c757d;
  --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1e1e2a;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
.display-5,
.navbar-brand {
  font-family: 'Playfair Display', serif;
}


::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}


.glass-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

.navbar-brand {
  font-size: 1.8rem;
  letter-spacing: -0.5px;
}

.navbar-brand span {
  font-weight: 700;
}

.nav-link {
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}


.hero-section {
  min-height: 100vh;
  padding: 120px 0 80px;
  position: relative;
  background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(193, 123, 110, 0.08) 0%, rgba(193, 123, 110, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

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

.hero-img-wrapper img {
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-img-wrapper:hover img {
  transform: scale(1.02);
}

.hero-stats div {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  padding-right: 1.5rem;
}

.hero-stats div:last-child {
  border-right: none;
}


.fade-up,
.fade-left,
.fade-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left {
  transform: translateX(-40px);
}

.fade-right {
  transform: translateX(40px);
}

.reveal {
  opacity: 1 !important;
  transform: translateX(0) translateY(0) !important;
}


.service-card {
  background: #ffffff;
  border: 1px solid rgba(193, 123, 110, 0.15);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
  border-color: rgba(193, 123, 110, 0.3);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--primary);
}

.service-card:hover .service-icon i {
  color: white !important;
}

.bg-primary-light {
  background-color: var(--primary-light);
}


.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  transition: all 0.3s;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(193, 123, 110, 0.3);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.bg-soft-pink {
  background: var(--soft-pink);
  color: var(--primary-dark);
}

.bg-soft-peach {
  background-color: var(--soft-peach);
}


.about-img {
  position: relative;
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  border-left: 5px solid var(--primary);
}

.experience-badge span {
  font-size: 1.8rem;
  color: var(--primary);
  display: block;
}


.gallery-item {
  position: relative;
  cursor: pointer;
  height: 300px;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(193, 123, 110, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  backdrop-filter: blur(3px);
}

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

.object-fit-cover {
  object-fit: cover;
}


.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
}

.social-links .btn-outline-secondary {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.social-links .btn-outline-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.card {
  transition: transform 0.3s ease;
}

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


.form-control,
.form-select {
  border: 1px solid #e2d9d4;
  border-radius: 16px;
  padding: 12px 18px;
  transition: all 0.2s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(193, 123, 110, 0.2);
}


footer a:hover {
  color: var(--primary) !important;
  transition: 0.2s;
}


@media (max-width: 992px) {
  .hero-section {
    padding: 100px 0 60px;
    text-align: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .display-3 {
    font-size: 2.5rem;
  }

  .experience-badge {
    right: 10px;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 768px) {
  .service-card {
    margin-bottom: 0.5rem;
  }

  .gallery-item {
    height: 240px;
  }
}