@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --primary: #1a3a4a;
  --accent: #c9a962;
  --accent-hover: #b8963f;
  --light: #f8f7f4;
  --dark: #0d1f28;
  --gray: #6b7280;
  --gray-light: #e5e5e5;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary);
}

h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 1.8rem;
}
h3 {
  font-size: 1.4rem;
}
h4 {
  font-size: 1.1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  margin: 15px;
  border-radius: 50px;
  box-shadow: var(--shadow);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.logo span {
  color: var(--accent);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding: 5px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

nav a:hover,
nav a.active {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: linear-gradient(
    135deg,
    var(--light) 0%,
    rgba(201, 169, 98, 0.1) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(201, 169, 98, 0.08));
  transform: rotate(-15deg);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(201, 169, 98, 0.15);
  color: var(--accent-hover);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 25px;
  max-width: 450px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent);
  border-radius: 20px;
  z-index: -1;
}

section {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.section-header span {
  display: inline-block;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.section-header p {
  color: var(--gray);
  font-size: 0.95rem;
}

.features {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.feature-card {
  padding: 30px 25px;
  background: var(--light);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.feature-card h4 {
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0;
}

.about {
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-content h2 {
  margin-bottom: 15px;
}

.about-content p {
  color: var(--gray);
  font-size: 0.9rem;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 25px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
}

.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  padding: 30px 25px;
  background: var(--light);
  border-radius: var(--radius);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.service-card:hover {
  border-left-color: var(--accent);
  box-shadow: var(--shadow);
}

.service-card i {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 15px;
}

.service-card h4 {
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0;
}

.products {
  background: var(--light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 20px;
}

.product-info {
  padding: 20px;
}

.product-info h4 {
  margin-bottom: 8px;
}

.product-info p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 12px;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.product-price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray);
}

.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.testimonial-card {
  padding: 25px;
  background: var(--light);
  border-radius: var(--radius);
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.85rem;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--gray);
}

.contact-section {
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info h2 {
  margin-bottom: 15px;
}

.contact-info > p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-item i {
  font-size: 1.2rem;
  color: var(--accent);
  margin-top: 3px;
}

.contact-item span {
  font-size: 0.9rem;
  color: var(--dark);
}

.contact-form-wrap {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  transition: var(--transition);
  background: var(--light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.checkbox-group input {
  width: auto;
  margin-top: 3px;
}

.checkbox-group label {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0;
}

.checkbox-group a {
  color: var(--accent);
  text-decoration: underline;
}

.map-container {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 30px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.footer-logo span {
  color: var(--accent);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.copyright {
  font-size: 0.75rem;
}

.copyright span {
  font-weight: 600;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.policy-links a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.policy-links a:hover {
  color: var(--accent);
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
}

.cookie-popup.show {
  display: block;
}

.cookie-popup h4 {
  margin-bottom: 10px;
}

.cookie-popup p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 15px;
}

.cookie-btns {
  display: flex;
  gap: 10px;
}

.cookie-btns .btn {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 10px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  font-size: 0.8rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}
.breadcrumb a:hover {
  color: var(--accent);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.content-section {
  background: var(--white);
}

.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block h2 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.content-block h3 {
  margin-top: 25px;
  margin-bottom: 12px;
}

.content-block p,
.content-block li {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.8;
}

.content-block ul,
.content-block ol {
  margin-left: 25px;
  margin-bottom: 15px;
}

.content-block li {
  margin-bottom: 8px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.process-step {
  text-align: center;
  padding: 25px 15px;
  background: var(--light);
  border-radius: var(--radius);
  position: relative;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 15px;
}

.process-step h4 {
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0;
}

.error-page,
.thankyou-page {
  min-height: calc(100vh - 150px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 50px;
  background: linear-gradient(
    135deg,
    var(--light) 0%,
    rgba(201, 169, 98, 0.1) 100%
  );
}

.error-content,
.thankyou-content {
  max-width: 500px;
}

.error-code {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 15px;
}

.error-content h1,
.thankyou-content h1 {
  margin-bottom: 15px;
}

.error-content p,
.thankyou-content p {
  color: var(--gray);
  margin-bottom: 25px;
}

.thankyou-icon {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(201, 169, 98, 0.1);
}

.faq-question i {
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 20px 15px;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

@media (max-width: 992px) {
  h1 {
    font-size: 1.9rem;
  }
  h2 {
    font-size: 1.5rem;
  }

  .hero .container {
    grid-template-columns: 100%;
    text-align: center;
  }
  .hero-content {
    order: 1;
  }
  .hero-image {
    order: 0;
    max-width: 400px;
    margin: 0 auto;
  }
  .hero-image::before {
    display: none;
  }
  .hero p {
    margin: 0 auto 25px;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero h1 {
    font-size: 2.2rem;
  }

  .features-grid,
  .services-grid,
  .products-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 100%;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    margin: 10px;
    padding: 10px 20px;
  }

  nav {
    position: fixed;
    top: 70px;
    left: 10px;
    right: 10px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
  }

  nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .menu-toggle {
    display: flex;
  }

  .features-grid,
  .services-grid,
  .products-grid,
  .testimonials-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    justify-content: center;
  }

  section {
    padding: 50px 0;
  }

  .page-header {
    padding: 120px 0 50px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .policy-links {
    justify-content: center;
  }

  .cookie-popup {
    left: 10px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.1rem;
  }

  .container {
    padding: 0 15px;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 50px;
  }
  .hero h1 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .error-code {
    font-size: 5rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .contact-form-wrap {
    padding: 20px;
  }
}

@media (max-width: 320px) {
  .header-inner {
    padding: 8px 15px;
  }
  .logo {
    font-size: 1.1rem;
  }

  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.2rem;
  }

  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn {
    width: 100%;
  }

  .cookie-btns {
    flex-direction: column;
  }
  .cookie-btns .btn {
    width: 100%;
  }
}
