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

/* CSS Variables */
:root {
  --primary-color: #002855;
  --secondary-color: #003b73;
  --accent-light: #f0f6fc;
  --accent-hover: #cbd5e1;
  --bg-light: #f8fafc;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-light: #ffffff;
  --text-muted: #94a3b8;
  --border-color: #e2e8f0;
  --white: #ffffff;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.02);
  --border-radius: 4px;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-secondary);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.25;
}

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

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

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

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

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-white:hover {
  background-color: var(--accent-light);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Header & Navigation */
header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 45px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-icon {
  background-color: var(--primary-color);
  color: var(--white);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: 1.5rem;
  border-radius: var(--border-radius);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
}

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

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-whatsapp {
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-whatsapp i {
  font-size: 1.1rem;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: #0c1824;
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 40, 85, 0.9) 0%, rgba(0, 20, 45, 0.95) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-top: 1rem;
  font-weight: 300;
  opacity: 0.85;
}

.hero-title {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

/* Info Cards Section */
.info-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.info-card {
  background: var(--bg-light);
  padding: 2.5rem 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
}

.info-card:hover {
  transform: translateY(-5px);
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-hover);
}

.info-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: var(--accent-light);
  color: var(--primary-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.info-card:hover .info-icon-wrapper {
  background-color: var(--primary-color);
  color: var(--white);
}

.info-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Form & Map Section */
.form-map-section {
  padding: 5rem 0;
  position: relative;
  background-size: cover;
  background-position: center;
}

.form-map-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 40, 85, 0.93);
  z-index: 1;
}

.form-map-section .container {
  position: relative;
  z-index: 2;
}

.section-tag {
  color: var(--white);
  opacity: 0.75;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title-white {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 3rem;
  max-width: 600px;
}

.form-map-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-form-side {
  padding: 3rem;
}

.contact-form-side h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group-full {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

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

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: var(--accent-light);
}

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

.map-side {
  width: 100%;
  height: 100%;
  min-height: 450px;
  position: relative;
}

.map-side iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Social Network Section */
.social-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  background-color: var(--white);
}

.social-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--accent-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

/* Footer Section */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 45px;
  width: auto;
  display: block;
}

.footer-logo .logo-icon {
  background-color: var(--white);
  color: var(--primary-color);
}

.footer-logo .logo-title {
  color: var(--white);
}

.footer-logo .logo-subtitle {
  color: var(--text-muted);
}

.footer-about p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social .social-icon {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.footer-social .social-icon:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.footer-col h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 5px;
}

.footer-contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-info li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-contact-info li i {
  color: var(--white);
  margin-top: 0.25rem;
}

.footer-newsletter p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.newsletter-form .btn-primary {
  background-color: var(--white);
  color: var(--primary-color);
  font-weight: 600;
}

.newsletter-form .btn-primary:hover {
  background-color: var(--accent-light);
  transform: none;
  box-shadow: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-map-wrapper {
    grid-template-columns: 1fr;
  }
  .map-side {
    min-height: 350px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 1rem;
  }
  .nav-links, .nav-cta {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .hero {
    padding: 4rem 0;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-side {
    padding: 2rem 1.5rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--white);
  z-index: 2000;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav.open {
  left: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0;
}

.about-intro-images {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
  padding-right: 4rem;
  display: block;
}

.about-img-bg {
  width: 82%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  display: block;
}

.about-img-fg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
  z-index: 2;
}

.about-company-tag {
  color: var(--secondary-color);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

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

.about-intro-content p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-checklist {
  list-style: none;
  margin: 1.5rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--text-primary);
}

.about-checklist li i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.about-intro-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-cta-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.about-cta-phone i {
  font-size: 1.25rem;
}

/* Badge/Stats Section */
.badge-stats-section {
  background-color: var(--accent-light);
  padding: 5rem 0;
  text-align: center;
}

.trust-badge-wrapper {
  margin-bottom: 3rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  color: var(--primary-color);
  border: 1px solid var(--border-color);
}

.trust-badge i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  position: relative;
  padding: 1rem;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: var(--border-color);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.video-cta {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 10rem 0;
  text-align: center;
}

.video-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 40, 85, 0.88);
  z-index: 1;
}

