/* ===========================
   YOU NAME IT — style.css
   =========================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:       #0f1729;
  --navy-mid:   #162038;
  --navy-card:  #1a2540;
  --cyan:       #28b8e8;
  --cyan-dark:  #1a9fc8;
  --white:      #ffffff;
  --off-white:  #f4f7fb;
  --light-blue: #e8f4fb;
  --text-dark:  #0f1729;
  --text-mid:   #4a5568;
  --text-light: #a0aec0;
  --border:     #e2e8f0;

  --font: 'Inter', 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.25rem; font-weight: 700; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
  display: block;
}

/* --- Layout --- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

/* ===========================
   NAVIGATION
   =========================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo-text {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-logo-text span { color: var(--cyan); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--cyan);
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 10px 22px;
  border-radius: 8px;
  transition: background var(--transition) !important;
}

.nav-cta:hover { background: var(--cyan-dark) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--cyan-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(40,184,232,0.35);
}

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

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

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

.btn-outline:hover {
  background: var(--cyan);
  color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  font-size: 1rem;
  padding: 15px 32px;
}

.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* ===========================
   HERO
   =========================== */
.hero {
  background: var(--navy);
  padding: 148px 0 90px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}

.hero-eyebrow span { margin: 0 8px; opacity: 0.5; }

.hero h1 { color: var(--white); margin-bottom: 20px; }

.hero h1 em {
  color: var(--cyan);
  font-style: normal;
}

.hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 420px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero product grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hero-card {
  background: var(--navy-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.hero-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-card-label {
  position: relative;
  z-index: 1;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

/* ===========================
   WHAT WE CREATE (HOME)
   =========================== */
.what-we-create {
  background: var(--off-white);
  padding: 64px 0;
}

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

.section-header h2 { margin-top: 8px; }

/* ── Icon tile grid ── */
.icon-tile-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.icon-tile {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}

.icon-tile:hover {
  border-color: var(--cyan);
  box-shadow: 0 4px 16px rgba(40,184,232,0.12);
  transform: translateY(-2px);
}

.tile-icon {
  width: 28px;
  height: 28px;
  color: var(--cyan);
  flex-shrink: 0;
}

.icon-tile span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.3;
}

/* ── Hero rotating card / slideshow ── */
.hero-grid-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Slides stack inside each card */
.rotating-card { overflow: hidden; }

.rotating-card .slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.rotating-card .slide.active {
  opacity: 1;
  pointer-events: auto;
}

.rotating-card .slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Progress dots */
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 4px;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.hero-dot.active {
  background: var(--cyan);
  transform: scale(1.3);
}

/* keep old product-card classes available for services page if needed */
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,18,38,0.85) 0%, transparent 55%);
}

.product-card-label {
  position: relative;
  z-index: 1;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-align: center;
}

/* ===========================
   FEATURE SECTION (HOME)
   =========================== */
.feature-section {
  background: var(--white);
}

.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-content .section-label { color: var(--cyan); }

.feature-content h2 { margin: 8px 0 20px; }

.feature-content p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

/* Button group — side by side buttons */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Sub-grouped tags (e.g. Indoor / Outdoor within Event Merch) */
.tag-group {
  margin-bottom: 16px;
}

.tag-group:last-of-type {
  margin-bottom: 32px;
}

.tag-group-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.tag-group .tag-row {
  margin-bottom: 0;
}

.tag {
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  transition: all var(--transition);
}

.tag:hover {
  background: var(--cyan);
  color: var(--white);
  cursor: pointer;
}

.feature-image {
  background: var(--navy-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
}

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

.feature-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
}

.feature-image-placeholder span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ===========================
   HOW IT WORKS
   =========================== */
.how-it-works {
  background: var(--off-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan));
  opacity: 0.25;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto 20px;
}

.step-card h3 {
  margin-bottom: 12px;
  color: var(--text-dark);
}

.step-card p {
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  background: var(--navy);
  padding: 80px 0;
}

.testimonials .section-label { text-align: center; display: block; }

.testimonials h2 {
  color: var(--white);
  text-align: center;
  margin: 8px 0 56px;
}

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

