/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2C3E3A;
  background-color: #FDFCFB;
  overflow-x: hidden;
}

/* Nature Organic Design - Color Palette */
:root {
  --primary-green: #2C5F4F;
  --secondary-gold: #D4A574;
  --accent-cream: #F4EDE4;
  --natural-brown: #8B7355;
  --earth-tone: #A88B68;
  --moss-green: #4A6B5C;
  --sage-green: #7A9B8E;
  --warm-beige: #E8DDD0;
  --soft-white: #FDFCFB;
  --text-dark: #2C3E3A;
  --text-medium: #5A6B67;
  --text-light: #8A9894;
}

/* Typography - Nature Organic Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: var(--primary-green);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

p {
  font-size: 16px;
  color: var(--text-medium);
  margin-bottom: 16px;
  line-height: 1.7;
}

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

ul {
  list-style: none;
}

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Header Styles - Organic Nature Design */
header {
  background: linear-gradient(135deg, var(--soft-white) 0%, var(--warm-beige) 100%);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(44, 95, 79, 0.08);
  border-bottom: 3px solid var(--accent-cream);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(44, 95, 79, 0.1));
}

.tagline {
  font-size: 14px;
  color: var(--text-medium);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

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

.main-nav a {
  color: var(--primary-green);
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-gold);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--moss-green);
}

/* CTA Buttons - Organic Nature Style */
.cta-button,
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.cta-button,
.btn-primary {
  background: var(--primary-green);
  color: var(--soft-white);
  box-shadow: 0 4px 15px rgba(44, 95, 79, 0.2);
}

.cta-button:hover,
.btn-primary:hover {
  background: var(--moss-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 95, 79, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
  background: var(--primary-green);
  color: var(--soft-white);
  transform: translateY(-2px);
}

.btn-link {
  background: transparent;
  color: var(--secondary-gold);
  padding: 8px 16px;
  font-weight: 500;
  border-radius: 20px;
}

.btn-link:hover {
  background: var(--accent-cream);
  color: var(--primary-green);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: var(--primary-green);
  color: var(--soft-white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(44, 95, 79, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--moss-green);
  transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, var(--soft-white) 0%, var(--warm-beige) 100%);
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -5px 0 25px rgba(44, 95, 79, 0.2);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary-gold);
  color: var(--soft-white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--natural-brown);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: var(--primary-green);
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav a:hover {
  background: var(--accent-cream);
  border-left-color: var(--secondary-gold);
  padding-left: 24px;
}

/* Hero Section - Nature Organic */
.hero {
  background: linear-gradient(135deg, var(--sage-green) 0%, var(--primary-green) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244, 237, 228, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--soft-white);
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
  color: var(--accent-cream);
  font-size: 20px;
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.6;
}

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Sections - Organic Spacing */
.section,
section {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.section-subtitle {
  color: var(--text-medium);
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  font-style: italic;
}

/* Brand Promise Section */
.brand-promise {
  background: var(--accent-cream);
  text-align: center;
  border-radius: 16px;
  margin: 40px 20px;
  padding: 60px 40px;
}

.brand-promise h2 {
  color: var(--primary-green);
  margin-bottom: 24px;
}

.brand-promise p {
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 18px;
  color: var(--text-medium);
}

.value-pillars {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.value-pillars span {
  background: var(--primary-green);
  color: var(--soft-white);
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 3px 10px rgba(44, 95, 79, 0.15);
  transition: all 0.3s ease;
}

.value-pillars span:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(44, 95, 79, 0.25);
}

/* Service Grid - Flexbox Layout */
.services-overview {
  background: var(--soft-white);
  text-align: center;
}

.service-grid,
.product-grid,
.project-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.service-card,
.product-card,
.project-card {
  background: linear-gradient(135deg, var(--soft-white) 0%, var(--accent-cream) 100%);
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(44, 95, 79, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  margin-bottom: 20px;
}

.service-card:hover,
.product-card:hover,
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(44, 95, 79, 0.15);
  border-color: var(--secondary-gold);
}

.service-card h3,
.product-card h3,
.project-card h3 {
  color: var(--primary-green);
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p,
.product-card p,
.project-card p {
  color: var(--text-medium);
  flex-grow: 1;
  margin-bottom: 16px;
}

.price {
  color: var(--secondary-gold);
  font-size: 24px;
  font-weight: 700;
  margin: 16px 0;
  font-family: 'Playfair Display', serif;
}

.project-details {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 8px;
}

/* Process Steps - Flexbox */
.process {
  background: linear-gradient(135deg, var(--warm-beige) 0%, var(--accent-cream) 100%);
  text-align: center;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.step {
  background: var(--soft-white);
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(44, 95, 79, 0.1);
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  max-width: 280px;
  position: relative;
  border-top: 4px solid var(--secondary-gold);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(44, 95, 79, 0.15);
}

.step h3 {
  color: var(--primary-green);
  margin-bottom: 12px;
  font-size: 20px;
}

.step p {
  color: var(--text-medium);
  font-size: 15px;
}

/* USP Grid - Flexbox */
.usp {
  background: var(--soft-white);
  text-align: center;
}

.usp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.usp-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  max-width: 400px;
  text-align: center;
  padding: 24px;
  background: var(--accent-cream);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.usp-item:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 20px rgba(44, 95, 79, 0.12);
}

.usp-item h3 {
  color: var(--primary-green);
  margin-bottom: 12px;
}

.usp-item p {
  color: var(--text-medium);
}

/* Testimonials - Dark Text for Readability */
.testimonials {
  background: linear-gradient(135deg, var(--warm-beige) 0%, var(--accent-cream) 100%);
  text-align: center;
  padding: 80px 20px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--soft-white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(44, 95, 79, 0.1);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  border-left: 4px solid var(--secondary-gold);
  text-align: left;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(44, 95, 79, 0.15);
}

.testimonial-card p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
}

.client-name {
  color: var(--primary-green);
  font-weight: 600;
  font-style: normal;
  font-size: 15px;
  margin-top: 8px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--moss-green) 100%);
  padding: 80px 40px;
  text-align: center;
  border-radius: 16px;
  margin: 60px 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 237, 228, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--soft-white);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-banner p {
  color: var(--accent-cream);
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.cta-banner .btn-primary {
  background: var(--soft-white);
  color: var(--primary-green);
  position: relative;
  z-index: 2;
}

.cta-banner .btn-primary:hover {
  background: var(--accent-cream);
  transform: translateY(-3px);
}

/* Footer - Nature Organic */
footer {
  background: linear-gradient(135deg, var(--primary-green) 0%, #1F4A3C 100%);
  color: var(--accent-cream);
  padding: 60px 20px 24px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-section h3 {
  color: var(--secondary-gold);
  margin-bottom: 16px;
  font-size: 20px;
}

.footer-section p,
.footer-section a {
  color: var(--accent-cream);
  font-size: 15px;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
}

.footer-section a:hover {
  color: var(--secondary-gold);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(244, 237, 228, 0.2);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--accent-cream);
  font-size: 14px;
}

/* Story Section */
.story,
.values,
.team,
.sustainability {
  padding: 60px 20px;
}

.story p,
.team p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-medium);
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.value-item {
  background: var(--accent-cream);
  padding: 32px 24px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(44, 95, 79, 0.08);
  transition: all 0.3s ease;
  border-top: 3px solid var(--secondary-gold);
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(44, 95, 79, 0.12);
}

.value-item h3 {
  color: var(--primary-green);
  margin-bottom: 12px;
}

/* Commitment List */
.commitment-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 32px auto;
}

