/* ===================================
   CIMOSA ARRIF - PROFESSIONAL CORPORATE STYLE
   Professional blue/gray palette with structured layout
   =================================== */

/* === CSS RESET & BASE === */
* {
  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: #2C3E50;
  background-color: #F8F9FA;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C3E50;
  margin-bottom: 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p {
  margin-bottom: 16px;
  color: #34495E;
}

a {
  color: #2C3E50;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #C9A961;
}

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

/* === LAYOUT CONTAINERS === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* === SECTIONS === */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  font-size: 18px;
  color: #5D6D7E;
  margin-bottom: 32px;
  text-align: center;
}

/* === HEADER === */
header {
  background-color: #FFFFFF;
  border-bottom: 2px solid #ECF0F1;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
}

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

.logo img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #2C3E50;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: #ECF0F1;
  color: #C9A961;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background-color: #2C3E50;
  color: #FFFFFF;
  border: none;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #34495E;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #2C3E50;
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background-color: #FFFFFF;
  color: #2C3E50;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #C9A961;
  padding-left: 10px;
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: #FFFFFF;
  margin-bottom: 24px;
  font-size: 48px;
}

.hero-subtitle {
  font-size: 18px;
  color: #ECF0F1;
  margin-bottom: 32px;
  line-height: 1.8;
}

.last-updated,
.effective-date {
  font-size: 14px;
  color: #BDC3C7;
  margin-top: 16px;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  margin: 8px;
}

.btn-primary {
  background-color: #C9A961;
  color: #FFFFFF;
  border-color: #C9A961;
}

.btn-primary:hover {
  background-color: #B8974D;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
  background-color:#2f2b2b;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.btn-secondary:hover {
  background-color: #FFFFFF;
  color: #2C3E50;
}

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

/* === CARDS & GRID LAYOUTS === */
.card-container,
.collections-grid,
.services-grid,
.features-grid,
.testimonials-grid,
.categories-grid,
.tips-grid,
.essentials-grid,
.steps-grid,
.values-grid,
.team-grid,
.commitments-grid,
.contact-cards,
.faq-list,
.highlights-grid,
.suggestions-grid,
.actions-grid,
.collections-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.collection-card,
.service-card,
.feature,
.testimonial-card,
.category-card,
.tip-card,
.essential-card,
.step,
.value-card,
.team-card,
.commitment-card,
.contact-card,
.faq-item,
.highlight-card,
.suggestion-card,
.action-card {
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 24px;
}

.collection-card:hover,
.service-card:hover,
.category-card:hover,
.tip-card:hover,
.suggestion-card:hover,
.action-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.15);
}

.collection-card h3,
.service-card h3,
.feature h3,
.category-card h3,
.tip-card h3,
.essential-card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.collection-card p,
.service-card p,
.feature p,
.category-card p,
.tip-card p {
  color: #5D6D7E;
  margin-bottom: 16px;
}

.price,
.price-range {
  font-size: 18px;
  font-weight: 700;
  color: #C9A961;
  margin-top: 16px;
}

/* === TESTIMONIALS === */
.testimonials {
  background-color: #ECF0F1;
  padding: 60px 20px;
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-left: 4px solid #C9A961;
  flex: 1 1 calc(50% - 24px);
}

.testimonial-card p {
  color: #2C3E50;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card .author {
  color: #5D6D7E;
  font-style: italic;
  font-size: 14px;
  margin-top: 16px;
}

/* === BRAND STATEMENT === */
.brand-statement,
.collection-intro,
.collections-overview,
.services-intro,
.brand-story,
.philosophy,
.selection-process,
.location,
.service-spotlight,
.seasonal-collection,
.personal-stylist,
.tailoring-service,
.style-consultation,
.collaborations,
.newsletter-signup,
.cta-visit,
.store-location,
.cta-final,
.confirmation,
.next-steps,
.contact-alternatives,
.navigation-links,
.next-actions,
.contact-info,
.return-home {
  background-color: #FFFFFF;
  padding: 60px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  margin-bottom: 60px;
}

.brand-statement h2,
.collection-intro h2,
.services-intro h2,
.brand-story h2 {
  text-align: center;
  margin-bottom: 24px;
  color: #2C3E50;
}

.brand-statement p,
.collection-intro p,
.services-intro p {
  text-align: center;
  font-size: 18px;
  color: #5D6D7E;
  max-width: 700px;
  margin: 0 auto 24px;
}

