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

:root {
  --primary-color: #1E3A8A;
  /* Deeper, more corporate navy */
  --primary-dark: #152C69;
  --secondary-color: #F59E0B;
  /* Rich Amber Gold */
  --secondary-light: #FCD34D;
  --bg-color: #F8FAFC;
  /* Light gray for backgrounds */
  --surface-color: #FFFFFF;
  /* Pure white for cards */
  --text-main: #334155;
  /* Slate 700 */
  --text-muted: #64748B;
  /* Slate 500 */
  --text-light: #F8FAFC;
  --border-color: #E2E8F0;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.top-bar {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 0.6rem 5%;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info span {
  margin-right: 1.5rem;
}

.top-bar-info i {
  color: var(--secondary-color);
  margin-right: 0.5rem;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--surface-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo-container img {
  height: 55px;
  object-fit: contain;
}

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

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  font-size: 1.05rem;
}

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

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

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

.btn-contact {
  background: var(--primary-color);
  color: var(--surface-color) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 6px;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}

.btn-contact::after {
  display: none !important;
}

.btn-contact:hover {
  background: transparent;
  color: var(--primary-color) !important;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

/* ==========================================================================
   Hero Global
   ========================================================================== */
.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--surface-color);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(30, 58, 138, 0.85), rgba(15, 23, 42, 0.9));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  animation: slideUp 0.8s ease-out forwards;
}

.hero-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary-light);
  margin-bottom: 1rem;
  display: block;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--surface-color);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: #E2E8F0;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* ==========================================================================
   Category Grid (Homepage)
   ========================================================================== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: -80px auto 4rem;
  padding: 0 5%;
  position: relative;
  z-index: 10;
}

.cat-card {
  background: var(--surface-color);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.cat-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.cat-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cat-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: -45px;
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.cat-card:hover .cat-icon {
  background: var(--primary-color);
  color: var(--surface-color);
  border-color: var(--primary-color);
}

.cat-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cat-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.cat-btn {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1rem;
}

.cat-btn i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.cat-card:hover .cat-btn i {
  transform: translateX(5px);
}

/* ==========================================================================
   USP Section
   ========================================================================== */
.usp-section {
  padding: 5rem 5%;
  background-color: var(--surface-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.section-title span {
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.usp-card {
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background: var(--bg-color);
  text-align: center;
  transition: all 0.3s ease;
}

.usp-card:hover {
  background: var(--surface-color);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.usp-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.usp-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.usp-card p {
  color: var(--text-muted);
}

/* ==========================================================================
   Services Row Pages
   ========================================================================== */
.services-list {
  padding: 6rem 5%;
  background: var(--bg-color);
}

.service-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto 6rem;
}

.service-row:nth-child(even) {
  flex-direction: row-reverse;
}

.service-row-img {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  border: 4px solid var(--surface-color);
}

.service-row-img::before {
  content: '';
  display: block;
  padding-top: 65%;
  /* 3:2 Aspect Ratio */
}

.service-row-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-row-content {
  flex: 1;
  background: var(--surface-color);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.service-row-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: inline-block;
  border-bottom: 3px solid var(--secondary-color);
  padding-bottom: 0.5rem;
}

.service-row-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

ul.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}

ul.check-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* ==========================================================================
   Premium Section (Was Glassmorphism, now Solid Corporate Block)
   ========================================================================== */
.premium-section {
  padding: 5rem 5%;
  background: var(--primary-color);
  color: var(--surface-color);
}

.glass-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--primary-dark);
  border-radius: 12px;
  padding: 4rem;
  border-left: 6px solid var(--secondary-color);
}

.glass-content h2 {
  color: var(--surface-color);
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}

.glass-content p {
  color: #CBD5E1;
  font-size: 1.1rem;
}

/* ==========================================================================
   WhatsApp Form & Footer
   ========================================================================== */
.whatsapp-section {
  padding: 5rem 5% !important;
  background: var(--surface-color) !important;
  border-top: 1px solid var(--border-color);
}

.whatsapp-section>div {
  box-shadow: var(--shadow-lg) !important;
  border: 1px solid var(--border-color) !important;
}

footer {
  background: #1E293B;
  /* Slate 800 - Dark Gray */
  color: var(--text-light);
  /* #F8FAFC */
  padding: 4rem 5% 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  color: #FFFFFF;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary-color);
}

.footer-col p {
  color: #CBD5E1;
  /* Slate 300 */
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: #CBD5E1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

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

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #CBD5E1;
}

.contact-info i {
  color: var(--secondary-color);
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94A3B8;
  /* Slate 400 */
  font-size: 0.9rem;
}

/* ==========================================================================
   Animations & Media Queries
   ========================================================================== */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-color);
    flex-direction: column;
    padding: 80px 30px;
    border-left: 1px solid var(--border-color);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
    transition: right 0.3s ease;
  }

  .nav-links.show {
    right: 0;
  }

  .mobile-menu-btn {
    display: block;
    z-index: 1001;
  }

  .service-row,
  .service-row:nth-child(even) {
    flex-direction: column;
    gap: 2rem;
  }

  .service-row-img {
    width: 100%;
  }

  .glass-container {
    padding: 2.5rem;
  }

  .service-row-content {
    padding: 2rem;
  }
}