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

:root {
  --brand-primary: #7a5c24;
  --brand-secondary: #333333;
  --brand-accent: #e8d5b5;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --text-light: #ffffff;
  --text-dark: #212529;
  --border-light: #eeeeee;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
  --radius: 18px;
  --radius-lg: 28px;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--dark);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--brand-primary);
  transition: color 0.3s;
}

a:hover {
  color: #5f4a1c;
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #5c636a;
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.badge-soft {
  display: inline-block;
  background: var(--brand-accent);
  color: var(--dark);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.decorative-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--brand-accent);
  opacity: 0.4;
  z-index: 0;
}

.btn-round {
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-brand {
  background: var(--brand-primary);
  color: var(--text-light);
  border: 1px solid var(--brand-primary);
}

.btn-brand:hover {
  background: #5f4a1c;
  border-color: #5f4a1c;
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(184, 141, 64, 0.3);
}

.btn-outline-brand {
  color: var(--brand-primary);
  border: 1px solid var(--brand-primary);
  background: transparent;
}

.btn-outline-brand:hover {
  background: var(--brand-primary);
  color: var(--text-light);
  border-color: var(--brand-primary);
  transform: translateY(-2px);
}

.btn-outline-light-custom {
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
}

.btn-outline-light-custom:hover {
  background: var(--text-light);
  color: var(--dark);
  border-color: var(--text-light);
}

.section-with-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #1a1a2e;
  color: var(--text-light);
}

.section-with-bg .section-title,
.section-with-bg .section-subtitle,
.section-with-bg h1,
.section-with-bg h2,
.section-with-bg h3,
.section-with-bg h4,
.section-with-bg h5,
.section-with-bg h6 {
  color: var(--text-light);
}

.section-with-bg .badge-soft {
  background: #1a1a2e;
  color: var(--text-light);
}

.section-with-bg .service-card,
.section-with-bg .service-card h1,
.section-with-bg .service-card h2,
.section-with-bg .service-card h3,
.section-with-bg .service-card h4,
.section-with-bg .service-card h5,
.section-with-bg .service-card h6,
.section-with-bg .service-card p {
  color: var(--text-dark);
}

.navbar {
  padding-top: 20px;
  padding-bottom: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar .navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dark);
}

.navbar .navbar-brand img {
  margin-right: 8px;
}

.navbar .nav-link {
  font-weight: 500;
  color: var(--dark);
  margin-right: 1rem;
  transition: color 0.3s;
}

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

.navbar .navbar-toggler {
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  padding: 5px 10px;
}

.navbar .navbar-toggler:focus {
  box-shadow: none;
}

.navbar .navbar-toggler i {
  font-size: 24px;
}

.header-contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
}

.header-contact-info i {
  color: var(--brand-primary);
  margin-right: 8px;
}

.header-contact-info a {
  color: var(--dark);
  text-decoration: none;
}

.header-contact-info a:hover {
  color: var(--brand-primary);
}

@media (max-width: 991px) {
  .header-contact-info {
    display: none;
  }
}

.hero-section {
  background-size: cover;
  background-position: center;
  background-color: #1a1a2e;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  color: var(--text-light);
  position: relative;
}

.hero-section .container {
  z-index: 2;
}

.hero-section h1 {
  font-size: 4rem;
  color: var(--text-light);
}

.hero-section p {
  font-size: 1.25rem;
  max-width: 600px;
}

.hero-section .badge-soft {
  background: #1a1a2e;
  color: var(--text-light);
}

.hero-section .input-group {
  max-width: 500px;
}

.hero-section .form-control {
  border-radius: 50px 0 0 50px;
}

.hero-section .btn {
  border-radius: 0 50px 50px 0;
}

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

.carousel-item {
  min-height: 70vh;
  background-size: cover;
  background-position: center;
}

.carousel-caption {
  bottom: 20%;
}

.carousel-caption h2 {
  font-size: 3rem;
  color: var(--text-light);
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: 2px solid transparent;
}

.carousel-indicators .active {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.service-card {
  border: none;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: all 0.35s;
  overflow: hidden;
  height: 100%;
}

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

.service-card .card-img-top {
  height: 220px;
  object-fit: cover;
}

.service-card .card-body {
  padding: 30px;
}

.service-card .card-title {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.service-card .card-text {
  color: #495057;
  margin-bottom: 20px;
}

.service-card .btn {
  margin-top: auto;
}

.testimonial-card {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  transition: transform 0.3s;
}

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

.testimonial-card .quote-icon {
  font-size: 2rem;
  color: var(--brand-primary);
  margin-bottom: 20px;
}

.testimonial-card .testimonial-text {
  font-style: italic;
  margin-bottom: 30px;
}

.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-card .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.testimonial-card .testimonial-author h5 {
  margin-bottom: 0;
}

.testimonial-card .testimonial-author span {
  color: #6c757d;
}

.partner-logo {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s;
  margin-bottom: 20px;
}

.partner-logo:hover {
  filter: none;
  opacity: 1;
}

.partner-logo img {
  max-height: 60px;
  width: auto;
}

.price-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 40px;
  transition: all 0.35s;
  text-align: center;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.price-card.featured {
  border: 3px solid var(--brand-primary);
}

.price-card .price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--dark);
  margin: 20px 0;
}

