/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --coffee-dark: #2C1810;
  --coffee-brown: #3E2723;
  --coffee-medium: #5D4037;
  --coffee-light: #8D6E63;
  --coffee-cream: #D7CCC8;
  --coffee-latte: #EFEBE9;
  --coffee-white: #FFF8F0;
  --accent-gold: #C6893F;
  --accent-gold-light: #D4A668;
  --accent-green: #2E7D32;
  --text-dark: #1A1A1A;
  --text-medium: #4A4A4A;
  --text-light: #717171;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.08);
  --shadow-md: 0 4px 20px rgba(44, 24, 16, 0.12);
  --shadow-lg: 0 8px 40px rgba(44, 24, 16, 0.16);
  --shadow-xl: 0 12px 60px rgba(44, 24, 16, 0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--coffee-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--coffee-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

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

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--coffee-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.coffee-cup-loader {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border: 4px solid var(--coffee-light);
  border-top: 4px solid var(--accent-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.preloader-content p {
  color: var(--coffee-cream);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(44, 24, 16, 0.95);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo-icon {
  width: 45px;
  height: 45px;
}

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

.logo-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--accent-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  letter-spacing: 0.5px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.nav-cta {
  background: var(--accent-gold) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--accent-gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(198, 137, 63, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--coffee-dark) 0%, var(--coffee-brown) 50%, var(--coffee-medium) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-text {
  animation: fadeInUp 1s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(198, 137, 63, 0.15);
  border: 1px solid rgba(198, 137, 63, 0.3);
  color: var(--accent-gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.hero-badge i {
  font-size: 0.7rem;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--accent-gold);
  display: block;
}

.hero p {
  font-size: 1.15rem;
  color: var(--coffee-cream);
  margin-bottom: 35px;
  line-height: 1.8;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--coffee-cream);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeInRight 1s ease;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-coffee-svg {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.3));
  animation: float 4s ease-in-out infinite;
}

.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatBadge 3s ease-in-out infinite;
}

.floating-badge.badge-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0.5s;
}

.floating-badge.badge-2 {
  bottom: 15%;
  left: -5%;
  animation-delay: 1s;
}

.floating-badge .badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.floating-badge .badge-icon.gold {
  background: rgba(198, 137, 63, 0.15);
  color: var(--accent-gold);
}

.floating-badge .badge-icon.green {
  background: rgba(46, 125, 50, 0.15);
  color: var(--accent-green);
}

.floating-badge .badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
}

.floating-badge .badge-sub {
  font-size: 0.65rem;
  color: var(--text-light);
  font-weight: 400;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(198, 137, 63, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-3px);
}

.btn-dark {
  background: var(--coffee-dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--coffee-brown);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline-dark {
  background: transparent;
  color: var(--coffee-dark);
  border: 2px solid var(--coffee-dark);
}

.btn-outline-dark:hover {
  background: var(--coffee-dark);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(198, 137, 63, 0.1);
  color: var(--accent-gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-medium);
  line-height: 1.8;
}

/* ===== SERVICES / WHY US ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(44, 24, 16, 0.06);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--coffee-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(198, 137, 63, 0.1), rgba(198, 137, 63, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--accent-gold);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--accent-gold);
  color: var(--white);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.service-card p {
  color: var(--text-medium);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  background: var(--coffee-latte);
}

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

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(44, 24, 16, 0.06);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.product-image {
  height: 240px;
  background: linear-gradient(135deg, var(--coffee-latte), var(--coffee-cream));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-image svg {
  width: 120px;
  height: 160px;
  opacity: 0.9;
}

.product-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-gold);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-content {
  padding: 25px;
}

.product-content h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.product-content .product-for {
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.product-content p {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.product-specs {
  display: flex;
  gap: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--coffee-latte);
  flex-wrap: wrap;
}

.spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--text-light);
}

.spec i {
  color: var(--accent-gold);
  font-size: 0.7rem;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 15px;
}

.product-link:hover {
  gap: 10px;
}

/* ===== BRANDS TRUSTED ===== */
.brands-section {
  background: var(--coffee-dark);
  padding: 60px 0;
}

.brands-section .section-header h2 {
  color: var(--white);
}

.brands-section .section-header p {
  color: var(--coffee-cream);
}

.brands-marquee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.brand-item {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
}

.brand-item:hover {
  color: var(--accent-gold);
}

/* ===== TESTIMONIAL / CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--coffee-dark) 0%, var(--coffee-brown) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(198, 137, 63, 0.08);
}

.cta-section h2 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 15px;
}

.cta-section p {
  color: var(--coffee-cream);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 35px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

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

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.why-item-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 50%;
  background: rgba(198, 137, 63, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1rem;
}

.why-item-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-item-text p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.why-visual {
  background: linear-gradient(135deg, var(--coffee-latte), var(--coffee-cream));
  border-radius: var(--radius-xl);
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
}

.why-visual svg {
  max-width: 300px;
}

/* ===== ABOUT PAGE ===== */
.page-hero {
  min-height: 50vh;
  background: linear-gradient(135deg, var(--coffee-dark) 0%, var(--coffee-brown) 50%, var(--coffee-medium) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 80px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.page-hero h1 {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--coffee-cream);
  max-width: 600px;
  margin: 0 auto;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--coffee-light);
}

.breadcrumb a {
  color: var(--accent-gold);
}

.breadcrumb span {
  color: var(--coffee-cream);
}

/* About content */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro-text h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.about-intro-text p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-image {
  background: linear-gradient(135deg, var(--coffee-latte), var(--coffee-cream));
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--coffee-cream);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 3px solid var(--coffee-white);
  z-index: 2;
}

.timeline-content {
  flex: 1;
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 5px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* ===== COUNTER ===== */
.counter-section {
  background: var(--coffee-dark);
  padding: 70px 0;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.counter-item h3 {
  font-size: 3rem;
  color: var(--accent-gold);
  font-weight: 800;
  margin-bottom: 5px;
}

.counter-item p {
  color: var(--coffee-cream);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== CAREERS PAGE ===== */
.careers-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.careers-intro h2 {
  font-size: 2.3rem;
  margin-bottom: 15px;
}

.careers-intro p {
  color: var(--text-medium);
  line-height: 1.8;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.job-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid rgba(44, 24, 16, 0.06);
  transition: var(--transition);
}

.job-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.job-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.job-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.job-meta span {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-meta span i {
  color: var(--accent-gold);
}

.job-card p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(44, 24, 16, 0.06);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.benefit-card i {
  font-size: 2rem;
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.benefit-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.82rem;
  color: var(--text-medium);
  line-height: 1.5;
}

/* ===== CONTACT & ENQUIRY ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-info-card .icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: rgba(198, 137, 63, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.contact-info-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.contact-info-card a:hover {
  color: var(--accent-gold);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.contact-form > p {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--coffee-latte);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  background: var(--coffee-white);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(198, 137, 63, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-submit {
  margin-top: 10px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
}

/* Map */
.map-section {
  padding: 0;
  margin-top: -1px;
}

.map-container {
  width: 100%;
  height: 400px;
  background: var(--coffee-latte);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

/* ===== FOOTER ===== */
.footer {
  background: var(--coffee-dark);
  color: var(--coffee-cream);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-about .logo {
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--coffee-light);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coffee-cream);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent-gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--coffee-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.88rem;
  color: var(--coffee-light);
}

.footer-contact li i {
  color: var(--accent-gold);
  margin-top: 3px;
  min-width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--coffee-light);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--coffee-light);
}

.footer-bottom-links a:hover {
  color: var(--accent-gold);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: none;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(198, 137, 63, 0.4);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  background: var(--coffee-dark);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #128C7E;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== FREE DEMO BANNER ===== */
.demo-banner {
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
  padding: 12px 20px;
  text-align: center;
  position: relative;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.demo-banner.hidden {
  display: none;
}

.demo-banner-close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.9;
  line-height: 1;
  padding: 0;
  z-index: 1002;
}

.demo-banner-close:hover {
  opacity: 1;
  background: rgba(255,255,255,0.35);
}

.demo-banner p {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

.demo-banner a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 700;
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }

  .hero-text {
    max-width: 600px;
    margin: 0 auto;
  }

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

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--coffee-dark);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 25px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.3);
  }

  .nav-links.active {
    right: 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .section {
    padding: 70px 0;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: 2.3rem;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: column;
    text-align: left;
    padding-left: 50px;
  }

  .timeline-dot {
    left: 20px;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .counter-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brands-marquee {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    justify-content: center;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .counter-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== SUCCESS MESSAGE ===== */
.form-success {
  display: none;
  background: rgba(46, 125, 50, 0.1);
  border: 1px solid rgba(46, 125, 50, 0.3);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  color: var(--accent-green);
  font-weight: 600;
}

.form-success.show {
  display: block;
}

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-detail-image {
  background: linear-gradient(135deg, var(--coffee-latte), var(--coffee-cream));
  border-radius: var(--radius-xl);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.product-detail-info h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.product-detail-info .product-for {
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  margin-bottom: 20px;
}

.product-detail-info p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 15px;
}

.product-features {
  margin: 25px 0;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-medium);
}

.product-features li i {
  color: var(--accent-gold);
  font-size: 0.8rem;
}

/* Products page overview */
.products-overview {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.products-overview p {
  color: var(--text-medium);
  line-height: 1.8;
}

/* ===== ENQUIRY SPECIFIC ===== */
.enquiry-section {
  background: var(--coffee-latte);
}

.enquiry-highlight {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(198, 137, 63, 0.1);
  border: 1px solid rgba(198, 137, 63, 0.2);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 30px;
}

.enquiry-highlight i {
  font-size: 2rem;
  color: var(--accent-gold);
}

.enquiry-highlight h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.enquiry-highlight p {
  font-size: 0.85rem;
  color: var(--text-medium);
}

/* ===== COST ESTIMATOR SECTION ===== */
.estimator-section {
  background: linear-gradient(135deg, #FFF8F0 0%, #EFEBE9 100%);
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 35px;
  align-items: stretch;
}

.estimator-input-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(44, 24, 16, 0.06);
}

.estimator-input-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.estimator-input-header i {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(198, 137, 63, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.estimator-input-header h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.estimator-desc {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.estimator-field {
  margin-bottom: 25px;
}

.estimator-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.estimator-input-wrapper {
  display: flex;
  align-items: center;
  border: 2px solid var(--coffee-cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.estimator-input-wrapper:focus-within {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(198, 137, 63, 0.1);
}

.estimator-input-wrapper input {
  flex: 1;
  border: none;
  padding: 14px 16px;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  text-align: center;
  color: var(--coffee-dark);
  background: transparent;
  outline: none;
  -moz-appearance: textfield;
}

.estimator-input-wrapper input::-webkit-outer-spin-button,
.estimator-input-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.estimator-btn-minus,
.estimator-btn-plus {
  width: 50px;
  height: 54px;
  border: none;
  background: var(--coffee-latte);
  color: var(--coffee-dark);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}

.estimator-btn-minus:hover,
.estimator-btn-plus:hover {
  background: var(--accent-gold);
  color: var(--white);
}

.estimator-assumptions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.assumption {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.assumption i {
  color: var(--accent-gold);
  font-size: 0.75rem;
  width: 18px;
  text-align: center;
}

/* Estimator Output */
.estimator-output-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(44, 24, 16, 0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.estimator-result-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.estimator-result-row.secondary {
  padding-top: 15px;
  border-top: 1px solid var(--coffee-latte);
}

.estimator-result-item {
  background: var(--coffee-latte);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  text-align: center;
  transition: all 0.4s ease;
}

.estimator-result-item.highlight {
  background: linear-gradient(135deg, var(--coffee-dark), var(--coffee-brown));
}

.estimator-result-item.highlight .result-label,
.estimator-result-item.highlight .result-sub {
  color: var(--coffee-cream);
}

.estimator-result-item.highlight .result-value {
  color: var(--accent-gold);
}

.result-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.result-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--coffee-dark);
  line-height: 1.1;
  transition: all 0.4s ease;
}

.result-sub {
  display: block;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 4px;
}

.estimator-result-item.small {
  padding: 15px;
}

.estimator-result-item.small .result-value {
  font-size: 1.6rem;
}

.estimator-affordable {
  background: rgba(46, 125, 50, 0.06);
  border: 1px solid rgba(46, 125, 50, 0.15);
  border-radius: var(--radius-md);
  padding: 18px;
}

.affordable-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 125, 50, 0.12);
  color: var(--accent-green);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.affordable-text {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.estimator-cta {
  align-self: center;
  margin-top: 5px;
  margin-bottom: 20px;
}

/* ===== COST BREAKDOWN SECTION ===== */
.breakdown-section {
  background: var(--coffee-dark);
  position: relative;
  overflow: hidden;
}

.breakdown-section .section-header h2 {
  color: var(--white);
}

.breakdown-section .section-header p {
  color: var(--coffee-cream);
}

.breakdown-section .section-badge {
  background: rgba(198, 137, 63, 0.15);
}

.breakdown-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

/* Cup Visual */
.breakdown-cup-area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.cup-visual {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.cup-svg {
  width: 100%;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.3));
}

/* Interactive cup layers */
.cup-layer {
  transition: opacity 0.6s ease;
  cursor: pointer;
}

.cup-layer.filled {
  opacity: 0.85;
}

.cup-layer.filled:hover {
  opacity: 1;
  filter: brightness(1.15);
}

.cup-layer.filled.dimmed {
  opacity: 0.3;
}

.cup-layer.filled.active-layer {
  opacity: 1;
  filter: brightness(1.2);
}

/* Cursor-following tooltip */
.cup-cursor-tooltip {
  position: absolute;
  pointer-events: none;
  background: rgba(44, 24, 16, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--accent-gold);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  opacity: 0;
  transform: translate(-50%, -120%) scale(0.85);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
  white-space: nowrap;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.cup-cursor-tooltip.visible {
  opacity: 1;
  transform: translate(-50%, -120%) scale(1);
}

.cup-tip-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--coffee-cream);
  letter-spacing: 0.5px;
}

.cup-tip-cost {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-gold);
}

/* Hover hint */
.cup-hover-hint {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(198, 137, 63, 0.15);
  border: 1px solid rgba(198, 137, 63, 0.3);
  color: var(--accent-gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 5;
  animation: hintPulse 2.5s ease-in-out infinite;
}

.cup-hover-hint.visible {
  opacity: 1;
}

.cup-hover-hint.hidden {
  opacity: 0 !important;
}

.cup-hover-hint i {
  margin-right: 6px;
  animation: pointBounce 1.5s ease-in-out infinite;
}

@keyframes pointBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes hintPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198, 137, 63, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(198, 137, 63, 0); }
}

.cup-total-badge {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  opacity: 0;
  transition: all 0.8s ease;
  pointer-events: none;
  background: var(--accent-gold);
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 20px rgba(198, 137, 63, 0.4);
  white-space: nowrap;
}

.cup-total-badge.visible {
  opacity: 1;
}

.cup-total-badge.faded {
  opacity: 0.2;
}

.cup-total-amount {
  display: inline;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.cup-total-label {
  display: inline;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: 4px;
}

/* Steam animations */
.steam {
  animation: steamRise 3s ease-in-out infinite;
}

.steam-1 { animation-delay: 0s; }
.steam-2 { animation-delay: 0.5s; }
.steam-3 { animation-delay: 1s; }

@keyframes steamRise {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 0.4; }
  60% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-15px); }
}

/* Coffee Fill animation */
#coffeeFill {
  transition: y 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Breakdown Items */
.breakdown-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.breakdown-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.5s ease;
}

.breakdown-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.breakdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(198, 137, 63, 0.3);
}

.breakdown-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
}

