/* =========================
   GLOBAL RESET
========================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f4f7fb;
}

/* =========================
   TOP BAR (PROFESSIONAL)
========================= */
.top-bar-pro {
  background: #1c3b57;
  color: #ffffff;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.top-bar-pro button {
  background: #3cb371;
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
}

/* =========================
   HEADER & NAV
========================= */
.header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e6e9ee;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 42px;
}

nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
}

nav a.btn {
  background: #0f2a44;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
}

nav a.active {
  color: #0f2a44;
  font-weight: 700;
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* =========================
   HERO (PREMIUM LOOK)
========================= */
.hero-pro {
  min-height: 90vh;
  background: linear-gradient(135deg, #0f2a44, #1c4d7a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 44px;
  line-height: 1.3;
}

.hero-content p {
  font-size: 18px;
  margin: 18px 0 30px;
}

/* =========================
   BUTTONS
========================= */
.btn {
  background: #0f2a44;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn.large {
  font-size: 16px;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 90px 20px;
  background: #ffffff;
  text-align: center;
}

.section:nth-child(even) {
  background: #f7f9fc;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.section p {
  max-width: 900px;
  margin: auto;
  font-size: 16px;
  line-height: 1.7;
}

/* =========================
   SERVICES
========================= */
.services-pro {
  background: #f7f9fc;
}

.service-grid {
  max-width: 1200px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-box {
  background: #ffffff;
  padding: 36px 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-box i {
  font-size: 40px;
  color: #0f2a44;
  margin-bottom: 16px;
}

.service-box h3 {
  margin: 12px 0 8px;
  font-size: 18px;
}

.service-box p {
  font-size: 14px;
  color: #555;
}

.service-box:hover {
  transform: translateY(-8px);
}

/* =========================
   CONTACT
========================= */
.grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 30px;
}

.card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 30px;
  font-size: 14px;
  background: #0f2a44;
  color: #ffffff;
}

/* =========================
   WHATSAPP (PROFESSIONAL)
========================= */
.whatsapp-pro {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25d366;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* =========================
   CONSULTATION POPUP
========================= */
.consult-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.consult-box {
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  text-align: center;
  width: 280px;
  animation: scaleIn 0.4s ease;
}

.consult-box h3 {
  margin-bottom: 18px;
}

.consult-box a {
  display: block;
  margin: 12px 0;
  text-decoration: none;
  color: #0f2a44;
  font-weight: 600;
}

.consult-box span {
  display: block;
  margin-top: 12px;
  cursor: pointer;
}

@keyframes scaleIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* =========================
   ANIMATIONS
========================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #fff; }
  nav.show { display: block; }
  nav a { display: block; padding: 14px 20px; margin: 0; }
  .hamburger { display: block; }

  .hero-content h1 {
    font-size: 28px;
  }
}

/* CONTACT SECTION */
.contact-pro {
  background: #f7f9fc;
}

.contact-pro h3 {
  margin-bottom: 12px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: inherit;
}

form button {
  width: 100%;
}

/* PARTNER SECTION – TEXT ONLY */
.partner-card {
  text-align: left;
}

.partner-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #0f2a44;
}

.partner-card .role {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.partner-card .qualification {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.partner-card .expertise {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.partner-card .bio {
  font-size: 14px;
  color: #666;
  line-height: 1.7;	
}

.about-section {
  padding: 80px 20px;
  background-color: #f9fafc;
}

.about-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0f2a44;
  margin-bottom: 30px;
}

.about-text {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 22px;
}

.about-text strong {
  color: #0f2a44;
}

.about-values {
  background: #ffffff;
  border-left: 5px solid #0f2a44;
  padding: 25px 30px;
  margin: 35px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-values h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #0f2a44;
}

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

.about-values li {
  font-size: 16px;
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
  color: #333;
}

.about-values li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0f2a44;
  font-weight: bold;
}

.about-highlight {
  font-size: 18px;
  font-weight: 600;
  color: #0f2a44;
  margin-top: 30px;
}

/* =========================
   ABOUT – PROFESSIONAL BLOCK
========================= */
.about-pro {
  background: linear-gradient(180deg, #f9fafc, #ffffff);
  padding: 100px 20px;
}

.about-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-left h2 {
  font-size: 38px;
  color: #0f2a44;
  margin-bottom: 20px;
}

.about-left p {
  font-size: 17px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 18px;
}

.about-left strong {
  color: #0f2a44;
}

.about-right .about-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-left: 6px solid #0f2a44;
}

.about-card h3 {
  font-size: 22px;
  color: #0f2a44;
  margin-bottom: 20px;
}

.about-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.about-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #333;
}

.about-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0f2a44;
  font-weight: bold;
}

.about-quote {
  font-size: 16px;
  font-weight: 600;
  color: #0f2a44;
  margin-top: 20px;
  line-height: 1.7;
}

/* MOBILE */
@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-left h2 {
    font-size: 30px;
  }
}


.email-link {
  color: #1e5fa3;
  text-decoration: none;
  font-weight: 600;
}

.email-link:hover {
  text-decoration: underline;
}

.web {
  color: #1e5fa3;
  text-decoration: none;
  font-weight: 600;
}
	
.phone-link {
  color: #1e5fa3;
  font-weight: 600;
  text-decoration: none;
}

.phone-link:hover {
  color: #1e5fa3;
  text-decoration: underline;
}