.testimonial-card {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.testimonial-stars {
  color: var(--cyan);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-author span {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
}

/* ===========================
   CTA BAND
   =========================== */
.cta-band {
  background: var(--light-blue);
  padding: 72px 0;
  text-align: center;
}

.cta-band h2 { margin-bottom: 12px; }

.cta-band p {
  color: var(--text-mid);
  font-size: 1rem;
  margin-bottom: 32px;
}

/* ===========================
   SERVICES PAGE
   =========================== */
.services-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  text-align: center;
}

.services-hero .section-label { display: block; }

.services-hero h1 {
  color: var(--white);
  margin: 12px 0 16px;
}

.services-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.services-list { background: var(--white); }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.service-block:last-child { border-bottom: none; }

.service-block.reverse { direction: rtl; }

.service-block.reverse > * { direction: ltr; }

.service-content h2 {
  color: var(--cyan);
  font-size: 1.7rem;
  margin-bottom: 14px;
}

.service-content p {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

.service-image {
  background: var(--navy-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  border: 1px solid rgba(255,255,255,0.05);
}

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

.unsure-band {
  background: var(--light-blue);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  margin: 48px 0;
}

.unsure-band h2 { margin-bottom: 10px; }

.unsure-band p {
  color: var(--text-mid);
  margin-bottom: 28px;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  text-align: center;
}

.contact-hero h1 { color: var(--white); margin: 8px 0 0; }

.whatsapp-section {
  background: #f0faf4;
  padding: 72px 0;
  text-align: center;
  border-bottom: 1px solid #d1f0de;
}

.whatsapp-icon {
  width: 72px;
  height: 72px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.whatsapp-icon svg { width: 38px; height: 38px; fill: white; }

.whatsapp-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.whatsapp-section p {
  color: var(--text-mid);
  font-size: 1rem;
  margin-bottom: 28px;
}

.whatsapp-section .phone-note {
  display: block;
  margin-top: 12px;
  color: var(--text-mid);
  font-size: 0.85rem;
}

.divider-text {
  text-align: center;
  padding: 32px 0 0;
  color: var(--text-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
}

.divider-text::before,
.divider-text::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: var(--border);
}

.divider-text::before { left: 0; }
.divider-text::after { right: 0; }

/* Form section */
.form-section {
  background: var(--white);
  padding: 72px 0;
}

.form-wrap {
  max-width: 620px;
  margin: 0 auto;
}

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

.form-header h2 { margin-bottom: 10px; }

.form-header p { color: var(--text-mid); }

.quote-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group label .required { color: var(--cyan); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-family: var(--font);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input,
.form-group select {
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(40,184,232,0.12);
}

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a5568' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 1rem;
  margin-top: 4px;
}

.form-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 500;
}

.trust-item::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 800;
}

/* Form success message */
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  background: #f0faf4;
  border-radius: var(--radius-lg);
  border: 1.5px solid #25D366;
}

.form-success h3 { color: #1a7a40; margin-bottom: 8px; }
.form-success p { color: var(--text-mid); }

/* ===========================
   FOOTER
   =========================== */
footer {
  background: var(--navy);
  padding: 56px 0 32px;
}

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

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

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

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-col address {
  font-style: normal;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-col address a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col address a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .icon-tile-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-inner { gap: 48px; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }

  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 20px 24px 24px; gap: 0; border-top: 1px solid rgba(255,255,255,0.08); }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links li:last-child { border-bottom: none; padding-top: 16px; }
  .nav-cta { width: 100%; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }

  .hero { padding: 120px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-grid { grid-template-columns: 1fr 1fr; }

  .feature-inner { grid-template-columns: 1fr; gap: 36px; }

  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .steps-grid::before { display: none; }

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

  .service-block { grid-template-columns: 1fr; gap: 32px; }
  .service-block.reverse { direction: ltr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

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

  .divider-text::before,
  .divider-text::after { width: 20%; }
}

@media (max-width: 768px) {
  .icon-tile-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .icon-tile { padding: 16px 8px 12px; }
  .tile-icon { width: 24px; height: 24px; }
  .icon-tile span { font-size: 0.66rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .icon-tile-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
}