.breakdown-item-icon.milk { background: rgba(100, 181, 246, 0.2); color: #64B5F6; }
.breakdown-item-icon.decoction { background: rgba(198, 137, 63, 0.2); color: #C6893F; }
.breakdown-item-icon.sugar { background: rgba(255, 183, 77, 0.2); color: #FFB74D; }
.breakdown-item-icon.cup { background: rgba(129, 199, 132, 0.2); color: #81C784; }
.breakdown-item-icon.others { background: rgba(186, 104, 200, 0.2); color: #BA68C8; }

.breakdown-item-info {
  flex: 1;
}

.breakdown-item-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.breakdown-qty {
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--coffee-light);
}

.breakdown-item-info p {
  font-size: 0.78rem;
  color: var(--coffee-light);
  line-height: 1.4;
}

.breakdown-item-cost {
  text-align: right;
  min-width: 80px;
}

.cost-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 5px;
}

.cost-bar {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-left: auto;
}

.cost-bar-fill {
  height: 100%;
  width: 0;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: width 1s ease 0.3s;
}

.breakdown-item.visible .cost-bar-fill {
  width: var(--fill-width);
}

.breakdown-tooltip {
  position: relative;
  cursor: help;
}

.breakdown-tooltip:hover::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coffee-dark);
  color: var(--coffee-cream);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 400;
  white-space: nowrap;
  z-index: 10;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(198, 137, 63, 0.2);
}

/* Breakdown Total */
.breakdown-total {
  margin-top: 5px;
}

.breakdown-total-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 137, 63, 0.4), transparent);
  margin-bottom: 15px;
}

