/* ==========================================================================
   PLUTUSS DIGITAL & SERVICES CORE STYLESHEET (style.css)
   ========================================================================== */

:root {
  --baseShade1: #021558;
  --darkShade1: #1e293b;
  --accentShade: #ff5e14;
  --accentSoft: #eff6ff;
  --lightShade1: #f8fafc;
  --lightShade2: #f1f5f9;
  --blackShade1: #020617;
  --blackShade2: #475569;
  --whiteShade1: #ffffff;
  --whiteShade2: #e2e8f0;
  --primary: #1f7fe0;
  --primary-dark: #1263b8;
  --gradient: linear-gradient(135deg, #369bff, #1f7fe0);
  --gradient-accent: linear-gradient(135deg, #ff5e14, #ff7a3d);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ffffff;
  color: var(--blackShade2);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   NAVBAR CONTAINER & UPPER BAR
   ========================================================================== */
.navbar-container {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(2, 21, 88, 0.08);
  transition: all 0.3s ease;
}

/* Top bar with contact info & social icons */
.upper-bar {
  background: var(--baseShade1);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 6%;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-container {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-container a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 13px;
  transition: opacity 0.2s ease;
}

.contact-container a:hover {
  opacity: 0.85;
}

.contact-container p {
  margin: 0;
}

.contact-container i,
.upper-bar i {
  color: var(--accentShade);
  font-size: 13px;
}

.social-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-container a {
  color: #ffffff;
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-container a:hover {
  color: var(--accentShade);
  transform: translateY(-2px);
}

/* ==========================================================================
   MAIN NAVBAR HEADER
   ========================================================================== */
header.navbar {
  background: #ffffff;
  padding: 0;
  width: 100%;
  position: relative;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 6%;
}

.nav-container .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-container .logo img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--baseShade1);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accentShade);
}

/* DROPDOWN MENU */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px 0;
}

.nav-dropdown .services-link,
.nav-dropdown .nav-link {
  color: var(--baseShade1);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown:hover .services-link,
.nav-dropdown:hover .nav-link {
  color: var(--accentShade);
}

.dropdown-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  color: var(--baseShade1);
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle {
  transform: rotate(180deg);
  color: var(--accentShade);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(2, 21, 88, 0.15);
  border: 1px solid var(--whiteShade2);
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 25px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  transform: rotate(45deg);
  border-left: 1px solid var(--whiteShade2);
  border-top: 1px solid var(--whiteShade2);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 10px 20px;
  color: var(--darkShade1);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
}

.dropdown-menu a:hover {
  background: var(--lightShade2);
  color: var(--accentShade);
  padding-left: 24px;
}

/* Call to Action Button in Nav */
.navbar-btn {
  background: var(--gradient-accent);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(255, 94, 20, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.navbar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 94, 20, 0.45);
  color: #ffffff;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--baseShade1);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ==========================================================================
   BUTTONS & COMMON COMPONENTS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn.primary,
.cta-btn {
  background: var(--accentShade);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 94, 20, 0.3);
}

.btn.primary:hover,
.cta-btn:hover {
  background: #e04a08;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 94, 20, 0.45);
  color: #ffffff;
}

.btn.secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn.secondary:hover {
  background: #ffffff;
  color: var(--baseShade1);
  transform: translateY(-3px);
}

/* ==========================================================================
   SERVICE HEADER & HERO SECTIONS (COMMON ACROSS SERVICE PAGES)
   ========================================================================== */
.service-header {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 150px 8% 90px;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  overflow: hidden;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(2, 21, 88, 0.88), rgba(31, 127, 224, 0.82));
  z-index: 1;
}

.service-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #ffffff;
  line-height: 1.25;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.service-cta-btn,
.service-cta-smm-btn {
  display: inline-block;
  padding: 15px 38px;
  border-radius: 40px;
  background: var(--accentShade);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 10px 25px rgba(255, 126, 41, 0.4);
}

.service-cta-btn:hover,
.service-cta-smm-btn:hover {
  transform: translateY(-4px);
  background: #ff6a00;
  box-shadow: 0 16px 35px rgba(255, 126, 41, 0.6);
  color: #ffffff;
}

/* ==========================================================================
   FOOTER (UNIVERSAL PLUTUSS & SUBPAGES)
   ========================================================================== */
footer.footer,
.footer {
  background: var(--baseShade1);
  color: #ffffff;
  padding: 70px 6% 25px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 15px;
}

.footer-col h3 {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--accentShade);
  margin-top: 8px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--accentShade);
  padding-left: 6px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: var(--accentShade);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

/* ==========================================================================
   RESPONSIVE DESIGN (DESKTOP TO MOBILE ADAPTATION)
   ========================================================================== */
@media (max-width: 992px) {
  .upper-bar {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 25px 20px;
    gap: 18px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    display: none;
    text-align: center;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--lightShade2);
    width: 100%;
    margin-top: 8px;
    display: none;
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.active .dropdown-menu {
    display: flex;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .nav-container .logo img {
    height: 40px;
  }
}
