/* ============================================
   MODERN ADVERTISING — Rebuild v3
   Direction: Clean, Corporate, Trustworthy (Inspired by Arihant Media)
   Fonts: Montserrat + Roboto
   Colors: #CC2128 | #FFFFFF | #1A1A1A
============================================ */

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

:root {
  --primary-red: #CC2128;
  --primary-dark: #A3141A;
  --deep-black: #1A1A1A;
  --pure-white: #FFFFFF;
  --light-gray: #F8F8F8;
  --border-color: #E5E5E5;

  --text-dark: #1A1A1A;
  --text-gray: #555555;
  --text-light: #888888;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Roboto', sans-serif;

  --transition: all 0.3s ease;
  --max-w: 1280px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   TYPOGRAPHY
============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--deep-black);
  line-height: 1.2;
  font-weight: 700;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-title p {
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  border-radius: 4px;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary-red);
  color: var(--pure-white);
  box-shadow: 0 4px 10px rgba(204, 33, 40, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--pure-white);
  color: var(--pure-white);
}

.btn-outline:hover {
  background: var(--pure-white);
  color: var(--primary-red);
}

/* ============================================
   HEADER & NAVBAR
============================================ */
.top-bar {
  background: var(--deep-black);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

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

.top-bar-contact {
  display: flex;
  gap: 1.5rem;
}

.top-bar-contact a:hover {
  color: var(--pure-white);
}

.navbar {
  background: var(--pure-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--deep-black);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--deep-black);
  text-transform: uppercase;
}

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

/* ============================================
   HERO SECTION
============================================ */
.hero {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
  background-size: cover;
  background-position: center;
  height: 85vh;
  display: flex;
  align-items: center;
  color: var(--pure-white);
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--pure-white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* ============================================
   CLIENTS / BRANDS STRIP
============================================ */


/* ============================================
   SERVICES SECTION
============================================ */
.services {
  padding: 6rem 0;
  background: var(--pure-white);
}

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

.service-card {
  background: var(--pure-white);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 8px;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--primary-red);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(204, 33, 40, 0.1);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* ============================================
   ABOUT SECTION
============================================ */
.about {
  padding: 6rem 0;
  background: var(--light-gray);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img img {
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.about-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: var(--primary-red);
}

.about-content p {
  margin-bottom: 1.5rem;
  color: var(--text-gray);
}

/* ============================================
   CTA STRIP
============================================ */
.cta-strip {
  background: var(--primary-red);
  padding: 4rem 0;
  color: var(--pure-white);
  text-align: center;
}

.cta-strip h2 {
  color: var(--pure-white);
  margin-bottom: 1.5rem;
}

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

.btn-white:hover {
  background: var(--deep-black);
  color: var(--pure-white);
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--deep-black);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--pure-white);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

/* ============================================
   MOBILE NAV
============================================ */
.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--pure-white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-md);
  }

  .nav-links.active {
    display: flex;
  }

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

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

/* ============================================
   INNER PAGES - HERO
============================================ */
.page-hero {
  background: var(--deep-black);
  padding: 10rem 0 5rem;
  color: var(--pure-white);
  position: relative;
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumb a:hover {
  color: var(--pure-white);
}

.breadcrumb span {
  color: var(--primary-red);
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.page-subtitle {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-red);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

/* ============================================
   INNER PAGES - LAYOUT (Sidebar)
============================================ */
.page-content {
  padding: 6rem 0;
  background: var(--pure-white);
}

.sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 4rem;
}

@media (max-width: 900px) {
  .sidebar-layout {
    grid-template-columns: 1fr;
  }
}

.sidebar-nav {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 4px;
}

.sidebar-nav h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--border-color);
}

.sidebar-links {
  display: flex;
  flex-direction: column;
}

.sidebar-links a {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}

.sidebar-links a::after {
  content: '→';
  opacity: 0;
  transition: var(--transition);
}

.sidebar-links a:hover,
.sidebar-links a.active {
  color: var(--primary-red);
  padding-left: 0.5rem;
}

.sidebar-links a:hover::after,
.sidebar-links a.active::after {
  opacity: 1;
}

/* ============================================
   CONTACT PAGE SCYLES
============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-block {
  margin-bottom: 2.5rem;
  display: flex;
  gap: 1.5rem;
}

.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary-red);
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-text p,
.contact-text a {
  color: var(--text-gray);
  line-height: 1.6;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-control {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(204, 33, 40, 0.1);
}

.map-container {
  height: 400px;
  background: #eee;
  margin-top: 4rem;
}

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

/* ============================================
   CLIENT LOGO STYLES
============================================ */
.client-logo-box {
  background: var(--pure-white);
  padding: 1rem;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 140px;
  transition: var(--transition);
  opacity: 0.8;
  cursor: default;
  overflow: hidden;
}

.client-logo-box:hover {
  opacity: 1;
  transform: translateY(-5px);
  border-color: var(--primary-red);
  box-shadow: var(--shadow-sm);
}

/* Icon Styles */
.client-logo-box i {
  font-size: 2.5rem;
  color: var(--deep-black);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.client-logo-box span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  transition: var(--transition);
}

/* Image Styles */
.client-logo-box img {
  max-width: 90%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.client-logo-box:hover i,
.client-logo-box:hover span {
  color: var(--primary-red);
}

.client-logo-box:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
============================================ */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

.whatsapp-float i {
  margin-top: 0;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}