/* ==========================================================================
   0. GOOGLE FONTS IMPORT
   ========================================================================== */
@import url('https://googleapis.com');

/* ==========================================================================
   1. COLOR SCHEMES GALLERY (Your Website Theme Engine)
   ========================================================================== */

/* 💻 SITE 1: Default Modern Tech Blue (Applied automatically) */
:root {
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-primary: #3b82f6;     /* Bright Blue */
  --color-primary-hover: #1d4ed8;
  --color-border: #e2e8f0;

  /* Global Layout Variables (Shared across all themes) */
  --font-headings: 'Fredoka', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --border-radius: 8px;
}

/* 🥐 SITE 2: Warm Bakery (Warm creams, rich chocolate, and warm honey amber) */
.theme-bakery {
  --color-bg: #fdfbf7;          /* Soft Cream Background */
  --color-surface: #ffffff;
  --color-text: #4a3728;        /* Deep Chocolate Brown Text */
  --color-text-muted: #8c7662;  /* Muted Crust Brown */
  --color-primary: #d97706;     /* Honey Amber Accent */
  --color-primary-hover: #b45309;
  --color-border: #f3eae0;
}

/* 👑 SITE 3: Luxury Boutique / Fashion (Crisp white, charcoal, and elegant rose-gold) */
.theme-luxury {
  --color-bg: #fafafa;          /* Soft Minimal White */
  --color-surface: #ffffff;
  --color-text: #1c1917;        /* Clean Onyx Charcoal Text */
  --color-text-muted: #78716c;  /* Soft Stone Gray */
  --color-primary: #c2410c;     /* Muted Rose-Gold / Terracotta Accent */
  --color-primary-hover: #9a3412;
  --color-border: #e7e5e4;
}

/* 🕹️ SITE 4: Dark Cyber / Gaming (Deep blacks, silver text, and sharp neon emerald) */
.theme-cyber {
  --color-bg: #09090b;          /* Pure Jet Black Background */
  --color-surface: #18181b;        /* Slate Gray Container Box */
  --color-text: #000;        /* Crisp White Text */
  --color-text-muted: #a1a1aa;  /* Muted Cool Silver */
  --color-primary: #10b981;     /* Vivid Neon Emerald Accent */
  --color-primary-hover: #059669;
  --color-border: #27272a;
}

/* 🌸 SITE 5: Kawaii Pastel */

.theme-kawaii {
  --color-bg: #fff7fb;
  --color-surface: #ffffff;
  --color-text: #5c4b5f;
  --color-text-muted: #9a8aa0;
  --color-primary: #ff8fc7;
  --color-primary-hover: #ff6bb3;
  --color-border: #ffd6ea;
  --border-radius: 24px;
  --font-headings: 'Fredoka', sans-serif;
  --font-body: 'Outfit', sans-serif;

}

/* ==========================================================================
   2. BASIC RESET
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  padding: 20px;
}

/* ==========================================================================
   3. FONT FAMILY VARIATIONS
   ========================================================================== */
.font-tech-heading { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; }
.font-tech-body    { font-family: 'Inter', sans-serif; }

.font-serif-heading { font-family: 'Playfair Display', serif; font-weight: 700; }
.font-serif-body    { font-family: 'Lora', serif; }

.font-clean-heading { font-family: 'Outfit', sans-serif; font-weight: 700; }
.font-clean-body    { font-family: 'Open Sans', sans-serif; }

.font-kawaii-heading { font-family: 'Fredoka', sans-serif; font-weight: 700;}
.font-kawaii-body { font-family: 'Outfit', sans-serif;}
/* ==========================================================================
   4. TYPOGRAPHY H1 - H6 SCALE
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--color-text);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

h1 { font-size: 36px; letter-spacing: -0.5px; }
h2 { font-size: 28px; font-weight: 700; }
h3 { font-size: 22px; font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }
h5 { font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
h6 { font-size: 14px; font-weight: 700; color: var(--color-text-muted); text-transform: uppercase; }

p { 
  font-family: var(--font-body);
  font-size: 16px; 
  color: var(--color-text-muted); 
  margin-bottom: 16px; 
}

.text-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
}

/* ==========================================================================
   5. NAVIGATION BAR COMPONENT (Single clean header bar)
   ========================================================================== */
