
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');


@tailwind base;
@tailwind components;
@tailwind utilities;




:root {
  --color-amber-500: #F59E0B;
  --color-amber-600: #D97706;
  --color-amber-700: #B45309;
  --color-charcoal-800: #1F2937;
  --color-charcoal-900: #111827;
  --color-gold-500: #D4AF37;
  --color-gold-400: #E5BE01;
  --color-cream-100: #FEF3C7;
  --color-cream-50: #FFFAEB;
  --color-slate-700: #334155;
}



html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-charcoal-800);
  background-color: #FAFAFA;
  line-height: 1.6;
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}



.glass-effect {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 8px 32px rgba(31, 41, 55, 0.1);
}


.curved-divider {
  border-radius: 50% 50% 0 0 / 30px 30px 0 0;
}

.curved-top {
  border-radius: 0 0 50% 50% / 30px 30px 0 0;
}


.metallic-gold {
  background: linear-gradient(135deg, var(--color-gold-500) 0%, var(--color-amber-600) 50%, var(--color-gold-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metallic-bg {
  background: linear-gradient(135deg, var(--color-gold-500) 0%, var(--color-amber-600) 50%, var(--color-gold-400) 100%);
}




.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--color-amber-500);
  color: #1F2937;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
  white-space: nowrap;
  min-height: 52px;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--color-amber-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
  color: #111827;
}

.btn-primary:focus {
  outline: 3px solid var(--color-gold-500);
  outline-offset: 2px;
}


.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: 2px solid #FFFFFF;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  min-height: 52px;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #FFFFFF;
  color: #1F2937;
  transform: translateY(-2px);
}

.btn-secondary:focus {
  outline: 3px solid var(--color-gold-500);
  outline-offset: 2px;
}


.btn-secondary-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: transparent;
  color: #1F2937;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: 2px solid #1F2937;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  min-height: 52px;
  text-decoration: none;
}

.btn-secondary-dark:hover {
  background: #1F2937;
  color: #FFFFFF;
  transform: translateY(-2px);
}


.service-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold-500), var(--color-amber-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(31, 41, 55, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}


.testimonial-card {
  background: linear-gradient(145deg, #FFFFFF 0%, var(--color-cream-50) 100%);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 6rem;
  font-family: 'Playfair Display', serif;
  color: var(--color-amber-500);
  opacity: 0.2;
  line-height: 1;
}



.header-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.header-main.scrolled {
  box-shadow: 0 4px 20px rgba(31, 41, 55, 0.1);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-charcoal-800);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-gold-500), var(--color-amber-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}


.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-charcoal-800);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    padding: 20px;
    flex-direction: column;
    gap: 8px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(31, 41, 55, 0.15);
  }

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



.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.8;
}

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



.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-charcoal-800);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold-500), var(--color-amber-500));
  border-radius: 2px;
}

.section-subtitle {
  color: var(--color-slate-700);
  font-size: 1.125rem;
  max-width: 600px;
}



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

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}



.price-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 16px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--color-cream-100) 0%, var(--color-cream-50) 100%);
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-charcoal-800);
}

.price-label {
  font-size: 0.875rem;
  color: var(--color-slate-700);
}



.contact-form-wrapper {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(31, 41, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #E5E7EB;
  border-radius: 12px;
  font-size: 1rem;
  color: var(--color-charcoal-800);
  background: #FAFAFA;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-amber-500);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.form-input::placeholder {
  color: #9CA3AF;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-charcoal-800);
  font-size: 0.95rem;
}

.form-row {
  margin-bottom: 24px;
}



.footer-main {
  background: var(--color-charcoal-900);
  color: #FFFFFF;
  padding: 60px 0 30px;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 6px 0;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-link:hover {
  color: var(--color-amber-500);
  padding-left: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.footer-contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}



.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 420px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 40px rgba(31, 41, 55, 0.2);
  z-index: 9999;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.cookie-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-charcoal-800);
  margin-bottom: 12px;
}

.cookie-text {
  font-size: 0.95rem;
  color: var(--color-slate-700);
  margin-bottom: 20px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  flex: 1;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-accept {
  background: var(--color-amber-500);
  color: #1F2937;
}

.cookie-btn-accept:hover {
  background: var(--color-amber-600);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--color-charcoal-800);
  border: 2px solid #E5E7EB;
}

.cookie-btn-decline:hover {
  border-color: var(--color-charcoal-800);
}

@media (max-width: 480px) {
  .cookie-consent-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 24px;
  }

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



.text-amber { color: var(--color-amber-500); }
.text-charcoal { color: var(--color-charcoal-800); }
.text-gold { color: var(--color-gold-500); }

.bg-amber { background-color: var(--color-amber-500); }
.bg-charcoal { background-color: var(--color-charcoal-800); }
.bg-gold { background-color: var(--color-gold-500); }

.bg-cream { background-color: var(--color-cream-50); }

.rounded-xl { border-radius: 16px; }
.rounded-2xl { border-radius: 24px; }

.shadow-lg { box-shadow: 0 10px 30px rgba(31, 41, 55, 0.12); }

.overflow-hidden { overflow: hidden; }


.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

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

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}



:focus-visible {
  outline: 3px solid var(--color-gold-500);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}



@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .hero-section {
    min-height: auto;
    padding: 120px 0 80px;
  }
}



.icon-svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}



strong, p {
  color: inherit;
}



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

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

::-webkit-scrollbar-thumb {
  background: var(--color-amber-500);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-amber-600);
}



.faq-item {
  background: #FFFFFF;
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-charcoal-800);
  text-align: left;
  font-family: 'Inter', sans-serif;
}

.faq-question:hover {
  background: var(--color-cream-50);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 24px 24px;
  color: var(--color-slate-700);
  line-height: 1.7;
}



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

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

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 41, 55, 0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

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

.gallery-title {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.1rem;
}



.team-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(31, 41, 55, 0.15);
}

.team-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-info {
  padding: 24px;
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-charcoal-800);
  margin-bottom: 4px;
}

.team-role {
  color: var(--color-amber-600);
  font-weight: 500;
  font-size: 0.95rem;
}



.process-step {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-gold-500), var(--color-amber-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 auto 20px;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-charcoal-800);
  margin-bottom: 12px;
}

.step-description {
  color: var(--color-slate-700);
  font-size: 0.95rem;
  line-height: 1.6;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 56px;
  right: -15%;
  width: 30%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-500), transparent);
}

.process-step:last-child::after {
  display: none;
}

@media (max-width: 992px) {
  .process-step::after {
    display: none;
  }
}