.commitment-item {
  background: var(--accent-cream);
  padding: 20px 24px;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-gold);
  transition: all 0.3s ease;
}

.commitment-item:hover {
  background: var(--warm-beige);
  padding-left: 32px;
}

.commitment-item p {
  color: var(--text-dark);
  margin: 0;
}

/* Showroom Info */
.showroom-info,
.contact-intro,
.services-intro,
.product-intro,
.gallery-intro {
  background: var(--accent-cream);
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
  margin: 40px 20px;
}

.info-block {
  margin: 24px 0;
}

.info-block p strong {
  color: var(--primary-green);
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
}

/* Service Detail */
.service-detail {
  background: var(--soft-white);
  padding: 60px 40px;
  border-radius: 12px;
  margin: 40px 20px;
  box-shadow: 0 3px 15px rgba(44, 95, 79, 0.08);
}

.service-tagline {
  color: var(--secondary-gold);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

/* Category Grids */
.category-grid,
.collection-grid,
.style-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.category-item,
.collection-item,
.style-item {
  background: linear-gradient(135deg, var(--accent-cream) 0%, var(--warm-beige) 100%);
  padding: 32px 24px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(44, 95, 79, 0.08);
  transition: all 0.3s ease;
}

.category-item:hover,
.collection-item:hover,
.style-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(44, 95, 79, 0.12);
}

.category-item h3,
.collection-item h3,
.style-item h3 {
  color: var(--primary-green);
  margin-bottom: 12px;
}

/* Materials Quality */
.materials-list {
  background: var(--accent-cream);
  padding: 32px;
  border-radius: 12px;
  max-width: 700px;
  margin: 32px auto;
}

.materials-list p {
  color: var(--text-dark);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.materials-list p::before {
  content: '🌿';
  position: absolute;
  left: 0;
}

/* Category Filters */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.category-filters span {
  background: var(--accent-cream);
  color: var(--primary-green);
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-weight: 500;
}

.category-filters span:hover {
  background: var(--primary-green);
  color: var(--soft-white);
  border-color: var(--secondary-gold);
}

/* Contact Form Section */
.contact-form-section {
  background: var(--soft-white);
  padding: 60px 40px;
  border-radius: 12px;
  margin: 40px 20px;
}

.contact-form-info {
  max-width: 700px;
  margin: 32px auto;
}

.email-highlight {
  color: var(--secondary-gold);
  font-size: 24px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin: 24px 0;
}

.contact-form-info ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.contact-form-info ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--text-medium);
}