.navbar {
  background-color: var(--color-card);
  border: 1px solid var(--color-border);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--border-radius);
  margin-bottom: 40px;
}
.navbar .brand { font-family: var(--font-headings); font-weight: bold; font-size: 20px; color: var(--color-primary); }
.navbar .nav-links a { font-family: var(--font-body); color: var(--color-text-muted); text-decoration: none; margin-left: 20px; font-weight: 500; transition: color 0.2s; }
.navbar .nav-links a:hover { color: var(--color-primary); }

/* ==========================================================================
   6. CARD VARIATIONS 
   ========================================================================== */
.card { padding: 25px; border-radius: var(--border-radius); margin-bottom: 20px; background-color: var(--color-card); }
.card-standard { border: 1px solid var(--color-border); }
.card-elevated { border: none; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.03); }
.card-accent { border: 1px solid var(--color-border); border-top: 4px solid var(--color-primary); }
.card-dark { background-color: var(--color-text); border: none; }
.card-dark h1, .card-dark h2, .card-dark h3, .card-dark h4, .card-dark h5, .card-dark h6 { color: var(--color-bg); }
.card-dark p { opacity: 0.8; } 

/* ==========================================================================
   7. BUTTON VARIATIONS
   ========================================================================== */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; font-family: var(--font-body); font-size: 14px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: all 0.2s ease; }
.btn-primary { background-color: var(--color-primary); color: var(--color-card); border-radius: var(--border-radius); }
.btn-primary:hover { background-color: var(--color-primary-hover); }
.btn-secondary { background-color: transparent; color: var(--color-text); border: 1px solid var(--color-border); border-radius: var(--border-radius); }
.btn-secondary:hover { background-color: rgba(0,0,0,0.02); border-color: var(--color-text-muted); }
.btn-pill { background-color: var(--color-text); color: var(--color-card); border-radius: 9999px; }
.btn-pill:hover { opacity: 0.9; }
.btn-minimal { background-color: transparent; color: var(--color-primary); padding-left: 0; padding-right: 0; }
.btn-minimal:hover { color: var(--color-primary-hover); text-decoration: underline; }
.card-soft { border: 2px solid var(--color-border); box-shadow: 0 10px 25px rgba(0,0,0,0.05); transform: translateY(0); transition: 0.2s ease; }
.card-soft:hover { transform: translateY(-4px); }

/* ==========================================================================
   8. STYLE GUIDE SHOWCASE UTILITIES (Dashboard specific helpers)
   ========================================================================== */