.video-cta .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.video-cta h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.video-cta p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.8;
}
/* Sectors Served / Partner Icons */
.partners-section {
  padding: 4rem 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.partners-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  opacity: 0.6;
}

.partner-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.team-section h2 {
  font-size: 2.25rem;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  position: relative;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-img-wrapper {
  position: relative;
  overflow: hidden;
}

.team-img-wrapper img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.team-social-overlay {
  position: absolute;
  top: 2rem;
  right: -50px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  z-index: 10;
}

.team-card:hover .team-social-overlay {
  right: 1rem;
}

.team-social-icon {
  width: 35px;
  height: 35px;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.team-social-icon:hover {
  background-color: var(--secondary-color);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--primary-color);
}

.team-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-intro-images {
    max-width: 500px;
    margin: 0 auto;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .stat-item::after {
    display: none !important;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .about-intro-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.services-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
  padding: 5rem 0;
}

.services-intro-img {
  height: 100%;
}

.services-contact-box {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
  justify-content: center;
}

.services-contact-item {
  display: flex;
  gap: 1rem;
}

.services-contact-item i {
  font-size: 1.5rem;
  color: var(--white);
  margin-top: 0.25rem;
}

.services-contact-item h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.services-contact-item p {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

.services-intro-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.services-intro-text p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
.services-intro-img img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* Service Grid (What We Offer) */
.offer-section {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.offer-card {
  background-color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-hover);
}

.offer-card-header {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-bottom: 1.5rem;
}

.offer-header-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.offer-icon-wrapper {
  width: 55px;
  height: 55px;
  background-color: #bfa36c; /* Gold color from Gambar 2 */
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.offer-card:hover .offer-icon-wrapper {
  background-color: var(--primary-color);
  color: var(--white);
}

.offer-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #bfa36c; /* Gold tag color from Gambar 2 */
  letter-spacing: 1px;
  margin-bottom: 0.15rem;
  display: block;
}

.offer-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--primary-color);
  line-height: 1.2;
}

.offer-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.offer-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.offer-link:hover {
  color: var(--secondary-color);
}

/* Why Choose Us Dark Banner */
.why-choose-section {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 20, 45, 0.94);
  z-index: 1;
}

.why-choose-section .container {
  position: relative;
  z-index: 2;
}

.why-choose-section h2 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 4rem;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2rem;
  text-align: left;
}

.why-choose-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-choose-icon {
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition-smooth);
}

.why-choose-item:hover .why-choose-icon {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.why-choose-item h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
}

.why-choose-item p {
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.6;
}

/* FAQ & Sidebar Form Section */
.faq-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.faq-header {
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-size: 2.25rem;
  margin-top: 0.5rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--secondary-color);
}

.faq-question i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer-content {
  padding-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Sidebar Contact Form Card */
.faq-contact-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.faq-contact-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.faq-contact-header h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.faq-contact-header p {
  font-size: 0.85rem;
  opacity: 0.8;
}

.faq-contact-body {
  padding: 2.5rem 2rem;
}

.faq-contact-body .form-group {
  margin-bottom: 1.25rem;
}

.faq-contact-footer {
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background-color: var(--bg-light);
}

.faq-contact-info-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.faq-contact-info-link i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  .services-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .services-intro-img {
    max-width: 500px;
    margin: 0 auto;
  }
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 600px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

/* Articles & News specific styles */
.articles-section {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.article-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-hover);
}

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

.article-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.article-category-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 2px;
  z-index: 5;
}

.article-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.article-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  line-height: 1.3;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.article-title:hover {
  color: var(--secondary-color);
}

.article-excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.article-date {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  margin-top: auto;
  display: block;
}

/* Article Modal System */
.article-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.article-modal.open {
  opacity: 1;
  visibility: visible;
}

.article-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 40, 85, 0.6);
  backdrop-filter: blur(5px);
}

