/* ===========================
   Blue Umbrella - Main Styles
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --navy: #1a1f3a;
  --navy-dark: #0f1224;
  --red: #e63329;
  --red-dark: #c42820;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --border: #dee2e6;
  --text: #212529;
  --text-muted: #6c757d;
}

* { box-sizing: border-box; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

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

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

.navbar-brand img { height: 100px; width: auto; }

.navbar-nav .nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy) !important;
  padding: 8px 14px !important;
  transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--red) !important; }

.navbar-contact {
  font-size: 13px;
  color: var(--navy);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 18px;
}

.navbar-contact a {
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
}

.navbar-contact a:hover { color: var(--red); }

/* ---- HERO ---- */
.hero-section {
  background: linear-gradient(rgba(15,18,36,0.78), rgba(15,18,36,0.82)),
              url('../images/hero-bg.jpg') center/cover no-repeat;
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,31,58,0.9) 0%, rgba(230,51,41,0.15) 100%);
}

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

.hero-section h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-section h1 .accent { color: var(--red); }

.hero-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn-primary-red {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  padding: 13px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.25s;
  display: inline-block;
  cursor: pointer;
}

.btn-primary-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,51,41,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 13px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.25s;
  display: inline-block;
  cursor: pointer;
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 13px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.25s;
  display: inline-block;
  cursor: pointer;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

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

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-icon {
  color: var(--red);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* ---- SECTION HEADERS ---- */
.section-header { margin-bottom: 50px; }

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.section-header h2 .accent { color: var(--red); }

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

/* ---- SECTIONS ---- */
.section-light { background: var(--white); padding: 80px 0; }
.section-gray { background: var(--light-bg); padding: 80px 0; }
.section-dark {
  background: var(--navy-dark);
  padding: 80px 0;
  color: var(--white);
}

/* ---- SERVICE CARDS ---- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px 24px;
  height: 100%;
  transition: all 0.3s;
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 30px rgba(230,51,41,0.12);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.service-card h5 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 18px;
}

.learn-more {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}

.service-card:hover .learn-more { gap: 10px; }

/* ---- PORTFOLIO ---- */
.portfolio-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.portfolio-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}

.portfolio-card:hover img { transform: scale(1.05); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,18,36,0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--white);
}

.portfolio-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
}

.portfolio-overlay h5 { font-size: 1rem; margin-bottom: 4px; }
.portfolio-overlay small { font-size: 12px; opacity: 0.75; }

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  height: 100%;
}

.stars { color: #ffc107; font-size: 1rem; margin-bottom: 14px; }

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}

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

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--red);
}

/* ---- CTA DARK ---- */
.cta-section {
  background: var(--navy-dark);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 14px;
}

.cta-section h2 .accent { color: var(--red); }
.cta-section p { color: rgba(255,255,255,0.75); margin-bottom: 32px; }

/* ---- FOOTER ---- */
.footer {
  background: #111827;
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-logo img { height: 150px; margin-bottom: 14px; }

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer h6 {
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.footer ul { list-style: none; padding: 0; margin: 0; }

.footer ul li {
  margin-bottom: 9px;
  font-size: 13px;
}

.footer ul li a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}

.footer-contact-item i { color: var(--red); margin-top: 2px; min-width: 14px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.5); margin: 0; }

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

.footer-social a {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  transition: all 0.2s;
}

.footer-social a:hover { background: var(--red); color: var(--white); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(rgba(10,13,28,0.82), rgba(10,13,28,0.88)),
              var(--hero-img, linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%)) center/cover no-repeat;
  padding: 80px 0;
  color: var(--white);
  position: relative;
}

.page-hero .back-link {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  transition: color 0.2s;
}

.page-hero .back-link:hover { color: var(--white); }

.page-hero-icon {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 10px;
}

.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }

/* ---- OVERVIEW CARD ---- */
.overview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
  margin-bottom: 24px;
}

.overview-card h4 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.overview-card > p {
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.overview-card h6 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.offer-item {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.offer-item i { color: var(--red); font-size: 1rem; }

/* ---- WHY CHOOSE ---- */
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
}

.why-card h4 { font-size: 1.25rem; color: var(--navy); margin-bottom: 20px; }

.why-list { list-style: none; padding: 0; margin: 0; }

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text);
}

.why-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ---- ABOUT PAGE ---- */
.story-img { border-radius: 8px; width: 100%; object-fit: cover; }

.what-we-do-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
  height: 100%;
}

.what-we-do-card .card-icon {
  color: var(--red);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.what-we-do-card h5 { font-size: 1.05rem; color: var(--navy); margin-bottom: 14px; }

.what-we-do-card ul { list-style: none; padding: 0; margin: 0; }

.what-we-do-card ul li {
  font-size: 0.87rem;
  color: var(--gray);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.what-we-do-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- LEADERSHIP / TEAM ---- */
.leader-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.leader-img-wrap { position: relative; }

.leader-img-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.leader-img-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15,18,36,0.9), transparent);
  padding: 20px;
  color: var(--white);
}