.main-container { max-width: 1000px; margin: 0 auto; }
.guide-section { margin-top: 50px; padding-top: 20px; border-top: 2px dashed var(--color-border); }
.guide-title { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--color-primary); margin-bottom: 20px; }
.palette-grid { display: flex; gap: 30px; flex-wrap: wrap; }
.color-swatch { width: 100px; text-align: center; font-size: 12px; }
.swatch-box-bg, .swatch-box-card, .swatch-box-text, .swatch-box-primary { width: 80px; height: 80px; border-radius: 50%; border: 1px solid var(--color-border); margin: 0 auto 10px auto; }
.swatch-box-bg { background-color: var(--color-bg); }
.swatch-box-card { background-color: var(--color-card); }
.swatch-box-text { background-color: var(--color-text); }
.swatch-box-primary { background-color: var(--color-primary); }
.showcase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 20px; }
.button-showcase { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.component-group { display: flex; flex-direction: column; }
.component-label { font-size: 11px; color: var(--color-text-muted); margin-bottom: 8px; text-transform: lowercase; font-family: monospace; }
.type-row { display: flex; align-items: baseline; gap: 20px; border-bottom: 1px solid var(--color-border); padding-bottom: 10px; margin-bottom: 15px; }
.type-label { font-size: 12px; color: var(--color-text-muted); font-family: monospace; width: 120px; flex-shrink: 0; }
.font-preview-box { background: var(--color-card); border: 1px solid var(--color-border); border-radius: var(--border-radius); padding: 20px; }
.font-tag { font-size: 11px; font-family: monospace; background: var(--color-bg); padding: 2px 6px; border-radius: 4px; display: inline-block; margin-bottom: 10px; }
.font-margin-sm { margin-bottom: 5px; }
.font-size-sm { font-size: 14px; margin: 0; }
.font-weight-normal { font-weight: normal; }

/* Theme preview mini-cards style */
.theme-preview-card { padding: 15px; border-radius: 8px; border: 1px solid var(--color-border); }
.theme-dot-primary { width: 15px; height: 15px; display: inline-block; border-radius: 50%; }
.theme-dot-text { width: 15px; height: 15px; display: inline-block; border-radius: 50%; }
.theme-margin-bottom-sm { margin-bottom: 4px; }
.theme-font-size-sm { font-size: 12px; margin-bottom: 10px; }


/* ==========================================================================
   9. NAVIGATION BAR STYLE SHOWCASE
   ========================================================================== */
.navbar-showcase {
  display: flex;
  flex-direction: column;
  gap: 24px;

}
.nav-demo {
  width: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 16px;
  min-height: 70px;
}

.nav-demo a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
}

.nav-demo .logo {
  font-weight: 800;
  color: var(--color-primary);
}

/* Minimal */

.nav-minimal {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-minimal .links {
  display: flex;
  gap: 16px;
}

/* Centered */

.nav-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

/* CTA */

.nav-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-cta .links {
  display: flex;
  gap: 16px;
}

/* Underline */

.nav-underline {
  display: flex;
  gap: 20px;
}

.nav-underline a {
  position: relative;
}

.nav-underline a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-primary);
  transition: 0.3s;
}

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

/* Pill */