.article-modal-content {
  position: relative;
  background-color: var(--white);
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  border-radius: var(--border-radius);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  z-index: 3001;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.article-modal.open .article-modal-content {
  transform: translateY(0);
}

.article-modal-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.article-modal-header h2 {
  color: var(--white);
  font-size: 1.25rem;
}

.article-modal-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.article-modal-close:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.article-modal-body {
  padding: 2.5rem 2rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.article-modal-body h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.article-modal-body h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin: 2rem 0 1rem 0;
  font-family: var(--font-heading);
}

.article-modal-body h4 {
  font-size: 1.15rem;
  color: var(--secondary-color);
  margin: 1.5rem 0 0.75rem 0;
  font-family: var(--font-body);
}

.article-modal-body p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.article-modal-body ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  list-style-type: disc;
}

.article-modal-body li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .article-modal-content {
    width: 95%;
  }
  .article-modal-body {
    padding: 1.5rem;
  }
}

/* Single Post page styles */
.post-hero {
  padding: 8rem 0 6rem 0;
  text-align: center;
  color: var(--white);
  position: relative;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.post-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 20, 45, 0.85);
  z-index: -1;
}

.post-hero-badge {
  display: inline-block;
  background-color: var(--white);
  color: var(--primary-color);
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.post-hero-title {
  font-size: 2.75rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: var(--font-heading);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.post-hero-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}

.post-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.post-hero-meta i {
  color: #bfa36c;
}

.post-layout-section {
  padding: 6rem 0;
  background-color: var(--white);
}

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

.post-main {
  text-align: left;
}

.post-body-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.post-body-text h3 {
  color: var(--primary-color);
  font-size: 1.6rem;
  margin: 2rem 0 1rem 0;
  font-family: var(--font-heading);
}

.post-body-text p {
  margin-bottom: 1.5rem;
}

.post-body-text ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  list-style-type: disc;
}

.post-body-text li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.post-featured-image-inline {
  float: left;
  margin: 0.5rem 2rem 1.5rem 0;
  max-width: 320px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.post-share-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.post-share-section h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
}

.post-share-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.post-share-btn.fb { background-color: #3b5998; }
.post-share-btn.tw { background-color: #1da1f2; }
.post-share-btn.ln { background-color: #0077b5; }
.post-share-btn.wa { background-color: #25d366; }

.post-share-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.post-author-card {
  display: flex;
  gap: 2rem;
  background-color: var(--bg-light);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  margin-top: 3rem;
  align-items: center;
  border: 1px solid var(--border-color);
}

.post-author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.post-author-info {
  text-align: left;
}

.post-author-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.post-author-info p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.post-comments-section {
  margin-top: 4rem;
  text-align: left;
}

.post-comments-section h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.post-comments-section p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.post-comment-form textarea {
  height: 150px;
  resize: vertical;
  margin-bottom: 1.5rem;
}

/* Post Sidebar Widgetry */
.post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sidebar-widget {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  text-align: left;
}

.sidebar-widget h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #bfa36c;
}

.search-widget {
  padding: 1.5rem 2rem;
}

.search-widget .search-box {
  display: flex;
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition-smooth);
  background-color: var(--bg-light);
}

.search-widget .search-box:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 40, 85, 0.15);
}

.search-box input {
  flex-grow: 1;
  border: none;
  background: transparent;
  padding: 0.85rem 1.25rem;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  outline: none;
  width: 100%;
}

.search-box input::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

