/* ============================================
   V B INTERNATIONAL - Premium Corporate Website
   Author: V B INTERNATIONAL
   Version: 1.0
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #0a1f3f;
  --primary-light: #132e5a;
  --secondary: #369eac;
  --secondary-dark: #2e7d87;
  --secondary-light: #e3fcff;
  --accent: #519da7;
  --dark: #0d1117;
  --light: #f8f9fa;
  --gray: #6c757d;
  --gray-light: #e9ecef;
  --gray-dark: #343a40;
  --white: #ffffff;
  --black: #000000;
  --body-font: 'Open Sans', sans-serif;
  --heading-font: 'Poppins', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 5px 25px rgba(0,0,0,0.08);
  --shadow-hover: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-dark);
  background: var(--white);
  overflow-x: hidden;
}

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

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }

p {
  margin-bottom: 1rem;
  color: var(--gray);
}

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

a:hover {
  color: var(--secondary-dark);
}

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

/* ===== BUTTONS ===== */
.btn {
  font-family: var(--heading-font);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 4px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  position: relative;
  overflow: hidden;
  border: none;
}

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

.btn-primary:hover {
  background: var(--secondary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,164,92,0.3);
}

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

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

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

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

.btn-lg {
  padding: 16px 40px;
  font-size: 0.95rem;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  padding: 8px 0;
}

.top-bar a {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}

.top-bar a:hover {
  color: var(--secondary);
}

.top-bar .social-links a {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  font-size: 0.75rem;
  margin-left: 5px;
  transition: var(--transition);
}

.top-bar .social-links a:hover {
  background: var(--secondary);
  color: var(--white);
}

/* ===== HEADER / NAVBAR ===== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.navbar {
  padding: 0;
}

.navbar-brand {
  padding: 10px 0;
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.navbar-brand .brand-text {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1.1;
}

.navbar-brand .brand-text span {
  color: var(--secondary);
}

.navbar-brand .brand-sub {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
}

.navbar .nav-link {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--primary) !important;
  padding: 28px 16px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  transition: var(--transition);
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: var(--transition);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--secondary) !important;
}

.navbar .dropdown-menu {
  border: none;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 10px 0;
  margin-top: 0;
}

.navbar .dropdown-item {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 10px 24px;
  color: var(--gray-dark);
  transition: var(--transition);
}

.navbar .dropdown-item:hover {
  background: var(--light);
  color: var(--secondary);
  padding-left: 30px;
}

.navbar .nav-cta {
  background: var(--secondary);
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 4px;
  margin-left: 15px;
}

.navbar .nav-cta::after { display: none; }
.navbar .nav-cta:hover { background: var(--secondary-dark); }

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.hamburger {
  width: 28px;
  height: 20px;
  position: relative;
  display: block;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

/* ===== HERO SLIDER ===== */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10,31,63,0.85) 0%, rgba(10,31,63,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-subtitle {
  display: inline-block;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 2px solid var(--secondary);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-title span {
  color: var(--secondary);
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 35px;
}

.hero-buttons .btn {
  margin-right: 15px;
  margin-bottom: 10px;
}

.hero-slider .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-slider .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  transition: var(--transition);
}

.hero-slider .owl-dots .owl-dot.active span {
  background: var(--secondary);
  width: 30px;
  border-radius: 6px;
}

.hero-slider .owl-nav {
  display: none;
}

/* ===== SECTION TITLES ===== */
.section-padding {
  padding: 100px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .subtitle {
  display: inline-block;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.section-title h2 {
  margin-bottom: 15px;
  position: relative;
}

.section-title .divider {
  width: 60px;
  height: 3px;
  background: var(--secondary);
  margin: 20px auto;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
}

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

.title-left .divider {
  margin: 20px 0;
}

/* ===== ABOUT SECTION ===== */
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.about-image .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--secondary);
  color: var(--white);
  padding: 25px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-hover);
}

.about-image .experience-badge .number {
  font-family: var(--heading-font);
  font-size: 2.5rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.about-image .experience-badge .text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content .features-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.about-content .features-list li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-content .features-list li i {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-top: 4px;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-section {
  background: var(--light);
}

.choose-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.choose-card .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: var(--secondary-light);
  border-radius: 50%;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--secondary);
  transition: var(--transition);
}

.choose-card:hover .icon {
  background: var(--secondary);
  color: var(--white);
}