.nav-pill {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.nav-pill .links {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.nav-pill a {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 8px 14px;
  border-radius: 999px;
  transition: 0.2s;
}

.nav-pill a:hover {
  background: var(--color-primary);
  color: white;
}

/* Dark */

.nav-dark {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: var(--color-text);
  border: none;
}

.nav-dark .logo {
  color: var(--color-primary);
}

.nav-dark a {
  color: var(--color-bg);
}

.nav-dark .links {
  display: flex;
  gap: 16px;
}

/* ==========================================================================
   10. HERO SECTION SHOWCASE
   ========================================================================== */

.hero-showcase {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-demo {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 80px 60px;
}

.hero-demo h1 {
  margin-bottom: 12px;
}

.hero-demo p {
  max-width: 600px;
}

/* Simple */

.hero-simple {
  text-align: left;
}

/* Centered */

.hero-centered {
  text-align: center;
}

.hero-centered p {
  margin-left: auto;
  margin-right: auto;
}

/* Split */

.hero-split {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  align-items: center;
}

/* CTA */

.hero-cta {
  text-align: center;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

/* Hero + Image */

.hero-image {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  align-items: center;
}

/* Placeholder */

.hero-placeholder {
  background: var(--color-bg);
  border: 2px dashed var(--color-border);
  border-radius: var(--border-radius);
  min-height: 180px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--color-text-muted);
  font-weight: 600;
}

/* ==========================================================================
   11. FEATURE SECTION SHOWCASE
   ========================================================================== */

.feature-showcase {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-demo {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 32px;
}

/* ==========================================================================
   3 COLUMN FEATURES
   ========================================================================== */

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

/* ==========================================================================
   4 COLUMN FEATURES
   ========================================================================== */

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

/* ==========================================================================
   ICON FEATURES
   ========================================================================== */

.features-icons {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.icon-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  font-size: 32px;
  flex-shrink: 0;
}

/* ==========================================================================
   ALTERNATING FEATURES
   ========================================================================== */

.features-alternating {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.alt-feature {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: center;
}

.alt-feature.reverse {
  direction: rtl;
}

.alt-feature.reverse > * {
  direction: ltr;
}

/* ==========================================================================
   PLACEHOLDER
   ========================================================================== */

.feature-placeholder {
  min-height: 180px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--color-bg);
  border: 2px dashed var(--color-border);
  border-radius: var(--border-radius);

  color: var(--color-text-muted);
  font-weight: 600;
}

/* ==========================================================================
   12. PRODUCT & MEDIA COMPONENTS
   ========================================================================== */

.product-showcase {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ==========================================================================
   PRODUCT GRID
   ========================================================================== */

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

.product-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 20px;
}

.product-image {
  height: 180px;
  background: var(--color-bg);
  border: 2px dashed var(--color-border);
  border-radius: var(--border-radius);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 16px;
  color: var(--color-text-muted);
}



/* ==========================================================================

   PRODUCT CAROUSEL

   ========================================================================== */

.product-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
}

.product-carousel .product-card {
  min-width: 250px;
  flex-shrink: 0;
}

/* ==========================================================================

   IMAGE GALLERY

   ========================================================================== */

.image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;

}

.gallery-image {
  aspect-ratio: 1;
  background: var(--color-bg);
  border: 2px dashed var(--color-border);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-weight: 600;

}

/* ==========================================================================
   IMAGE SLIDER
   ========================================================================== */

.image-slider {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 20px;
}

.slider-image {
  height: 300px;
  background: var(--color-bg);
  border: 2px dashed var(--color-border);
  border-radius: var(--border-radius);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--color-text-muted);
  font-weight: 600;
}

/* ==========================================================================
   13. FOOTER SYSTEM (STYLE GUIDE VERSION)
   ========================================================================== */

.footer-showcase {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-demo {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 32px;
}

/* Common footer elements */
.footer-demo a {
  text-decoration: none;
  color: var(--color-text-muted);
}

.footer-demo a:hover {
  color: var(--color-primary);
}

/* Bottom bar (shared across all footers) */
.footer-bottom {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ==========================================================================
   MINIMAL FOOTER (layout only)
   ========================================================================== */

.footer-minimal {
  text-align: center;
}

.footer-minimal .footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 16px 0;
}

/* ==========================================================================
   BUSINESS FOOTER (grid structure)
   ========================================================================== */

.footer-business {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
}

/* ==========================================================================
   SPLIT FOOTER (2-column layout)
   ========================================================================== */

.footer-split {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-right {
  display: flex;
  gap: 16px;
}

/* ==========================================================================
   14. ABOUT SECTION COMPONENTS
   ========================================================================== */


/* ABOUT SHOWCASE */

.about-showcase {
  display: flex;
  flex-direction: column;
  gap: 24px;
}



/* ==========================================================================
   ABOUT SPLIT
   ========================================================================== */


.about-split {

  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  align-items: center;

  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);

  padding: 40px;

}


.about-content p {
  max-width: 600px;
}



.about-placeholder {

  height: 300px;

  background: var(--color-bg);
  border: 2px dashed var(--color-border);

  border-radius: var(--border-radius);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--color-text-muted);
  font-weight: 600;

}



/* ==========================================================================
   ABOUT CARDS
   ========================================================================== */


.about-cards {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;

}



.about-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 25px;
}



.about-card p {
  margin-bottom: 0;
}



/* ==========================================================================
   ABOUT BANNER
   ========================================================================== */


.about-banner {
  text-align: center;
  background: var(--color-primary);
  color: var(--color-card);
  border-radius: var(--border-radius);
  padding: 60px 40px;
}



.about-banner h2 {
  color: var(--color-card);
}



.about-banner p {
  color: var(--color-card);
  opacity: 0.9;
  margin-bottom: 0;
}

/* ==========================================================================
   PLAYFUL ABOUT STORY
   ========================================================================== */
