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

:root {
  --primary-color: #c9a88e;
  --secondary-color: #e8d4c1;
  --accent-color: #f5ebe0;
  --dark-color: #6b5d54;
  --light-color: #fdfbf9;
  --text-color: #5a5a5a;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 14px;
  background-color: var(--light-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--dark-color);
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
  font-weight: 300;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  font-weight: 400;
}

h4 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  font-weight: 400;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-main {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(201, 168, 142, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark-color);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 45px;
  align-items: center;
}

.main-nav a {
  font-size: 0.85rem;
  color: var(--text-color);
  padding: 8px 0;
  position: relative;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-color);
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.main-nav a:hover::before,
.main-nav a.active::before {
  opacity: 1;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255, 255, 255, 0.4),
    transparent 70%
  );
  pointer-events: none;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 400;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--dark-color);
  color: var(--white);
  border-color: var(--dark-color);
}

.btn-primary:hover {
  background: transparent;
  color: var(--dark-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(107, 93, 84, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--dark-color);
  border-color: var(--dark-color);
}

.btn-secondary:hover {
  background: var(--dark-color);
  color: var(--white);
  transform: translateY(-3px);
}

section {
  padding: 100px 0;
}

.intro-section {
  background: var(--white);
  padding: 100px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.intro-text p {
  margin-bottom: 1rem;
}

.intro-text .btn-secondary {
  margin-top: 1.5rem;
}

.intro-image img {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.features-section {
  background: var(--accent-color);
  text-align: center;
  padding: 100px 0;
}

.features-section h2 {
  margin-bottom: 4rem;
  font-size: 2.5rem;
  font-weight: 300;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: transparent;
  padding: 40px 20px;
  border-radius: 0;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: var(--white);
  border-color: rgba(201, 168, 142, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.feature-card i {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.products-preview,
.products-main {
  background: var(--white);
  padding: 100px 0;
}

.products-preview h2,
.products-main h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.5rem;
  font-weight: 300;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(201, 168, 142, 0.15);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 350px;
}

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

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-info {
  padding: 30px;
  text-align: center;
  background: var(--accent-color);
}

.product-info h3 {
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
  font-weight: 400;
}

.product-info p {
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.6;
}

.price {
  display: block;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.btn-product {
  display: inline-block;
  padding: 12px 35px;
  background: var(--dark-color);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--dark-color);
}

.btn-product:hover {
  background: transparent;
  color: var(--dark-color);
}

.cta-section {
  background: var(--dark-color);
  text-align: center;
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 50%,
    rgba(201, 168, 142, 0.15),
    transparent 60%
  );
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 2.8rem;
  font-weight: 300;
}

.cta-content p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

/* Brands Section */
.brands-section {
  padding: 120px 0;
  background: var(--accent-color);
}

.brands-section h2 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 80px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.brand-item {
  background: var(--white);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.brand-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.brand-logo {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--dark-color);
  text-align: center;
  padding: 0 20px;
}

.brands-cta {
  text-align: center;
  margin-top: 60px;
}

.brands-cta p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--text-color);
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-item {
  display: flex;
  gap: 15px;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.info-item h4 {
  margin-bottom: 0.3rem;
}

.location-map iframe {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.footer {
  background: var(--dark-color);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
  max-width: 1400px;
  margin: 0 auto 40px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-col p {
  font-size: 0.9rem;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
  padding: 20px;
  z-index: 1000;
  display: none;
}

.privacy-popup.show {
  display: block;
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
}

.privacy-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.privacy-content p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.privacy-buttons {
  display: flex;
  gap: 15px;
}

.btn-accept {
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-accept:hover {
  background: var(--dark-color);
}

.btn-learn {
  padding: 10px 25px;
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  font-size: 0.9rem;
}

.btn-learn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.page-hero {
  background: linear-gradient(165deg, #f5ebe0 0%, #e8d4c1 100%);
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  word-break: break-word;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 142, 0.3),
    transparent
  );
}

.page-hero h1 {
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--text-color);
  font-weight: 300;
}

.products-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.custom-section {
  background: var(--light-color);
}

.custom-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.custom-text h2 {
  margin-bottom: 1rem;
}

.custom-text p {
  margin-bottom: 1rem;
}

.custom-text .btn-secondary {
  margin-top: 1.5rem;
}

.custom-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.custom-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.custom-item i {
  font-size: 1.8rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.custom-item h4 {
  margin-bottom: 0.3rem;
}

.care-section {
  background: var(--white);
}

.care-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.care-card {
  text-align: center;
  padding: 25px;
}

.care-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.care-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.about-story {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story-text p {
  margin-bottom: 1rem;
}

.story-image img {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.values-section {
  background: var(--light-color);
}

.values-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.value-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
}

.value-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.value-card h3 {
  margin-bottom: 0.8rem;
}

.process-section {
  background: var(--white);
}

.process-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.process-step {
  text-align: center;
  padding: 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 auto 1rem;
}

.process-step h3 {
  margin-bottom: 0.8rem;
}

.flowers-types {
  background: var(--light-color);
}

.flowers-types h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.flowers-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.flower-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
}

.flower-item i {
  font-size: 1.8rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.flower-item h4 {
  margin-bottom: 0.3rem;
}

.contact-main {
  background: var(--white);
}

.contact-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form-wrapper h3,
.contact-info-wrapper h3 {
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkbox-label input[type='checkbox'] {
  margin-top: 3px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--primary-color);
  text-decoration: underline;
}

.btn-submit {
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: var(--dark-color);
  transform: translateY(-2px);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-detail {
  display: flex;
  gap: 15px;
}

.contact-detail i {
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-detail h4 {
  margin-bottom: 0.3rem;
}

.map-section {
  background: var(--light-color);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.map-wrapper iframe {
  border-radius: 10px;
  width: 100%;
}

.contact-cta {
  background: var(--white);
}

.cta-box {
  background: var(--light-color);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-box i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cta-box h3 {
  margin-bottom: 1rem;
}

.thankyou-section,
.error-section {
  background: var(--white);
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.thankyou-content,
.error-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.thankyou-icon,
.error-icon {
  margin-bottom: 1.5rem;
}

.thankyou-icon i {
  font-size: 5rem;
  color: #4caf50;
}

.error-icon i {
  font-size: 5rem;
  color: #ff9800;
}

.thankyou-content h1,
.error-content h1 {
  margin-bottom: 1rem;
}

.thankyou-message,
.error-message {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 2rem 0;
}

.thankyou-info,
.error-links {
  margin-top: 2rem;
  padding: 20px;
  background: var(--light-color);
  border-radius: 10px;
}

.error-links h3 {
  margin-bottom: 1rem;
}

.error-links ul {
  list-style: none;
}

.error-links li {
  margin-bottom: 0.5rem;
}

.error-links a {
  color: var(--primary-color);
}

.error-links a:hover {
  text-decoration: underline;
}

.policy-section {
  background: var(--white);
  padding: 60px 0;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h1 {
  margin-bottom: 1rem;
}

.policy-date {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.policy-content p {
  margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
  margin-bottom: 1rem;
  margin-left: 25px;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.policy-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

.policy-content a:hover {
  color: var(--dark-color);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
}

.cookie-table th {
  background: var(--light-color);
  font-weight: 600;
}

/* Hero Section - Unique Design */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f5ebe0 0%, #e8d4c1 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-color);
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-wrapper h1 {
  font-size: 5rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--dark-color);
}

.hero-wrapper h1 span {
  display: block;
  font-weight: 400;
  font-style: italic;
}

.hero-wrapper p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 60px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--dark-color);
  font-family: 'Cormorant Garamond', serif;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Philosophy Section */
.philosophy-section {
  padding: 120px 0;
  background: var(--white);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 45% 50%;
  gap: 80px;
  align-items: center;
}

.philosophy-image {
  position: relative;
}

.philosophy-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 0 200px 0 0;
}

.image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--white);
  padding: 20px 30px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 500;
}

.section-label.center {
  display: block;
  text-align: center;
}

.philosophy-content h2 {
  font-size: 3rem;
  margin-bottom: 25px;
  font-weight: 300;
}

.philosophy-content > p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: var(--text-color);
}

.philosophy-points {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.point i {
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 5px;
}

.point h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.point p {
  font-size: 0.95rem;
  color: var(--text-color);
  line-height: 1.6;
}

/* Showcase Section */
.showcase-section {
  padding: 0;
  background: var(--white);
}

.showcase-header {
  text-align: center;
  padding: 100px 0 80px;
  background: var(--white);
}

.showcase-header h2 {
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: -1px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--accent-color);
  max-width: 100%;
}

.showcase-item {
  position: relative;
  overflow: hidden;
  height: 600px;
  background: var(--white);
}

.showcase-item.large {
  grid-row: span 2;
  height: 1202px;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(20%);
}

.showcase-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(107, 93, 84, 0.95) 0%,
    rgba(107, 93, 84, 0.7) 50%,
    transparent 100%
  );
  padding: 60px 40px;
  transform: translateY(0);
  transition: all 0.5s ease;
}

.showcase-item:hover .showcase-overlay {
  background: linear-gradient(
    to top,
    rgba(107, 93, 84, 0.98) 0%,
    rgba(107, 93, 84, 0.85) 70%,
    transparent 100%
  );
  padding: 70px 40px;
}

.showcase-item:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.showcase-overlay h3 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 300;
  letter-spacing: 1px;
}

.showcase-overlay p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: 1px;
}

.showcase-link {
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  display: inline-block;
}

.showcase-link:hover {
  border-bottom-color: var(--white);
  padding-bottom: 8px;
}

/* Services Section */
.services-section {
  padding: 120px 0;
  background: var(--white);
}

.services-intro {
  text-align: center;
  margin-bottom: 60px;
}

.services-intro h2 {
  font-size: 3rem;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.service-card {
  padding: 40px 30px;
  background: var(--accent-color);
  border-radius: 0;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  background: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

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

.service-icon i {
  font-size: 1.8rem;
  color: var(--primary-color);
  transition: color 0.4s ease;
}

.service-card:hover .service-icon i {
  color: var(--white);
}

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

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.85rem;
  color: var(--dark-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Process Timeline Section */
.process-visual-section {
  padding: 120px 0;
  background: var(--light-color);
}

.process-visual-section h2 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 80px;
}

.center {
  text-align: center;
}

.process-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.timeline-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.timeline-number {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--dark-color);
  margin: 0 auto 25px;
  font-family: 'Cormorant Garamond', serif;
}

.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 400;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

.timeline-line {
  flex: 0 0 100px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  margin-bottom: 80px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 120px 0;
  background: var(--white);
}

.testimonials-section h2 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.testimonial-card {
  background: var(--accent-color);
  padding: 40px;
  border-radius: 0;
  position: relative;
}

.testimonial-stars {
  color: #ffb800;
  font-size: 1rem;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-author strong {
  font-size: 1rem;
  color: var(--dark-color);
  font-weight: 500;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-color);
}

/* Awards Section */
.awards-section {
  padding: 120px 0;
  background: var(--white);
}

.awards-content {
  max-width: 700px;
  margin-bottom: 60px;
}

.awards-content h2 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 20px;
}

.awards-content p {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.8;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.award-item {
  padding: 40px 30px;
  background: var(--accent-color);
  border-left: 3px solid var(--primary-color);
  transition: all 0.3s ease;
}

.award-item:hover {
  transform: translateX(10px);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.award-year {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--primary-color);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 15px;
}

.award-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.award-item p {
  font-size: 0.9rem;
  color: var(--text-color);
}

/* Responsive Design - Mobile First */

@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
  .hero-wrapper h1 {
    font-size: 4rem;
  }
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .philosophy-image img {
    height: 500px;
    border-radius: 0;
  }
}

@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 30px 20px;
    gap: 25px;
    transition: left 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  .main-nav.active {
    left: 0;
  }
  .main-nav a::before {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .logo a {
    font-size: 1.3rem;
  }
  .hero-section {
    min-height: 70vh;
    padding: 60px 20px;
  }
  .hero-wrapper {
    max-width: 100%;
    padding-left: 0;
  }
  .hero-wrapper h1 {
    font-size: 2.8rem;
  }
  .hero-wrapper h1 span {
    font-size: 2.5rem;
  }
  .hero-wrapper p {
    font-size: 1rem;
    max-width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    text-align: center;
  }
  .hero-stats {
    gap: 30px;
    flex-wrap: wrap;
  }
  .stat-number {
    font-size: 2rem;
  }
  .philosophy-section,
  .services-section,
  .process-visual-section,
  .testimonials-section,
  .awards-section,
  .brands-section {
    padding: 60px 0;
  }
  section {
    padding: 60px 0;
  }
  .philosophy-image img {
    height: 400px;
  }
  .image-badge {
    font-size: 0.8rem;
    padding: 15px 20px;
  }
  .philosophy-content h2,
  .services-intro h2,
  .awards-content h2 {
    font-size: 2rem;
  }
  .showcase-header {
    padding: 60px 0 40px;
  }
  .showcase-header h2 {
    font-size: 2.2rem;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .showcase-item,
  .showcase-item.large {
    height: 450px;
    grid-row: span 1;
  }
  .showcase-overlay {
    padding: 40px 25px;
  }
  .showcase-overlay h3 {
    font-size: 1.6rem;
  }
  .showcase-overlay p {
    font-size: 1rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .service-card {
    padding: 35px 25px;
  }
  .process-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .timeline-line {
    display: none;
  }
  .timeline-item {
    text-align: left;
    width: 100%;
  }
  .timeline-number {
    margin: 0 0 15px 0;
  }
  .timeline-content p {
    max-width: 100%;
    margin: 0;
    text-align: left;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .testimonial-card {
    padding: 30px 25px;
  }
  .awards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .award-item {
    padding: 30px 25px;
  }
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .brand-item {
    height: 100px;
  }
  .brand-logo {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .footer-col a {
    text-align: center;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  .container {
    padding: 0 20px;
  }
  .story-grid,
  .custom-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .hero-wrapper h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .hero-wrapper h1 span {
    font-size: 1.8rem;
  }
  .hero-wrapper p {
    font-size: 0.95rem;
  }
  .hero-badge {
    font-size: 0.65rem;
    padding: 6px 15px;
  }
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .stat-label {
    font-size: 0.75rem;
  }
  .philosophy-section,
  .services-section,
  .process-visual-section,
  .testimonials-section,
  .awards-section,
  .brands-section {
    padding: 50px 0;
  }
  section {
    padding: 50px 0;
  }
  .philosophy-content h2,
  .services-intro h2,
  .awards-content h2 {
    font-size: 1.7rem;
  }
  .philosophy-content > p,
  .awards-content p {
    font-size: 1rem;
  }
  .showcase-header {
    padding: 50px 0 30px;
  }
  .showcase-header h2 {
    font-size: 1.8rem;
  }
  .showcase-item,
  .showcase-item.large {
    height: 350px;
  }
  .showcase-overlay {
    padding: 30px 20px;
  }
  .showcase-overlay h3 {
    font-size: 1.4rem;
  }
  .showcase-overlay p {
    font-size: 0.95rem;
  }
  .service-card {
    padding: 30px 20px;
  }
  .service-icon {
    width: 60px;
    height: 60px;
  }
  .service-icon i {
    font-size: 1.5rem;
  }
  .service-card h3 {
    font-size: 1.2rem;
  }
  .service-card p {
    font-size: 0.9rem;
  }
  .timeline-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  .timeline-content h3 {
    font-size: 1.1rem;
  }
  .timeline-content p {
    font-size: 0.85rem;
  }
  .testimonial-card {
    padding: 25px 20px;
  }
  .testimonial-card p {
    font-size: 0.95rem;
  }
  .award-year {
    font-size: 2rem;
  }
  .award-item h3 {
    font-size: 1.1rem;
  }
  .award-item p {
    font-size: 0.85rem;
  }
  .brands-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .brand-item {
    height: 90px;
  }
  .brand-logo {
    font-size: 0.65rem;
  }
  .brands-cta p {
    font-size: 1.1rem;
  }
  .btn-primary,
  .btn-secondary {
    padding: 12px 28px;
    font-size: 0.75rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.7rem;
  }
  h3 {
    font-size: 1.2rem;
  }
  h4 {
    font-size: 1rem;
  }
  .container {
    padding: 0 15px;
  }
  .section-label {
    font-size: 0.7rem;
  }
}

@media (max-width: 375px) {
  .hero-wrapper h1 {
    font-size: 1.8rem;
  }
  .hero-wrapper h1 span {
    font-size: 1.6rem;
  }
  .hero-wrapper p {
    font-size: 0.9rem;
  }
  .philosophy-content h2,
  .services-intro h2,
  .awards-content h2 {
    font-size: 1.5rem;
  }
  .showcase-header h2 {
    font-size: 1.6rem;
  }
  .showcase-overlay h3 {
    font-size: 1.2rem;
  }
  .showcase-overlay p {
    font-size: 0.9rem;
  }
  .service-card h3 {
    font-size: 1.1rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 320px) {
  .logo a {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
  }
  .header-main {
    padding: 15px 0;
  }
  .hero-wrapper h1 {
    font-size: 1.6rem;
    line-height: 1.15;
  }
  .hero-wrapper h1 span {
    font-size: 1.5rem;
  }
  .hero-wrapper p {
    font-size: 0.85rem;
    line-height: 1.6;
  }
  .hero-badge {
    font-size: 0.6rem;
    padding: 5px 12px;
  }
  .stat-number {
    font-size: 1.6rem;
  }
  .stat-label {
    font-size: 0.7rem;
  }
  .philosophy-content h2,
  .services-intro h2,
  .awards-content h2,
  .showcase-header h2 {
    font-size: 1.4rem;
  }
  .philosophy-content > p,
  .awards-content p {
    font-size: 0.9rem;
  }
  .showcase-item,
  .showcase-item.large {
    height: 300px;
  }
  .showcase-overlay {
    padding: 25px 15px;
  }
  .showcase-overlay h3 {
    font-size: 1.1rem;
  }
  .showcase-overlay p {
    font-size: 0.85rem;
  }
  .service-card {
    padding: 25px 15px;
  }
  .service-card h3 {
    font-size: 1rem;
  }
  .service-card p {
    font-size: 0.85rem;
  }
  .timeline-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  .timeline-content h3 {
    font-size: 1rem;
  }
  .timeline-content p {
    font-size: 0.8rem;
  }
  .testimonial-card {
    padding: 20px 15px;
  }
  .testimonial-card p {
    font-size: 0.9rem;
  }
  .award-year {
    font-size: 1.8rem;
  }
  .award-item {
    padding: 25px 15px;
  }
  .award-item h3 {
    font-size: 1rem;
  }
  .award-item p {
    font-size: 0.8rem;
  }
  .brand-item {
    height: 80px;
  }
  .brand-logo {
    font-size: 0.6rem;
    padding: 0 10px;
  }
  .brands-cta p {
    font-size: 1rem;
  }
  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 0.7rem;
  }
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  h4 {
    font-size: 0.95rem;
  }
  .container {
    padding: 0 10px;
  }
  .section-label {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
  }
  .image-badge {
    font-size: 0.7rem;
    padding: 12px 18px;
  }
  .point i {
    font-size: 1.2rem;
  }
  .point h4 {
    font-size: 0.95rem;
  }
  .point p {
    font-size: 0.85rem;
  }
  .footer-content {
    gap: 25px;
  }
  .footer-col h4 {
    font-size: 1rem;
  }
  .footer-col p,
  .footer-col a {
    font-size: 0.8rem;
  }
  .footer-bottom {
    font-size: 0.75rem;
  }
  .privacy-popup {
    padding: 15px 10px;
  }
  .privacy-content h3 {
    font-size: 1rem;
  }
  .privacy-content p {
    font-size: 0.8rem;
  }
  .btn-accept,
  .btn-learn {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
  .page-hero {
    padding: 50px 10px 30px;
  }
  .page-hero h1 {
    font-size: 1.5rem;
  }
  .page-hero p {
    font-size: 0.95rem;
  }
}

.map-wrapper iframe {
  border: 0;
}