.choose-card h4 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.choose-card p {
  font-size: 0.95rem;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  position: relative;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

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

.service-card .image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.service-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .image img {
  transform: scale(1.08);
}

.service-card .image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(10,31,63,0.8), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.service-card:hover .image .overlay {
  opacity: 1;
}

.service-card .image .overlay .btn {
  font-size: 0.8rem;
  padding: 8px 20px;
}

.service-card .content {
  padding: 25px;
}

.service-card .content .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--secondary-light);
  border-radius: var(--radius);
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 18px;
}

.service-card .content h4 {
  margin-bottom: 10px;
}

.service-card .content p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.service-card .content .read-more {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card .content .read-more i {
  transition: var(--transition);
  font-size: 0.75rem;
}

.service-card .content .read-more:hover i {
  margin-left: 6px;
}

/* ===== COUNTER SECTION ===== */
.counter-section {
  background: var(--primary);
  padding: 80px 0;
  position: relative;
}

.counter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/counter-bg.jpg') center/cover;
  opacity: 0.05;
}

.counter-box {
  text-align: center;
  position: relative;
  z-index: 1;
}

.counter-box .number {
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
}

.counter-box .number .plus {
  font-size: 2rem;
}

.counter-box .label {
  font-family: var(--heading-font);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--light);
}

.testimonial-card {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--secondary);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  right: 25px;
  line-height: 1;
}

.testimonial-card .stars {
  color: #f1c40f;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.testimonial-card p {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-card .author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .author .name {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.testimonial-card .author .position {
  font-size: 0.85rem;
  color: var(--gray);
}

.testimonial-slider .owl-dots {
  text-align: center;
  margin-top: 40px;
}

.testimonial-slider .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: var(--gray-light);
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  transition: var(--transition);
}

.testimonial-slider .owl-dots .owl-dot.active span {
  background: var(--secondary);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(200,164,92,0.03);
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 600px;
}

.cta-section .btn {
  margin-top: 20px;
}

/* ===== CONTACT SECTION ===== */
.contact-info-card {
  padding: 35px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
}

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

.contact-info-card .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: var(--secondary-light);
  border-radius: 50%;
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 18px;
}

.contact-info-card h5 {
  margin-bottom: 10px;
}

.contact-info-card p {
  font-size: 0.95rem;
  margin-bottom: 5px;
}

/* ===== INQUIRY FORM ===== */
.inquiry-section {
  background: var(--light);
}

.form-control, .form-select {
  padding: 14px 18px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--body-font);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(200,164,92,0.15);
}

.form-control::placeholder {
  color: #adb5bd;
}

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

/* ===== PAGE HEADER / BANNER ===== */
.page-banner {
  position: relative;
  padding: 120px 0 80px;
  background: var(--primary);
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/banner-bg.jpg') center/cover;
  opacity: 0.08;
}

.page-banner h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.page-banner .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.page-banner .breadcrumb-item {
  font-size: 0.9rem;
}

.page-banner .breadcrumb-item a {
  color: rgba(255,255,255,0.7);
}

.page-banner .breadcrumb-item.active {
  color: var(--secondary);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.4);
}

/* ===== ABOUT PAGE ===== */
.mission-vision-box {
  padding: 35px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  border-left: 4px solid var(--secondary);
  transition: var(--transition);
}

.mission-vision-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.mission-vision-box .icon {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 18px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}

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

.team-card .image {
  height: 280px;
  overflow: hidden;
}

.team-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.team-card .info {
  padding: 20px;
}

.team-card .info h5 {
  margin-bottom: 5px;
}

.team-card .info span {
  font-size: 0.85rem;
  color: var(--secondary);
  font-weight: 600;
}

/* ===== SERVICE DETAILS ===== */
.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
}

.service-detail-image img {
  width: 100%;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  margin-bottom: 30px;
}

.sidebar-card h5 {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--gray-light);
}

.sidebar-services {
  list-style: none;
  padding: 0;
}

.sidebar-services li {
  border-bottom: 1px solid var(--gray-light);
}

.sidebar-services li:last-child {
  border-bottom: none;
}

.sidebar-services li a {
  display: block;
  padding: 12px 0;
  color: var(--gray-dark);
  font-weight: 500;
  transition: var(--transition);
}

.sidebar-services li a i {
  margin-right: 10px;
  color: var(--secondary);
  font-size: 0.8rem;
  transition: var(--transition);
}

.sidebar-services li a:hover {
  color: var(--secondary);
  padding-left: 8px;
}

.contact-sidebar-box {
  background: var(--primary);
  padding: 30px;
  border-radius: var(--radius);
  color: var(--white);
}

.contact-sidebar-box h5 {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.2);
}

.contact-sidebar-box p {
  color: rgba(255,255,255,0.8);
}