.search-box button {
  background-color: #bfa36c;
  color: var(--white);
  border: none;
  padding: 0 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.search-box button:hover {
  background-color: var(--primary-color);
}

.sidebar-categories {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.sidebar-categories li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.sidebar-categories li a i {
  color: #bfa36c;
  font-size: 0.85rem;
}

.sidebar-categories li a:hover {
  color: var(--primary-color);
  transform: translateX(3px);
}

.sidebar-wa-widget {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
}

.sidebar-wa-widget h3 {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-wa-widget h3::after {
  background-color: var(--white);
}

.sidebar-wa-widget p {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.sidebar-latest-posts {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-post-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.sidebar-post-thumb {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.sidebar-post-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
}

.sidebar-post-info h4 {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.sidebar-post-info h4 a {
  color: var(--primary-color);
  transition: var(--transition-smooth);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-post-info h4 a:hover {
  color: var(--secondary-color);
}

.sidebar-post-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .post-layout-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .post-sidebar {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .post-hero-title {
    font-size: 2rem;
  }
  .post-featured-image-inline {
    float: none;
    margin: 0 auto 1.5rem auto;
    display: block;
    width: 100%;
  }
}

/* Homepage specific styles */
.home-hero-section {
  padding: 7rem 0 5rem 0;
  background-image: url('images/contact_hero_bg.png');
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.home-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 15, 35, 0.88);
  z-index: -1;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.home-hero-text {
  color: var(--white);
  text-align: left;
}

.home-hero-text .hero-tag {
  color: #bfa36c;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.home-hero-text h1 {
  font-size: 3.25rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.home-hero-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 2.5rem;
}

.home-hero-img {
  position: relative;
}

.home-hero-img img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Home About Section */
.home-about-section {
  padding: 8rem 0 6rem 0;
}

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

.home-about-img {
  position: relative;
}

.home-about-img img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.home-about-text {
  text-align: left;
}

.home-about-text .about-company-tag {
  color: #bfa36c;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: block;
}

.home-about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.home-about-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.home-about-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.home-about-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.home-about-checklist li i {
  color: #bfa36c;
  font-size: 1.1rem;
}

.home-about-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.home-about-cta-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-color);
}

.home-about-cta-phone i {
  color: #bfa36c;
  font-size: 1.2rem;
}

/* Floating Stats Banner */
.stats-banner-container {
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
}

.stats-banner-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
}

.stats-banner-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.stats-banner-header i {
  color: #bfa36c;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: var(--border-color);
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Partner Logos Row */
.partner-logos-section {
  padding: 4rem 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.partner-logos-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.partner-logo img {
  max-height: 35px;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: var(--transition-smooth);
}

.partner-logo img:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}

/* Notary Banner Grid */
.notary-banner-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.notary-banner-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
}

.notary-banner-text {
  text-align: left;
}

.notary-banner-text h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.notary-quote-block {
  border-left: 3px solid #bfa36c;
  padding-left: 1.5rem;
  margin: 1.5rem 0 2rem 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-primary);
  font-weight: 500;
}

.notary-banner-img-wrapper {
  position: relative;
}

.notary-banner-img-wrapper img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}

.notary-contact-card {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background-color: #002855;
  color: var(--white);
  padding: 1.75rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  max-width: 270px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.notary-contact-card h4 {
  color: #bfa36c;
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.notary-contact-card p {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.notary-contact-card a {
  color: var(--white);
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background-color: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: #bfa36c;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-avatar.initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: #bfa36c;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid var(--border-color);
}

.testimonial-client-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 0.15rem 0;
}

.testimonial-client-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Appointment Section */
.appointment-section {
  padding: 6rem 0;
  background-color: var(--white);
}

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

.appointment-text {
  text-align: left;
}

.appointment-text h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.appointment-text p {
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.appointment-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.appointment-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.appointment-contact-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  width: 20px;
}

.appointment-form-card {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  text-align: left;
}

.appointment-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  text-align: center;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

/* Support Callout Section */
.support-callout-section {
  background-color: #002855;
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.support-callout-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  align-items: center;
}

.support-callout-text {
  text-align: left;
}

.support-callout-text h2 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.support-callout-text p {
  opacity: 0.85;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.support-callout-img {
  display: flex;
  justify-content: flex-end;
}

.support-callout-img img {
  border-radius: var(--border-radius);
  max-height: 250px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  max-width: 250px;
}

@media (max-width: 1024px) {
  .home-hero-grid,
  .home-about-grid,
  .notary-banner-grid,
  .appointment-grid,
  .support-callout-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .home-hero-text,
  .home-about-text,
  .notary-banner-text,
  .appointment-text,
  .support-callout-text {
    text-align: center;
  }
  
  .home-hero-img img,
  .home-about-img img,
  .notary-banner-img-wrapper img,
  .support-callout-img img {
    max-width: 500px;
    margin: 0 auto;
    display: block;
  }
  
  .home-about-cta {
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .stat-item:nth-child(2)::after {
    display: none;
  }
  
  .notary-contact-card {
    position: static;
    margin: 1.5rem 0 0 0;
    max-width: 100% !important;
    width: 100% !important;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .support-callout-img {
    justify-content: center;
    width: 100% !important;
  }
  
  .support-callout-img img {
    width: 100% !important;
    max-width: 100% !important;
    max-height: 300px !important;
  }
}

@media (max-width: 768px) {
  /* Container Padding adjustment for mobile screen space */
  .container {
    padding: 0 1.25rem;
  }

  /* Global Headings adjustments for mobile to prevent overlapping */
  h1, .home-hero-text h1, .post-hero-title {
    font-size: 2rem !important;
    line-height: 1.3 !important;
  }
  
  h2, 
  .home-about-text h2, 
  .why-choose-section h2, 
  .notary-banner-text h2, 
  .testimonials-section h2, 
  .video-cta h2, 
  .about-intro-content h2, 
  .team-section h2, 
  .services-intro-text h2, 
  .faq-header h2,
  .contact-form-side h2,
  .social-section h2 {
    font-size: 1.6rem !important;
    line-height: 1.35 !important;
    margin-bottom: 1.25rem !important;
  }

  /* Specific margin-bottom for section headers preceding grid/card elements */
  .why-choose-section h2, 
  .testimonials-section h2, 
  .offer-section h2, 
  .team-section h2, 
  .services-intro-text h2, 
  .faq-header h2 {
    margin-bottom: 2.75rem !important;
  }
  
  h3,
  .info-card h3,
  .offer-card h3,
  .article-title {
    font-size: 1.15rem !important;
    line-height: 1.35 !important;
  }

  /* Section Padding reduction on mobile */
  .hero, 
  .home-hero-section, 
  .why-choose-section, 
  .testimonials-section, 
  .video-cta, 
  .services-section, 
  .articles-section, 
  .team-section, 
  .faq-section,
  .info-section,
  .about-intro-grid {
    padding: 3.5rem 0 !important;
  }

  .home-hero-text p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.75rem !important;
  }

  /* Left-align text blocks and checklists on mobile for clean look */
  .home-about-text,
  .about-intro-content,
  .notary-banner-text,
  .appointment-text,
  .support-callout-text {
    text-align: left !important;
  }

  .home-about-checklist,
  .about-checklist {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .home-about-checklist li,
  .about-checklist li {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .home-about-checklist li i,
  .about-checklist li i {
    margin-top: 0.25rem !important;
  }

  /* Stack CTA buttons and phone links vertically on mobile to prevent squishing */
  .home-about-cta,
  .about-intro-cta {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem !important;
  }

  .home-about-cta-phone,
  .about-cta-phone {
    margin-left: 0 !important;
    margin-top: 0.25rem !important;
  }

  /* Center-align stats banner header and trust badge vertically stacked on mobile */
  .stats-banner-header {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 0.5rem !important;
  }
  
  .stats-banner-header i {
    font-size: 1.5rem !important;
    margin-top: 0 !important;
    margin-bottom: 0.25rem !important;
  }

  .trust-badge {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    border-radius: var(--border-radius) !important;
    padding: 1rem !important;
    gap: 0.5rem !important;
  }
  
  .trust-badge i {
    font-size: 1.5rem !important;
    margin-top: 0 !important;
    margin-bottom: 0.25rem !important;
  }

  /* Stats Grid 2-column layout is cleaner than 1-column on mobile */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem 1rem !important; /* Row gap 1.5rem, Column gap 1rem to maximize text space */
  }

  .stats-grid h3,
  .stat-number {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.25rem !important;
  }

  .stats-grid p,
  .stat-label {
    white-space: nowrap !important;
    font-size: 0.8rem !important;
  }
  
  .stat-item::after {
    display: none;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 0;
  }
  
  .appointment-form-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  /* Extra small mobile screen adjustments */
  h1, .home-hero-text h1, .post-hero-title {
    font-size: 1.75rem !important;
  }
  
  h2, 
  .home-about-text h2, 
  .why-choose-section h2, 
  .notary-banner-text h2, 
  .testimonials-section h2, 
  .video-cta h2, 
  .about-intro-content h2, 
  .team-section h2, 
  .services-intro-text h2, 
  .faq-header h2,
  .contact-form-side h2,
  .social-section h2 {
    font-size: 1.4rem !important;
  }
}
