/* ============================================
   THREE AMIGOS KITCHEN CO. — MAIN STYLESHEET
   ============================================ */

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

:root {
  --saffron: #555555;
  --deep-red: #333333;
  --gold: #888888;
  --dark: #FFFFFF;
  --dark-card: #F5F5F5;
  --cream: #FAFAFA;
  --glass: rgba(0, 0, 0, 0.03);
  --glass-border: rgba(0, 0, 0, 0.08);
  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --gradient-1: linear-gradient(135deg, #222222 0%, #444444 50%, #666666 100%);
  --gradient-2: linear-gradient(135deg, #333333 0%, #555555 100%);
  --gradient-3: linear-gradient(135deg, #F5F5F5 0%, #EAEAEA 100%);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F5F5F5; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #AAA, #888);
  border-radius: 10px;
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  padding: 160px 60px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-header-bg .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.page-header-bg .shape-1 {
  width: 400px; height: 400px;
  background: var(--saffron);
  top: -100px; right: 10%;
  animation: float 8s ease-in-out infinite;
}

.page-header-bg .shape-2 {
  width: 350px; height: 350px;
  background: var(--deep-red);
  bottom: -80px; left: 10%;
  animation: float 10s ease-in-out infinite reverse;
}

.page-header-bg .grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.page-breadcrumb {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.page-breadcrumb a {
  color: var(--saffron);
  transition: color 0.3s;
}

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

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: #1A1A1A;
}

.page-header h1 .highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  padding: 12px 60px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.logo span {
  font-family: 'Dancing Script', cursive;
  font-size: 1.1rem;
  display: block;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: -6px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-2);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 60px;
  overflow: hidden;
  background: #FFFFFF;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.hero-bg-shapes .shape-1 {
  width: 500px; height: 500px;
  background: #E0E0E0;
  top: -150px; right: -100px;
  animation: float 8s ease-in-out infinite;
  opacity: 0.5;
}

.hero-bg-shapes .shape-2 {
  width: 400px; height: 400px;
  background: #D0D0D0;
  bottom: -100px; left: -100px;
  animation: float 10s ease-in-out infinite reverse;
  opacity: 0.4;
}

.hero-bg-shapes .shape-3 {
  width: 300px; height: 300px;
  background: #C8C8C8;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: float 6s ease-in-out infinite;
  opacity: 0.3;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #555;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: #555;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: -2px;
  color: #1A1A1A;
}

.hero-title .highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  color: #666;
  margin-bottom: 24px;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 40px;
}

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

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

.hero-image-wrapper {
  position: relative;
  width: 420px;
  height: 420px;
}

.hero-image-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.1);
  animation: spin 20s linear infinite;
}

.hero-image-ring::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 14px; height: 14px;
  background: #555;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px #555;
}

.hero-image-ring-2 {
  position: absolute;
  inset: -50px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 0, 0, 0.06);
  animation: spin 30s linear infinite reverse;
}

.hero-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #F5F5F5;
}

.hero-image-emoji {
  position: relative;
  z-index: 1;
  font-size: 10rem;
  line-height: 1;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 4s ease-in-out infinite;
  z-index: 3;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.floating-card-1 { bottom: 40px; left: -40px; animation-delay: 0s; }
.floating-card-2 { top: 20px; right: -30px; animation-delay: 1s; }

.floating-card .fc-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.fc-icon.orange { background: rgba(0, 0, 0, 0.05); }
.fc-icon.gold { background: rgba(0, 0, 0, 0.05); }

.floating-card .fc-text h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1A1A1A;
}

.floating-card .fc-text p {
  font-size: 0.72rem;
  color: #777;
}

/* ===== BUTTONS ===== */
.btn-primary {
  padding: 16px 36px;
  background: var(--gradient-2);
  color: #FFFFFF;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.btn-outline {
  padding: 16px 36px;
  background: transparent;
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline:hover {
  border-color: #555;
  color: #222;
  transform: translateY(-3px);
}

/* ===== SECTION COMMON ===== */
section { padding: 100px 60px; position: relative; }

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

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #555;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #1A1A1A;
}

.section-title .highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* ===== STATS ===== */
.stats-section {
  background: linear-gradient(135deg, #F5F5F5 0%, #EAEAEA 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: #999;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* ===== ABOUT ===== */
.about-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-area { position: relative; }

.about-image-box {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-box::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 22px;
  background: #F5F5F5;
}

.about-image-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px;
}

.about-image-content .chef-emoji {
  font-size: 7rem;
  display: block;
  margin-bottom: 20px;
}

.about-image-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
}

.about-image-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 8px;
}

.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 130px;
  height: 130px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-exp-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.about-exp-badge .txt {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.2;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: #1A1A1A;
}