.contact-sidebar-box .btn {
  width: 100%;
}

/* ===== CAREER PAGE ===== */
.job-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  margin-bottom: 25px;
  transition: var(--transition);
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.job-card .job-type {
  display: inline-block;
  padding: 4px 14px;
  background: var(--secondary-light);
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.job-card h4 {
  margin-bottom: 10px;
}

.job-card .meta {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 15px;
}

.job-card .meta i {
  margin-right: 6px;
  color: var(--secondary);
}

.job-card p {
  font-size: 0.95rem;
  margin-bottom: 18px;
}

/* ===== CONTACT PAGE ===== */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ===== FOOTER ===== */
.main-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.main-footer h5 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 15px;
}

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

.main-footer p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.main-footer .footer-links {
  list-style: none;
  padding: 0;
}

.main-footer .footer-links li {
  margin-bottom: 10px;
}

.main-footer .footer-links li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.main-footer .footer-links li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.main-footer .footer-links li a i {
  margin-right: 8px;
  font-size: 0.7rem;
  color: var(--secondary);
}

.footer-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact-item .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--secondary-light);
  border-radius: 50%;
  color: var(--secondary);
  flex-shrink: 0;
}

.footer-contact-item .text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item .text strong {
  color: rgba(255,255,255,0.9);
  display: block;
  margin-bottom: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 25px 0;
  margin-top: 60px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  margin: 0;
  color: rgba(255,255,255,0.5);
}

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

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  margin-right: 8px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-3px);
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 999;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
  background: #1ebe5c;
  color: var(--white);
  transform: scale(1.1);
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

.inquiry-float {
  position: fixed;
  bottom: 155px;
  right: 20px;
  z-index: 999;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(200,164,92,0.4);
  transition: var(--transition);
}

.inquiry-float:hover {
  background: var(--secondary-dark);
  color: var(--white);
  transform: scale(1.1);
}

.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 20px;
  z-index: 999;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 1rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-3px);
}

/* ===== INQUIRY POPUP ===== */
.inquiry-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.inquiry-popup-overlay.active {
  display: flex;
}

.inquiry-popup {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  animation: popupIn 0.4s ease;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.inquiry-popup .close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--light);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.inquiry-popup .close-btn:hover {
  background: #e74c3c;
  color: var(--white);
}

/* ===== LEGAL PAGES ===== */
.legal-content h3 {
  margin-top: 40px;
  margin-bottom: 15px;
}

.legal-content h4 {
  margin-top: 30px;
  margin-bottom: 12px;
}

.legal-content p, .legal-content li {
  color: var(--gray);
  line-height: 1.9;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 1rem;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .hero-title { font-size: 3rem; }
}

@media (max-width: 991px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.4rem; }
  
  .section-padding { padding: 70px 0; }
  
  .hero-slide { height: 70vh; min-height: 500px; }
  .hero-title { font-size: 2.5rem; }
  .hero-description { font-size: 1rem; }
  
  .navbar .nav-link {
    padding: 12px 16px !important;
  }
  
  .navbar .nav-link::after { display: none; }
  
  .navbar .nav-cta {
    margin-left: 0;
    margin-top: 10px;
    text-align: center;
  }
  
  .about-image .experience-badge {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 20px;
  }

  .counter-box .number { font-size: 2.2rem; }

  .page-banner { padding: 100px 0 60px; }
  .page-banner h1 { font-size: 2rem; }

  .cta-section h2 { font-size: 2rem; }
}

@media (max-width: 767px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
  
  .section-padding { padding: 50px 0; }
  .section-title { margin-bottom: 40px; }
  
  .hero-slide { height: 60vh; min-height: 420px; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 0.75rem; }
  
  .top-bar .text-end { text-align: left !important; margin-top: 5px; }
  
  .about-image .experience-badge {
    padding: 20px;
  }
  
  .about-image .experience-badge .number { font-size: 1.8rem; }

  .counter-box { margin-bottom: 30px; }

  .cta-section { text-align: center; }
  .cta-section h2 { font-size: 1.6rem; }

  .page-banner { padding: 80px 0 50px; }
  .page-banner h1 { font-size: 1.6rem; }

  .footer-contact-item { margin-bottom: 15px; }
  .footer-bottom { margin-top: 40px; }
}

@media (max-width: 575px) {
  .hero-slide { height: 55vh; min-height: 380px; }
  .hero-title { font-size: 1.6rem; }
  .hero-description { font-size: 0.9rem; }
  
  .btn-lg { padding: 14px 28px; font-size: 0.85rem; }

  .inquiry-popup { padding: 25px; }
}
