/* AREIA & CIA - MODERN DESIGN SYSTEM 2026 */

:root {
  --primary-yellow: #FFB800;
  --primary-hover: #E5A600;
  --dark-coal: #12151C;
  --dark-surface: #1E222D;
  --accent-blue: #0066FF;
  --whatsapp-green: #25D366;
  --whatsapp-hover: #20BD5A;
  --text-main: #1D2129;
  --text-muted: #656D7A;
  --bg-light: #F7F8FA;
  --bg-white: #FFFFFF;
  --border-color: #E2E8F0;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* TOP ANNOUNCEMENT BANNER */
.top-announcement {
  background-color: var(--dark-coal);
  color: #FFF;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 2px solid var(--primary-yellow);
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.badge-live {
  width: 8px;
  height: 8px;
  background-color: #00E676;
  border-radius: 50%;
  box-shadow: 0 0 8px #00E676;
}

.announcement-link {
  color: var(--primary-yellow);
  font-weight: 700;
  text-decoration: none;
}

/* TRUCK LOOP STRIP */
.announcement-truck-strip {
  position: relative;
  height: 44px;
  overflow: hidden;
  border-top: 1px solid rgba(255,184,0,0.25);
}

.truck-loop {
  position: absolute;
  bottom: 2px;
  left: -20%;
  width: 110px;
  animation: truck-loop-move 7s linear infinite;
}

@keyframes truck-loop-move {
  from { left: -20%; }
  to { left: 105%; }
}

.truck-loop-svg {
  width: 100%;
  height: auto;
  display: block;
}

.truck-loop-wheel {
  transform-box: fill-box;
  transform-origin: center;
  animation: truck-loop-wheel-spin 0.4s linear infinite;
}

@keyframes truck-loop-wheel-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .truck-loop { animation: none; left: 40%; }
  .truck-loop-wheel { animation: none; }
}

/* HEADER */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  text-decoration: none;
}

.logo-box {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--dark-coal);
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 10px;
  font-weight: 700;
  color: var(--primary-hover);
  letter-spacing: 1.5px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--dark-coal);
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.social-icon-btn:hover {
  background: var(--primary-yellow);
  border-color: var(--primary-yellow);
  transform: translateY(-1px);
}

/* JINGLE PILL */
.jingle-player-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #FFF8E6;
  border: 1px solid #FFE082;
  padding: 6px 14px;
  border-radius: 50px;
}

.jingle-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-yellow);
  border: none;
  color: var(--dark-coal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.jingle-btn:hover {
  transform: scale(1.08);
}

.jingle-text {
  display: flex;
  flex-direction: column;
}

.jingle-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark-coal);
}

.jingle-sub {
  font-size: 10px;
  color: #8C6D00;
  font-weight: 600;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #FFF;
  padding: 10px 18px;
  font-size: 14px;
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-1px);
}

.btn-primary-lg {
  background-color: var(--primary-yellow);
  color: var(--dark-coal);
  padding: 16px 28px;
  font-size: 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3);
}

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

.btn-secondary-lg {
  background-color: rgba(255, 255, 255, 0.15);
  color: #FFF;
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  font-size: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary-lg:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.btn-whatsapp-xl {
  background-color: var(--whatsapp-green);
  color: #FFF;
  padding: 18px 36px;
  font-size: 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
}

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

/* HERO BANNER SECTION */
.hero-banner {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  padding: 100px 0 120px 0;
  color: #FFF;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(18, 21, 28, 0.92) 0%, rgba(18, 21, 28, 0.75) 60%, rgba(18, 21, 28, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text-block {
  max-width: 680px;
}

.tag-pill {
  display: inline-block;
  background: rgba(255, 184, 0, 0.2);
  border: 1px solid var(--primary-yellow);
  color: var(--primary-yellow);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-text-block h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-text-block h1 .highlight {
  color: var(--primary-yellow);
}

.hero-subtitle {
  font-size: 18px;
  color: #D1D5DB;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  padding: 16px 28px;
  border-radius: var(--radius-md);
  width: fit-content;
  border: 1px solid rgba(255,255,255,0.1);
}

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

.trust-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-yellow);
}

.trust-lbl {
  font-size: 12px;
  color: #A0AEC0;
}

.trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.2);
}

