/* BRANDCARE CREATIVES - Main Stylesheet */
/* Brand colours from official logo: Yellow + Blue */

:root {
  --yellow: #FFCC00;
  --yellow-dark: #E6B800;
  --blue: #1E3A8A;
  --blue-bright: #2563EB;
  --blue-dark: #1E3A8A;
  --dark: #0F172A;
  --gray: #64748B;
  --light-gray: #F8FAFC;
  --white: #FFFFFF;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

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

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

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--blue-dark);
  color: var(--white);
  font-size: 0.875rem;
  padding: 10px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar a:hover {
  color: var(--yellow);
}

.top-bar .icon {
  margin-right: 6px;
  opacity: 0.9;
}

.social-icons a {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  margin-left: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

.social-icons a:hover {
  background: var(--yellow);
  color: var(--dark);
}

/* ========== NAVBAR ========== */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

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

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  position: relative;
}

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

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

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

.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}

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

.btn-primary:hover {
  background: var(--blue-bright);
  color: var(--white);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
}

.btn-yellow:hover {
  background: var(--yellow-dark);
  color: var(--dark);
}

.btn-orange {
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
}

.btn-orange:hover {
  background: var(--yellow-dark);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--dark);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(30,58,138,0.85), rgba(255,204,0,0.5)),
              url('https://placehold.co/1920x900/1e3a8a/ffcc00?text=Printing+%26+Branding') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-content h1 {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-list {
  list-style: none;
  margin-bottom: 36px;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  margin-bottom: 12px;
  font-weight: 500;
}

.hero-list .check {
  width: 24px;
  height: 24px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 800;
}

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

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

.stat-item .number {
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
  color: var(--yellow);
}

.stat-item .label {
  font-size: 0.9rem;
  opacity: 0.95;
}

.hero-card {
  background: var(--white);
  color: var(--dark);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.hero-card h2 {
  color: var(--blue);
  font-size: 1.5rem;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.hero-card h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60%;
  height: 3px;
  background: var(--yellow);
}

.hero-card p {
  margin: 16px 0;
  font-size: 0.95rem;
  color: var(--gray);
}

.hero-card .highlight {
  color: var(--blue);
  font-weight: 700;
}

.commitment-box {
  background: #EFF6FF;
  border-left: 4px solid var(--yellow);
  padding: 16px 18px;
  border-radius: 0 8px 8px 0;
  margin-top: 20px;
}

.commitment-box h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.commitment-box p {
  font-size: 0.88rem;
  margin: 0;
  color: var(--gray);
}

/* ========== SECTION COMMON ========== */
.section {
  padding: 80px 0;
}

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

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-header .underline {
  width: 70px;
  height: 4px;
  background: var(--yellow);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ========== SERVICES ========== */
.services {
  background: var(--light-gray);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-img {
  height: 200px;
  background: linear-gradient(135deg, var(--blue), var(--yellow));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  padding: 20px;
}

.service-body {
  padding: 24px;
}

.service-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-body p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.service-body a {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-body a:hover {
  color: var(--yellow-dark);
  text-decoration: underline;
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img {
  height: 400px;
  background: linear-gradient(135deg, var(--blue), var(--yellow));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  text-align: center;
  padding: 30px;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--dark);
}

.about-content p {
  color: var(--gray);
  margin-bottom: 16px;
}

.about-list {
  list-style: none;
  margin: 24px 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.about-list .icon {
  color: var(--blue);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ========== GALLERY / WORK ========== */
.gallery {
  background: var(--light-gray);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-item {
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: linear-gradient(45deg, var(--blue-dark), var(--yellow));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  text-align: center;
  padding: 16px;
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.03);
}

/* ========== CTA ========== */
.cta {
  background: linear-gradient(135deg, var(--blue-dark), #0F172A);
  color: var(--white);
  text-align: center;
  padding: 70px 20px;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.cta p {
  max-width: 560px;
  margin: 0 auto 28px;
  opacity: 0.9;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item .icon-box {
  width: 48px;
  height: 48px;
  background: #FEF9C3;
  color: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  color: var(--gray);
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--blue);
}

.contact-form {
  background: var(--light-gray);
  padding: 32px;
  border-radius: var(--radius);
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
}

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

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  color: #CBD5E1;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ========== WHATSAPP FLOATING BUTTON ========== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  color: white;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark), #0F172A);
  color: white;
  padding: 70px 0 50px;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.page-hero p {
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 16px;
  }
  .nav-links.open {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-stats {
    gap: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .top-bar .container {
    justify-content: center;
    text-align: center;
  }
  .logo img {
    height: 48px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 50px 0;
  }
  .hero {
    min-height: auto;
  }
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 54px;
    height: 54px;
  }
}