.breakdown-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: rgba(198, 137, 63, 0.1);
  border: 1px solid rgba(198, 137, 63, 0.2);
  border-radius: var(--radius-md);
}

.breakdown-total-label {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.breakdown-total-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-gold);
}

/* Breakdown Bottom */
.breakdown-bottom {
  text-align: center;
  margin-top: 50px;
}

.breakdown-message {
  display: inline-flex;
  align-items: flex-start;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 20px 30px;
  max-width: 700px;
  margin: 0 auto 25px;
  text-align: left;
}

.breakdown-message i {
  color: var(--accent-gold);
  font-size: 1.3rem;
  margin-top: 2px;
  min-width: 20px;
}

.breakdown-message p {
  font-size: 0.92rem;
  color: var(--coffee-cream);
  line-height: 1.7;
}

/* Disclaimer styles */
.estimator-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 193, 7, 0.08);
  border-left: 3px solid #FFC107;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin-top: 0;
}

.estimator-disclaimer i {
  color: #FFC107;
  font-size: 1rem;
  margin-top: 2px;
  min-width: 16px;
}

.estimator-disclaimer p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}

.estimator-disclaimer a {
  color: var(--accent-gold);
  font-weight: 600;
}

.estimator-disclaimer a:hover {
  text-decoration: underline;
}