.about-story {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 40px;
}



.story-image {
  height: 300px;
  background: var(--color-bg);
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 2px dashed var(--color-border);
}



.story-content p {
  max-width: 550px;
}



.story-stats {
  display:flex;
  gap:20px;
  margin-top:30px;
}



.story-stats div {
  border-radius: 30px;
  padding:15px 20px;
  text-align:center;
  min-width:90px;
}



.story-stats h3 {
  color: var(--color-primary);
  margin-bottom:4px;
}


.story-stats p {
  margin:0;
  font-size:14px;
}

/* ==========================================================================
   PLAYFUL BUBBLE ABOUT SECTION
   ========================================================================== */
.about-bubbles {
  display:flex;
  justify-content:center;
  gap:30px;
  padding:40px;
}



.bubble-card {
  width:260px;
  min-height:220px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:center;

  padding:30px;
  border-radius:60% 40% 55% 45%;
  transition:0.3s ease;
}



.bubble-card:hover {
  transform:translateY(-10px) rotate(2deg);
}




.bubble-card p {
  margin:0;
}



/* pastel colours */
.bubble-pink {
  background:#ffd6ec;
}



.bubble-blue {
  background:#cceeff;
}



.bubble-purple {
  background:#eadcff;
}

/* ==========================================================================
   15. CONTACT PAGES SECTION
   ========================================================================== */


/* ==========================================================================
   1. CLASSIC BUSINESS CONTACT
   ========================================================================== */

.contact-classic {
  max-width: 600px;
  margin: auto;
  padding: 40px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  text-align: left;
}

.contact-classic h2 {
  margin-bottom: 10px;
}

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

.contact-form-classic input,
.contact-form-classic textarea {
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  background: white;
}

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


/* ==========================================================================
   2. CORPORATE SPLIT (PRO)
   ========================================================================== */

.contact-split-pro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 50px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  color: var(--color-text-muted);
}

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

.contact-form-pro input,
.contact-form-pro textarea {
  padding: 12px;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
}


/* ==========================================================================
   3. MAP CONTACT
   ========================================================================== */

.contact-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 40px;
}

.map-box {
  height: 320px;
  background: var(--color-bg);
  border-radius: var(--border-radius);
  border: 2px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}

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

.contact-details input,
.contact-details textarea {
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
}


/* ==========================================================================
   4. SUPPORT CENTER CONTACT
   ========================================================================== */

.support-contact {
  text-align: center;
  padding: 50px;
  background: var(--color-card);
  border-radius: var(--border-radius);
}

.support-grid {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
}

.support-card {
  padding: 15px 18px;
  background: var(--color-bg);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: 0.2s ease;
}

.support-card:hover {
  transform: translateY(-3px);
  background: var(--color-primary);
  color: white;
}

.support-contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-contact input,
.support-contact textarea {
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
}


/* ==========================================================================
   5. MINIMAL CONTACT
   ========================================================================== */

.contact-minimal {
  max-width: 500px;
  margin: auto;
  padding: 20px;
}

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

.contact-minimal input,
.contact-minimal textarea {
  padding: 12px;
  border: none;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
  outline: none;
}


/* ==========================================================================
   6. KAWAII CLOUD CONTACT
   ========================================================================== */

.contact-kawaii {
  display: flex;
  justify-content: center;
  padding: 40px;
}

.contact-kawaii-card {
  max-width: 650px;
  padding: 45px;
  background: var(--color-card);
  border-radius: 60px 40px 60px 40px;
  border: 2px solid var(--color-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-kawaii-card::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: var(--color-primary);
  opacity: 0.12;
  border-radius: 50%;
  top: -50px;
  left: -50px;
}

.contact-kawaii-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.contact-kawaii-tags span {
  background: var(--color-bg);
  padding: 8px 14px;
  border-radius: 999px;
}

.contact-kawaii-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.contact-kawaii-form input,
.contact-kawaii-form textarea {
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
}
