/* Cito Pumps - Exact Original Google Fonts (Righteous, ABeeZee, Roboto Mono, Noto Sans KR) */
@import url('https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&family=Righteous&family=Roboto+Mono:wght@300;400;700&family=Noto+Sans+KR:wght@400;700&display=swap');

:root {
  --bg-outer-gray: #8c8c8c;
  --bg-inner-black: #000000;
  --bg-header: #303030;
  --bg-footer: #1a1a1a;
  
  --cito-gold: #ffd700;
  --cito-gold-hover: #e6c200;
  
  --text-white: #ffffff;
  --text-gray: #cccccc;
  --text-muted: #888888;
  
  --font-main: 'ABeeZee', sans-serif;
  --font-heading: 'Righteous', cursive, sans-serif;
  --font-mono: 'Roboto Mono', monospace;
  --font-korean: 'Noto Sans KR', sans-serif;
  
  --border-gold: #ffd700;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--bg-outer-gray);
  color: var(--text-white);
  line-height: 1.6;
}

body {
  min-height: 100vh;
  background-color: var(--bg-outer-gray);
  display: flex;
  justify-content: center;
}

/* Centered Website Container with Gray Side Margin */
.page-wrapper {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  background-color: var(--bg-inner-black);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}

.container {
  padding: 0 2.5rem;
  width: 100%;
}

/* Header Area - Charcoal Dark Gray (#303030) */
.site-header {
  background-color: var(--bg-header);
  border-bottom: 1px solid #3d3d3d;
  padding: 1.75rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}

.brand-wrapper {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.brand-title-row {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--cito-gold);
  letter-spacing: 0.04em;
  line-height: 1;
}

.brand-korean {
  font-family: var(--font-korean);
  font-size: 1.8rem;
  color: var(--cito-gold);
  font-weight: 400;
}

.brand-tagline {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cito-gold);
  letter-spacing: 0.15em;
  margin-top: 0.35rem;
  text-transform: uppercase;
}

/* Top Right Contacts with Yellow Square Icons */
.header-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  font-size: 0.88rem;
}

.contact-item {
  color: var(--cito-gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  font-family: var(--font-main);
  transition: opacity 0.2s;
}

.contact-item:hover {
  opacity: 0.85;
  text-decoration: underline;
}

.contact-icon-sq {
  color: var(--cito-gold);
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-sq svg {
  width: 100%;
  height: 100%;
}

/* Hero Section */
.hero-section {
  padding: 2.25rem 0 0.5rem;
  text-align: center;
  background-color: var(--bg-inner-black);
}

.hero-logo-center {
  width: 320px;
  height: 320px;
  margin: 0 auto 1.5rem;
  display: block;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.hero-intro-p1 {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-white);
  max-width: 820px;
  margin: 0 auto 1.25rem;
  line-height: 1.5;
}

.hero-intro-p2 {
  font-family: var(--font-main);
  font-size: 1.15rem;
  color: var(--text-gray);
  max-width: 880px;
  margin: 0 auto 0.5rem;
  line-height: 1.6;
}

/* OUR PRODUCTS Section */
.products-section {
  padding: 0.5rem 0 3.5rem;
}

.section-heading-gold {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--cito-gold);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

/* Exact Beaver Builder Tab Accordion Box Layout */
.products-tab-container {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

@media (max-width: 768px) {
  .products-tab-container {
    flex-direction: column;
  }
}

/* Left Tab Column */
.tab-menu-col {
  display: flex;
  flex-direction: column;
  width: 240px;
  flex-shrink: 0;
  border: 2px solid var(--cito-gold);
  border-right: none;
  border-radius: 4px 0 0 4px;
  background-color: var(--bg-inner-black);
}

@media (max-width: 768px) {
  .tab-menu-col {
    width: 100%;
    border-right: 2px solid var(--cito-gold);
    border-bottom: none;
    border-radius: 4px 4px 0 0;
  }
}

.tab-menu-btn {
  background: transparent;
  color: var(--cito-gold);
  border: none;
  border-bottom: 2px solid var(--cito-gold);
  border-right: 2px solid var(--cito-gold);
  padding: 1rem 1.2rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s ease;
  outline: none;
}

.tab-menu-btn:last-child {
  border-bottom: none;
}

.tab-menu-btn:hover {
  color: #ffffff;
}

.tab-menu-btn.active {
  border-right-color: transparent;
  background-color: var(--bg-inner-black);
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .tab-menu-btn {
    border-right: none;
  }
  .tab-menu-btn.active {
    border-bottom-color: transparent;
  }
}

/* Right Content Box */
.tab-content-panel {
  flex: 1;
  border: 2px solid var(--cito-gold);
  border-left: 2px solid var(--cito-gold);
  background-color: var(--bg-inner-black);
  padding: 2.5rem;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0 4px 4px 0;
  margin-left: -2px;
}

@media (max-width: 768px) {
  .tab-content-panel {
    border-radius: 0 0 4px 4px;
    margin-left: 0;
    margin-top: -2px;
  }
}

.tab-app-title {
  color: var(--cito-gold);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.tab-app-desc {
  color: var(--cito-gold);
  font-family: var(--font-main);
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.tab-img-wrapper {
  text-align: center;
  margin-top: auto;
  padding-top: 1rem;
}

.tab-img-wrapper img {
  max-height: 220px;
  max-width: 100%;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

/* Location Map & Address Section */
.location-section {
  padding: 1.5rem 0 1.5rem;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--cito-gold);
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.contact-text-block {
  color: var(--text-gray);
  font-family: var(--font-main);
  font-size: 1.02rem;
  line-height: 1.7;
}

.contact-text-block p {
  margin-bottom: 1.2rem;
}

.company-title-bold {
  color: var(--text-white);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.address-details {
  color: var(--text-gray);
  line-height: 1.85;
}

.highlight-gold {
  color: var(--cito-gold);
  font-weight: 700;
}

/* Q&A Section */
.qa-section {
  padding: 1rem 0 4rem;
}

.qa-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text-white);
  margin-bottom: 1.75rem;
}

.qa-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group-label {
  color: var(--text-gray);
  font-size: 0.92rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  display: block;
}

.qa-input, .qa-textarea {
  width: 100%;
  background-color: #ffffff;
  color: #111111;
  border: 1px solid #cccccc;
  border-radius: 4px;
  padding: 0.8rem 1rem;
  font-family: var(--font-main);
  font-size: 1rem;
  outline: none;
}

.qa-input:focus, .qa-textarea:focus {
  border-color: var(--cito-gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.4);
}

.qa-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-btn-row {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.btn-send-gold {
  background: transparent;
  color: var(--cito-gold);
  border: none;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  transition: all 0.2s ease;
}

.btn-send-gold:hover {
  color: var(--text-white);
  transform: translateX(4px);
}

/* Floating WhatsApp Button */
.floating-wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: #ffffff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.5);
}

/* Footer */
.site-footer {
  background-color: var(--bg-footer);
  padding: 1.75rem 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--cito-gold);
  margin-top: auto;
  border-top: 1px solid #222;
}

.footer-link {
  color: var(--cito-gold);
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: #222;
  color: var(--cito-gold);
  border: 1px solid #444;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s;
  z-index: 900;
}

.scroll-top:hover {
  background: #333;
  color: #fff;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* Micro-animations */
.hero-logo-center {
  transition: transform 0.5s ease;
}
.hero-logo-center:hover {
  transform: scale(1.05);
}