.leader-img-info h5 { font-size: 1.1rem; margin-bottom: 2px; }
.leader-role { color: var(--red); font-size: 0.85rem; font-weight: 700; }

.leader-location { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.leader-location i { margin-right: 4px; }

.leader-body { padding: 24px; }
.leader-body .bio { font-size: 0.9rem; color: var(--gray); margin-bottom: 18px; }

.leader-section-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.leader-list { list-style: none; padding: 0; margin: 0 0 18px; }

.leader-list li {
  font-size: 0.87rem;
  color: var(--gray);
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.leader-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ---- APPROACH CARDS ---- */
.approach-card {
  text-align: center;
  padding: 28px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.approach-card i { font-size: 2rem; color: var(--red); margin-bottom: 14px; }
.approach-card h6 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; margin-top: 8px; }
.approach-card p { font-size: 0.87rem; color: var(--gray); margin: 0; }

/* ---- PORTFOLIO PAGE ---- */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }

.filter-btn {
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--light-gray);
  color: var(--navy);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--red);
  color: var(--white);
}

.portfolio-detail-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}

.portfolio-detail-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.portfolio-detail-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.portfolio-detail-card .card-body { padding: 20px; }

.portfolio-detail-card h5 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.portfolio-detail-card .meta {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.portfolio-detail-card p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 14px;
}

.scope-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy);
  margin-bottom: 8px;
}

.scope-tag {
  display: inline-block;
  background: var(--light-bg);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin: 2px 3px 2px 0;
}

/* ---- TRACK RECORD ---- */
.track-record {
  background: var(--navy-dark);
  border-radius: 12px;
  padding: 50px 40px;
  text-align: center;
  color: var(--white);
}

.track-record h3 { font-size: 1.8rem; margin-bottom: 8px; }
.track-record h3 .accent { color: var(--red); }
.track-record .sub { color: rgba(255,255,255,0.65); margin-bottom: 36px; }

.track-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}

.track-stat-label { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 600; }

/* ---- CONTACT PAGE ---- */
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  height: 100%;
}

.contact-card h4 { font-size: 1.2rem; color: var(--navy); margin-bottom: 4px; }
.contact-card .office-type { color: var(--red); font-size: 13px; font-weight: 700; margin-bottom: 20px; }

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-info-row .ci-icon { color: var(--red); font-size: 1rem; margin-top: 2px; min-width: 18px; }

.contact-info-row .ci-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-info-row .ci-value { font-size: 14px; color: var(--gray); }

.general-inquiries {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
  text-align: center;
  margin-top: 24px;
}

.general-inquiries h4 { font-size: 1.2rem; color: var(--navy); margin-bottom: 8px; }
.general-inquiries p { color: var(--gray); font-size: 0.9rem; margin-bottom: 16px; }
.general-inquiries .email-link { color: var(--red); font-weight: 700; display: flex; align-items: center; gap: 6px; justify-content: center; }

/* ---- MAP PLACEHOLDER ---- */
.map-placeholder {
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 60px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.map-placeholder i { font-size: 2.5rem; color: var(--gray); margin-bottom: 12px; }
.map-placeholder strong { font-size: 0.95rem; color: var(--navy); }
.map-placeholder small { color: var(--gray); font-size: 0.8rem; }

/* ---- WHY CHOOSE STATS ---- */
.why-stats .stat-col { text-align: center; }
.why-stats .s-num { font-size: 2.5rem; font-weight: 800; color: var(--red); line-height: 1; }
.why-stats .s-label { font-size: 14px; font-weight: 700; color: var(--navy); margin: 8px 0 4px; }
.why-stats .s-desc { font-size: 12px; color: var(--gray); }

/* ---- SERVICES HERO BG CLASSES ---- */
.hero-trade { --hero-img: url('../images/hero-trade.jpg'); }
.hero-corporate { --hero-img: url('../images/hero-corporate.jpg'); }
.hero-sports { --hero-img: url('../images/hero-sports.jpg'); }
.hero-entertainment { --hero-img: url('../images/hero-entertainment.jpg'); }
.hero-brand { --hero-img: url('../images/hero-brand.jpg'); }
.hero-social { --hero-img: url('../images/hero-social.jpg'); }
.hero-digital { --hero-img: url('../images/hero-digital.jpg'); }
.hero-celebrations { --hero-img: url('../images/hero-celebrations.jpg'); }

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

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

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .hero-section { min-height: 60vh; }
  .navbar-contact { display: none !important; }
  .section-light, .section-gray, .section-dark, .cta-section { padding: 55px 0; }
}

@media (max-width: 767px) {
  .hero-section h1 { font-size: 2rem; }
  .stat-number { font-size: 2rem; }
  .track-record { padding: 36px 20px; }
}