.about-text h2 .highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text .about-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: all 0.3s;
}

.about-feature:hover {
  border-color: var(--saffron);
  transform: translateX(8px);
}

.about-feature .af-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-feature .af-text h4 { font-size: 0.9rem; font-weight: 600; }
.about-feature .af-text p { font-size: 0.78rem; color: var(--text-secondary); }

/* ===== SERVICES ===== */
.services-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 50%, #FFFFFF 100%);
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  padding: 44px 32px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--gradient-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

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

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  background: rgba(0, 0, 0, 0.05);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

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

.service-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.06);
  color: var(--gold);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== GALLERY ===== */
.gallery-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 20px;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
  transform: scale(1.03);
  border-color: #999;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.gallery-item:nth-child(1) { grid-row: span 2; }

.gallery-item .gi-emoji {
  font-size: 5rem;
  transition: transform 0.4s;
}

.gallery-item:hover .gi-emoji { transform: scale(1.15); }

.gallery-item .gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gi-overlay { opacity: 1; }

.gi-overlay h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.gi-overlay p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ===== PROCESS / TIMELINE ===== */
.process-section {
  background: linear-gradient(135deg, #F5F5F5 0%, #EAEAEA 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

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

.process-step {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
}

.process-step:nth-child(even) { flex-direction: row-reverse; }

.process-step .ps-content {
  flex: 1;
  padding: 32px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.process-step .ps-content:hover {
  border-color: #999;
  transform: translateY(-3px);
}

.process-step .ps-num {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 50px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: #FFFFFF;
  z-index: 2;
}

.ps-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.ps-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.ps-content .ps-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 100%);
}

.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 36px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 0, 0, 0.15);
}

.tc-stars {
  color: #888;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.tc-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tc-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.tc-name { font-weight: 600; font-size: 0.9rem; color: #1A1A1A; }
.tc-role { font-size: 0.78rem; color: #777; }

/* ===== CONTACT ===== */
.contact-section {
  background: linear-gradient(180deg, #F5F5F5 0%, #FFFFFF 100%);
}

.contact-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

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

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 8px;
}

.contact-info h3 .highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info > p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  transition: all 0.3s;
}

.contact-item:hover {
  border-color: #999;
  transform: translateX(8px);
}

.contact-item .ci-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item .ci-text h4 { font-size: 0.85rem; font-weight: 600; }
.contact-item .ci-text p { font-size: 0.82rem; color: var(--text-secondary); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-link {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--gradient-2);
  transform: translateY(-3px);
  border-color: #555;
  color: #FFFFFF;
}

.contact-form {
  padding: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  color: #1A1A1A;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: #555; }

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

.form-group select option {
  background: #F5F5F5;
  color: #1A1A1A;
}

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

.contact-form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 60px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: #FAFAFA;
}

.footer-content { max-width: 1100px; margin: 0 auto; }

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.footer-text {
  color: #777;
  font-size: 0.88rem;
}

.footer-text .heart { color: #999; }

.footer-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #CCC, #AAA);
  border-radius: 3px;
  margin: 20px auto;
}

.footer-bottom {
  color: #AAA;
  font-size: 0.78rem;
  margin-top: 12px;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== KEYFRAMES ===== */
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

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

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

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

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-2);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--dark);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  section { padding: 80px 30px; }
  .page-header { padding: 140px 30px 60px; }
  .navbar { padding: 16px 30px; }
  .navbar.scrolled { padding: 12px 30px; }
  .hero { padding: 100px 30px; }
  .hero-content { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-image-wrapper { width: 300px; height: 300px; }
  .hero-image-emoji { font-size: 7rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content { grid-template-columns: 1fr; gap: 50px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .gallery-item:nth-child(1) { grid-row: span 1; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-content { grid-template-columns: 1fr; }
  .process-timeline::before { left: 30px; }
  .process-step { flex-direction: column !important; gap: 20px; padding-left: 60px; }
  .process-step .ps-num { left: 30px; top: 0; transform: translateX(-50%); }
  .floating-card { display: none; }
}

@media (max-width: 640px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav-links.active { right: 0; }
  .hamburger { display: flex; }
  .hero-title { font-size: 2.5rem; letter-spacing: -1px; }
  .hero-subtitle { font-size: 1.3rem; }
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .stat-card { padding: 28px 20px; }
  .stat-number { font-size: 2.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-image-wrapper { width: 220px; height: 220px; }
  .about-text h2 { font-size: 2rem; }
  .contact-info h3 { font-size: 1.8rem; }
  .footer { padding: 30px 20px; }
  .page-header h1 { font-size: 2rem; }
}