.breakdown-disclaimer {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 193, 7, 0.06);
  border-left: 3px solid #FFC107;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 24px;
  max-width: 700px;
  margin: 0 auto 0;
  text-align: left;
}

.breakdown-disclaimer i {
  color: #FFC107;
  font-size: 1rem;
  margin-top: 2px;
  min-width: 16px;
}

.breakdown-disclaimer p {
  font-size: 0.82rem;
  color: var(--coffee-light);
  line-height: 1.6;
}

.breakdown-disclaimer a {
  color: var(--accent-gold);
  font-weight: 600;
}

.breakdown-disclaimer a:hover {
  text-decoration: underline;
}

/* Breakdown item highlight sync */
.breakdown-item.layer-active {
  background: rgba(198, 137, 63, 0.15) !important;
  border-color: rgba(198, 137, 63, 0.4) !important;
  transform: translateX(8px);
}

.breakdown-item.layer-dimmed {
  opacity: 0.35;
}

/* Responsive for Estimator & Breakdown */
@media (max-width: 1024px) {
  .estimator-grid {
    grid-template-columns: 1fr;
  }

  .breakdown-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .breakdown-cup-area {
    order: -1;
  }

  .cup-visual {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .estimator-result-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .result-value {
    font-size: 1.8rem;
  }

  .estimator-result-item.small .result-value {
    font-size: 1.4rem;
  }

  .cup-total-amount {
    font-size: 2.2rem;
  }

  .cup-visual {
    max-width: 220px;
  }

  .breakdown-item {
    padding: 12px 15px;
  }

  .breakdown-message {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .estimator-input-card,
  .estimator-output-card {
    padding: 25px 18px;
  }

  .estimator-btn-minus,
  .estimator-btn-plus {
    width: 44px;
  }
}