/* FEATURES BAR */
.features-bar {
  background: var(--bg-white);
  padding: 30px 0;
  border-bottom: 1px solid var(--border-color);
  margin-top: -30px;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon {
  font-size: 32px;
  background: #FFF8E6;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.feature-card h4 {
  font-size: 16px;
  font-weight: 700;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
}

/* PRODUCTS SECTION */
.products-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-eyebrow {
  color: var(--primary-hover);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--dark-coal);
  margin: 8px 0;
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
}

.products-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.product-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bg-light);
  color: var(--text-muted);
  border-bottom: 1px dashed var(--border-color);
}

.product-img-placeholder span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--dark-coal);
  color: var(--primary-yellow);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-info p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.product-features {
  list-style: none;
  margin-bottom: 20px;
  margin-top: auto;
}

.product-features li {
  font-size: 13px;
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 4px;
}

.btn-card-cta {
  display: block;
  text-align: center;
  background: #F1F5F9;
  color: var(--dark-coal);
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-card-cta:hover {
  background: var(--primary-yellow);
}

/* APPLICATIONS SECTION */
.applications-section {
  padding: 60px 0 80px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.app-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.app-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.app-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary-yellow);
  color: var(--dark-coal);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.app-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.app-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.app-info p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* SCHEDULE SECTION */
.schedule-section {
  background: var(--dark-coal);
  color: #FFF;
  padding: 80px 0;
  border-radius: 30px;
  margin: 40px 0;
}

.schedule-header {
  text-align: center;
  margin-bottom: 40px;
}

.badge-accent {
  background: rgba(255,184,0,0.15);
  color: var(--primary-yellow);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.schedule-header h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin: 10px 0;
}

.schedule-header p {
  color: #9CA3AF;
}

.schedule-board {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.board-column {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--dark-surface);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.05);
}

.board-box {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.board-lbl {
  font-size: 11px;
  font-weight: 700;
  color: #9CA3AF;
  letter-spacing: 1px;
}

.board-time {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-yellow);
}

.board-arrow-modern {
  font-size: 24px;
  color: var(--primary-yellow);
}

.board-divider-h {
  height: 1px;
  background: rgba(255,255,255,0.1);
}

/* REVIEWS */
.reviews-section {
  padding: 60px 0;
}

.reviews-box {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  border: 1px solid var(--border-color);
}

.google-logo {
  font-size: 24px;
  font-weight: 800;
  color: #4285F4;
}

.rating-stars {
  color: #FFB800;
  font-size: 20px;
  margin: 8px 0;
}

.rating-number {
  font-size: 36px;
  font-weight: 800;
}

.rating-number span {
  font-size: 16px;
  color: var(--text-muted);
}

.rating-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.btn-outline {
  border: 1px solid var(--border-color);
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-main);
}

.reviews-cards-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card {
  background: var(--bg-light);
  padding: 20px;
  border-radius: var(--radius-sm);
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.review-header .stars {
  color: #FFB800;
  font-size: 14px;
}

/* FINAL CTA */
.final-cta-section {
  background: linear-gradient(135deg, #1E222D 0%, #12151C 100%);
  color: #FFF;
  text-align: center;
  padding: 80px 20px;
  border-radius: 24px;
  margin-bottom: 60px;
}

.final-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  margin-bottom: 12px;
}

.final-cta-inner p {
  color: #9CA3AF;
  font-size: 18px;
  margin-bottom: 32px;
}

/* FOOTER */
.site-footer {
  background: var(--dark-coal);
  color: #9CA3AF;
  padding: 60px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #FFF;
  display: block;
  margin-bottom: 12px;
}

.footer-col-info h4, .footer-col-social h4 {
  color: #FFF;
  margin-bottom: 16px;
}

.footer-col-info p {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-col-info a {
  color: var(--primary-yellow);
  text-decoration: none;
}

.social-link {
  display: block;
  color: #9CA3AF;
  text-decoration: none;
  margin-bottom: 8px;
}

.social-link:hover {
  color: var(--primary-yellow);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  font-size: 13px;
}

/* FLOAT WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--whatsapp-green);
  color: #FFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-text-block h1 { font-size: 32px; }
  .board-column { flex-direction: column; text-align: center; }
  .reviews-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .jingle-player-pill { display: none; }
}