/* === STYLING TIPS & FEATURES === */
.styling-tips,
.wardrobe-essentials,
.why-choose-us {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

/* === SEASON BADGE === */
.season-badge {
  display: inline-block;
  background-color: #C9A961;
  color: #FFFFFF;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* === BOOKING PROCESS === */
.booking-process {
  background-color: #ECF0F1;
  padding: 60px 20px;
}

.step {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.step h3 {
  color: #C9A961;
  margin-bottom: 12px;
}

/* === LEGAL CONTENT === */
.legal-content {
  background-color: #FFFFFF;
  padding: 60px 40px;
  margin-bottom: 60px;
  border-radius: 8px;
}

.legal-content h2 {
  color: #2C3E50;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 2px solid #ECF0F1;
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content p {
  color: #5D6D7E;
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-content a {
  color: #C9A961;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #B8974D;
}

/* === CONTACT METHODS === */
.contact-methods,
.contact-form-section,
.store-location-map,
.faq-contact {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.contact-card {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.contact-card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
  font-size: 18px;
}

.contact-card p {
  color: #5D6D7E;
  font-size: 16px;
}

.response-info {
  text-align: center;
  color: #5D6D7E;
  font-style: italic;
  margin-top: 32px;
}

/* === FORM NOTICE === */
.form-notice {
  background-color: #ECF0F1;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 32px;
  border-left: 4px solid #C9A961;
}

.form-notice p {
  color: #2C3E50;
  margin-bottom: 12px;
}

.form-notice a {
  color: #C9A961;
  text-decoration: underline;
}

/* === LOCATION DETAILS === */
.location-info,
.visit-info,
.location-details,
.contact-details {
  background-color: #ECF0F1;
  padding: 32px;
  border-radius: 8px;
  margin-top: 32px;
}

.location-info p,
.visit-info p,
.location-details p,
.contact-details p {
  color: #2C3E50;
  margin-bottom: 12px;
  font-size: 16px;
}

.location-info strong,
.visit-info strong,
.location-details strong,
.contact-details strong {
  color: #2C3E50;
  font-weight: 700;
}

/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  flex: 1 1 100%;
  border-left: 4px solid #C9A961;
}

.faq-item h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.faq-item p {
  color: #5D6D7E;
}

/* === FOOTER === */
footer {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-brand {
  flex: 1 1 250px;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-brand .tagline {
  color: #BDC3C7;
  font-size: 14px;
  font-style: italic;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  flex: 2 1 500px;
}

.footer-column {
  flex: 1 1 150px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column h4 {
  color: #C9A961;
  font-size: 16px;
  margin-bottom: 8px;
  font-family: 'Lato', sans-serif;
}

.footer-column a,
.footer-column p {
  color: #ECF0F1;
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #C9A961;
}

.footer-legal {
  border-top: 1px solid rgba(236, 240, 241, 0.2);
  padding-top: 24px;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-links a {
  color: #BDC3C7;
  font-size: 14px;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #C9A961;
}

.copyright {
  color: #BDC3C7;
  font-size: 14px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 950;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner-text {
  flex: 1 1 500px;
}

.cookie-banner-text p {
  color: #ECF0F1;
  font-size: 14px;
  margin-bottom: 8px;
}

.cookie-banner-text a {
  color: #C9A961;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-btn-accept {
  background-color: #C9A961;
  color: #FFFFFF;
  border: none;
}

.cookie-btn-accept:hover {
  background-color: #B8974D;
}

.cookie-btn-reject {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.cookie-btn-reject:hover {
  background-color: #FFFFFF;
  color: #2C3E50;
}

.cookie-btn-settings {
  background-color: transparent;
  color: #C9A961;
  border: 2px solid #C9A961;
}

.cookie-btn-settings:hover {
  background-color: #C9A961;
  color: #FFFFFF;
}

/* === COOKIE SETTINGS MODAL === */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44, 62, 80, 0.9);
  z-index: 1050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.cookie-modal-header h3 {
  color: #2C3E50;
  margin-bottom: 0;
}

.cookie-modal-close {
  background-color: transparent;
  border: none;
  font-size: 28px;
  color: #5D6D7E;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #ECF0F1;
  color: #2C3E50;
}

.cookie-category {
  padding: 20px;
  background-color: #F8F9FA;
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-category-info h4 {
  color: #2C3E50;
  margin-bottom: 8px;
  font-size: 16px;
}

.cookie-category-info p {
  color: #5D6D7E;
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 60px;
  height: 32px;
  background-color: #BDC3C7;
  border-radius: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #C9A961;
}

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

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(28px);
}

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

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  
  .main-nav {
    gap: 16px;
  }
  
  .collection-card,
  .service-card,
  .category-card,
  .tip-card {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  section {
    padding: 32px 20px;
    margin-bottom: 40px;
  }
  
  .collection-card,
  .service-card,
  .feature,
  .testimonial-card,
  .category-card,
  .tip-card,
  .essential-card,
  .step,
  .value-card,
  .team-card,
  .commitment-card,
  .contact-card,
  .highlight-card,
  .suggestion-card,
  .action-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 24px;
  }
  
  .footer-legal {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-category {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-modal-actions {
    flex-direction: column;
  }
  
  .cookie-modal-actions .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .hero {
    padding: 40px 16px;
  }
  
  section {
    padding: 24px 16px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .collection-card,
  .service-card,
  .testimonial-card,
  .category-card {
    padding: 24px 20px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .mobile-menu.active {
    right: 0;
  }
}

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

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

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}

.intro {
  font-size: 18px;
  color: #5D6D7E;
  text-align: center;
  margin-bottom: 40px;
}

/* === PRINT STYLES === */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  body {
    background-color: #FFFFFF;
  }
}