.price-card .price span {
  font-size: 1rem;
  color: #6c757d;
}

.price-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 30px;
}

.price-card ul li {
  padding: 8px 0;
  color: #495057;
}

.price-card ul li i {
  color: var(--brand-primary);
  margin-right: 10px;
}

.contact-form .form-label {
  color: var(--text-dark);
}

.contact-form .form-control {
  border-radius: 12px;
  padding: 14px 20px;
  border: 1px solid var(--border-light);
  background: #f8f9fa;
  transition: all 0.3s;
}

.contact-form .form-control:focus {
  background: #fff;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 0.2rem rgba(184, 141, 64, 0.15);
}

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

.contact-form .form-check {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.contact-form .form-check-input {
  margin-top: 0;
  margin-right: 10px;
}

.form-notification {
  display: none;
  padding: 15px 20px;
  border-radius: 12px;
  margin-top: 15px;
  font-weight: 500;
}

.form-notification.success {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.form-notification.error {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.form-notification.show {
  display: block;
  animation: fadeInUp 0.4s;
}

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

.accordion-button:not(.collapsed) {
  color: var(--dark);
  background: var(--brand-accent);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--brand-primary);
}

.accordion-button::after {
  background-image: none;
  font-family: "Font Awesome 6 Free", sans-serif;
  font-weight: 900;
  content: "\f078";
  color: var(--brand-primary);
}

.accordion-button:not(.collapsed)::after {
  color: var(--brand-primary);
}

.blog-card {
  background: #fff;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.blog-card .card-img-top {
  height: 260px;
  object-fit: cover;
}

.blog-card .card-body {
  padding: 30px;
}

.blog-card .card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.blog-card .card-text {
  color: #495057;
}

.site-footer {
  background: var(--dark);
  color: #ffffff;
  padding: 80px 0 0;
}

.site-footer h5 {
  color: var(--text-light);
  font-family: var(--font-heading);
  margin-bottom: 25px;
}

.site-footer a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer a:hover {
  color: var(--brand-accent);
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer ul li {
  margin-bottom: 12px;
}

.site-footer .footer-contact i {
  color: var(--brand-accent);
  margin-right: 10px;
  width: 20px;
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  margin-top: 50px;
}

.site-footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  margin-right: 8px;
  transition: all 0.3s;
}

.site-footer .social-links a:hover {
  background: var(--brand-primary);
  color: #fff;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  padding: 25px;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  animation: slideUp 0.5s;
}

.cookie-banner p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #495057;
}

.cookie-banner a {
  text-decoration: underline;
  color: var(--brand-primary);
}

.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner .btn {
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
}

.cookie-banner .btn-accept {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

.cookie-banner .btn-accept:hover {
  background: #5f4a1c;
}

.cookie-banner .btn-reject {
  background: transparent;
  border: 1px solid #dee2e6;
  color: #6c757d;
}

.cookie-banner .btn-reject:hover {
  background: #f8f9fa;
}

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

@media (max-width: 767px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    left: 15px;
    right: 15px;
  }
  .cookie-banner .cookie-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  margin-bottom: 10px;
  color: #495057;
}

.check-list i {
  color: var(--brand-primary);
  margin-right: 10px;
}

.stat-counter {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  backdrop-filter: blur(5px);
}

.stat-counter .stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
  line-height: 1.2;
}

.stat-counter .stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6c757d;
  margin-top: 10px;
}

.section-with-bg .stat-counter {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.section-with-bg .stat-counter .stat-number {
  color: var(--text-light);
}

.section-with-bg .stat-counter .stat-label {
  color: #ffffff;
}

.team-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s;
  height: 100%;
}

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

.team-card .team-photo {
  height: 280px;
  background-size: cover;
  background-position: center;
}

.team-card .team-body {
  padding: 25px;
}

.team-card .team-body h4 {
  margin-bottom: 5px;
}

.team-card .team-body p {
  color: #6c757d;
}

.team-card .team-social a {
  color: var(--dark);
  margin-right: 12px;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.team-card .team-social a:hover {
  color: var(--brand-primary);
}

.map-section iframe {
  border: none;
  border-radius: var(--radius-lg);
}

.contact-info-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
}

.contact-info-card i {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: var(--brand-accent);
  color: var(--dark);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-info-card h5 {
  margin-bottom: 10px;
}

.contact-info-card p {
  color: #6c757d;
  margin-bottom: 0;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1000;
  border: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #5f4a1c;
}body {
  padding-bottom: 0;
}