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

:root {
  --molten-orange: #FF6B35;
  --ember-red: #E63946;
  --deep-charcoal: #1A1A2E;
  --steel-gray: #2D3436;
  --ash-gray: #636E72;
  --spark-yellow: #FDCB6E;
  --warm-white: #FAFAFA;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --noise-texture: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Oswald', sans-serif;
  background-color: var(--deep-charcoal);
  color: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--noise-texture);
  pointer-events: none;
  z-index: 9999;
}

strong, p {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--warm-white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.navbar {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--molten-orange) !important;
  letter-spacing: 1px;
}

.navbar-item {
  color: var(--warm-white) !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  position: relative;
}

.navbar-link.is-active, .navbar-link:focus, .navbar-link:focus-within, .navbar-link:hover, a.navbar-item.is-active, a.navbar-item:focus, a.navbar-item:focus-within, a.navbar-item:hover {
  background: none;
}

.navbar-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--molten-orange), var(--ember-red));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-item:hover::after {
  width: 80%;
}

.navbar-burger {
  color: var(--warm-white);
}

.navbar-menu {
  background: rgba(26, 26, 46, 0.98);
}

@media screen and (max-width: 1023px) {
  .navbar-menu {
    padding: 1rem;
    border-top: 1px solid var(--glass-border);
  }
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--deep-charcoal) 0%, var(--steel-gray) 50%, #2C1810 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(255, 107, 53, 0.15) 0%, rgba(230, 57, 70, 0.05) 40%, transparent 70%);
  animation: pulse-glow 8s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--deep-charcoal), transparent);
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

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

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--warm-white) 0%, var(--spark-yellow) 50%, var(--molten-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 80px rgba(255, 107, 53, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--ash-gray);
  margin-bottom: 2.5rem;
  max-width: 600px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--molten-orange) 0%, var(--ember-red) 100%);
  color: var(--warm-white);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 30px rgba(255, 107, 53, 0.3);
  display: inline-block;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(255, 107, 53, 0.5);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: var(--warm-white);
  border: 2px solid var(--glass-border);
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--glass-bg);
  border-color: var(--molten-orange);
  transform: translateY(-3px);
  color: var(--warm-white);
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-dark {
  background-color: var(--deep-charcoal);
}

.section-stripe {
  background: repeating-linear-gradient(
    45deg,
    var(--deep-charcoal),
    var(--deep-charcoal) 10px,
    #1F1F38 10px,
    #1F1F38 20px
  );
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--molten-orange), var(--ember-red));
}

.section-subtitle {
  color: var(--ash-gray);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--molten-orange), var(--ember-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
  border-color: var(--molten-orange);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--molten-orange), var(--ember-red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--warm-white);
}

.service-description {
  color: var(--ash-gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--spark-yellow);
  font-family: 'Oswald', sans-serif;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--molten-orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.service-link:hover {
  gap: 1rem;
  color: var(--ember-red);
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

.about-image:hover img {
  transform: scale(1.05);
}

.about-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), transparent);
  pointer-events: none;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--glass-bg);
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 3px solid var(--molten-orange);
}

.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--molten-orange), var(--ember-red));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.feature-content h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--ash-gray);
  font-size: 0.9rem;
}

.team-card {
  text-align: center;
  padding: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border: 4px solid var(--molten-orange);
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--molten-orange);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--ash-gray);
  font-size: 0.9rem;
}

.review-card {
  padding: 2rem;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 5rem;
  font-family: 'Playfair Display', serif;
  color: var(--molten-orange);
  opacity: 0.3;
  line-height: 1;
}

.review-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--warm-white);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-name {
  font-weight: 600;
  color: var(--warm-white);
}

.review-rating {
  color: var(--spark-yellow);
  font-size: 1rem;
  margin-top: 0.25rem;
}

.contact-section {
  background: linear-gradient(135deg, var(--steel-gray) 0%, var(--deep-charcoal) 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.contact-details h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: var(--ash-gray);
}

.contact-form {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--warm-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--warm-white);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--molten-orange);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: var(--ash-gray);
}

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

.footer {
  background: #0F0F1A;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--molten-orange);
  margin-bottom: 1rem;
}

.footer-text {
  color: var(--ash-gray);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: var(--warm-white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--ash-gray);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--molten-orange);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: var(--ash-gray);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--ash-gray);
  font-size: 0.85rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  max-width: 400px;
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cookie-text {
  font-size: 0.9rem;
  color: var(--warm-white);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--molten-orange), var(--ember-red));
  color: var(--warm-white);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--ash-gray);
  border: 1px solid var(--ash-gray);
}

.cookie-btn-decline:hover {
  border-color: var(--warm-white);
  color: var(--warm-white);
}

@media screen and (max-width: 768px) {
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

.gradient-text {
  background: linear-gradient(135deg, var(--molten-orange), var(--ember-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.floating-shape {
  position: absolute;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite;
}

.floating-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.floating-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 3%;
  animation-delay: -3s;
}

.floating-shape-3 {
  width: 150px;
  height: 150px;
  top: 40%;
  right: 15%;
  animation-delay: -6s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-30px) rotate(180deg); opacity: 0.6; }
}

.process-step {
  position: relative;
  padding-left: 5rem;
}

.process-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--molten-orange), var(--ember-red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
}

.process-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.process-description {
  color: var(--ash-gray);
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--warm-white);
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--molten-orange);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--molten-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--ash-gray);
  line-height: 1.7;
}

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

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.9), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

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

.gallery-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--warm-white);
}

.gallery-category {
  font-size: 0.85rem;
  color: var(--molten-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--deep-charcoal) 0%, var(--steel-gray) 100%);
  text-align: center;
}

.thank-you-content h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  margin-bottom: 1rem;
}

.thank-you-content p {
  font-size: 1.3rem;
  color: var(--ash-gray);
  margin-bottom: 2rem;
}

.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--deep-charcoal) 0%, var(--steel-gray) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.page-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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