.contact-form-info ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-gold);
  font-weight: bold;
}

/* Contact Methods */
.contact-methods {
  padding: 60px 20px;
}

.contact-method {
  background: var(--accent-cream);
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 3px 15px rgba(44, 95, 79, 0.08);
}

.contact-method p strong {
  color: var(--primary-green);
  font-size: 20px;
  display: block;
  margin-bottom: 8px;
}

/* Legal Content */
.legal-content {
  background: var(--soft-white);
  padding: 60px 40px;
  max-width: 900px;
  margin: 40px auto;
  border-radius: 12px;
}

.legal-content h2 {
  color: var(--primary-green);
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-content h3 {
  color: var(--moss-green);
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.legal-content p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Confirmation/Thank You Pages */
.confirmation-message,
.meanwhile-section,
.contact-info-reminder,
.back-navigation,
.consultation-booking,
.customization {
  text-align: center;
  padding: 60px 20px;
}

.suggestion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.suggestion {
  background: var(--accent-cream);
  padding: 32px 24px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  max-width: 400px;
  box-shadow: 0 3px 15px rgba(44, 95, 79, 0.08);
  transition: all 0.3s ease;
}

.suggestion:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(44, 95, 79, 0.12);
}

.back-navigation {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--moss-green) 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(44, 95, 79, 0.3);
  z-index: 950;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1 1 300px;
}

.cookie-consent-text p {
  color: var(--accent-cream);
  margin: 0;
  font-size: 15px;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: var(--secondary-gold);
  color: var(--soft-white);
}

.cookie-btn-accept:hover {
  background: var(--natural-brown);
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--accent-cream);
  border: 2px solid var(--accent-cream);
}

.cookie-btn-reject:hover {
  background: var(--accent-cream);
  color: var(--primary-green);
}

.cookie-btn-settings {
  background: var(--soft-white);
  color: var(--primary-green);
}

.cookie-btn-settings:hover {
  background: var(--accent-cream);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 58, 0.8);
  z-index: 960;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: var(--soft-white);
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(44, 95, 79, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h3 {
  color: var(--primary-green);
  margin: 0;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--text-medium);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: var(--primary-green);
  transform: rotate(90deg);
}

.cookie-category {
  background: var(--accent-cream);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 3px solid var(--secondary-gold);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-category h4 {
  color: var(--primary-green);
  margin: 0;
  font-size: 18px;
}

.cookie-category p {
  color: var(--text-medium);
  margin: 0;
  font-size: 14px;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: var(--text-light);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: var(--primary-green);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--soft-white);
  border-radius: 50%;
  transition: left 0.3s ease;
}

.cookie-toggle.active::after {
  left: 27px;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Mobile Menu Visible */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  .cta-button {
    display: none;
  }
  
  /* Typography Adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Header Adjustments */
  header {
    padding: 16px 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  .tagline {
    font-size: 12px;
  }
  
  /* Section Padding */
  .section,
  section {
    padding: 40px 16px;
    margin-bottom: 24px;
  }
  
  /* Hero Adjustments */
  .hero {
    padding: 60px 16px;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .cta-group .btn-primary,
  .cta-group .btn-secondary {
    width: 100%;
  }
  
  /* Cards Full Width on Mobile */
  .service-card,
  .product-card,
  .project-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .step {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .usp-item,
  .value-item,
  .category-item,
  .collection-item,
  .style-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer Adjustments */
  .footer-section {
    flex: 1 1 100%;
  }
  
  .footer-content {
    gap: 32px;
  }
  
  /* Cookie Consent Mobile */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 120px;
  }
  
  /* Cookie Modal Mobile */
  .cookie-modal-content {
    padding: 24px;
    margin: 16px;
  }
  
  .cookie-category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  /* Brand Promise */
  .brand-promise {
    padding: 40px 24px;
    margin: 24px 16px;
  }
  
  .value-pillars {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* CTA Banner */
  .cta-banner {
    padding: 60px 24px;
    margin: 40px 16px;
  }
  
  /* Legal Content */
  .legal-content {
    padding: 40px 24px;
  }
  
  /* Contact Form */
  .contact-form-section,
  .showroom-info {
    padding: 40px 24px;
  }
  
  /* Service Detail */
  .service-detail {
    padding: 40px 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet Adjustments */
  .service-card,
  .product-card,
  .project-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .usp-item,
  .value-item {
    flex: 1 1 calc(50% - 32px);
  }
  
  .step {
    flex: 1 1 calc(50% - 24px);
  }
}

/* Smooth Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Accessibility */
*:focus {
  outline: 2px solid var(--secondary-gold);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid var(--secondary-gold);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
}