/* =========================================
   ZIVA GROUP OF COMPANIES - PREMIUM STYLES
   Colors: Gold #D4AF37, Black #000000, Navy #0A1F44
   ========================================= */
/* technical services */

.services {
  padding: 60px 20px;
  background: #f0f7ff;
  text-align: center;
  font-family: Arial;
}

.services h2 {
  font-size: 34px;
  color: #0a3d62;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.card h3 {
  padding: 15px;
  color: #0a3d62;
  font-size: 18px;
}



.products-section {
  padding: 60px 20px;
  background: #f4f9ff;
}

.section-title {
  text-align: center;
  font-size: 34px;
  color: #0a3d62;
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  padding-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-card h3 {
  color: #0a3d62;
  padding: 15px;
}

.product-card p {
  padding: 0 15px;
  color: #555;
}

.product-card h4 {
  margin: 15px;
  color: #0a3d62;
}

.product-card ul {
  padding: 0 20px;
}

.product-card ul li {
  list-style: disc;
  margin-left: 15px;
  color: #333;
}



.projects {
  padding: 60px 20px;
  background: #f0f7ff;
}

.section-title {
  text-align: center;
  font-size: 34px;
  color: #0a3d62;
  margin-bottom: 40px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.project-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  padding-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card h3 {
  padding: 15px;
  color: #0a3d62;
}

.project-card p {
  padding: 0 15px;
  color: #555;
  font-size: 14px;
}

.vision-mission {
  padding: 60px 20px;
  background: linear-gradient(180deg, #f4f9ff, #e6f2ff);
}

.section-title {
  text-align: center;
  font-size: 34px;
  color: #0a3d62;
  margin-bottom: 40px;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.vm-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.vm-card i {
  font-size: 40px;
  color: #0a3d62;
  margin-bottom: 15px;
}

.vm-card h3 {
  color: #0a3d62;
  margin-bottom: 10px;
}

.vm-card p {
  color: #555;
}

.vm-card:hover {
  transform: translateY(-10px);
}

.industries {
  padding: 60px 20px;
  background: #f4f9ff;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #0a3d62;
  margin-bottom: 30px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.industry-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.industry-card i {
  font-size: 30px;
  color: #0a3d62;
  margin-bottom: 10px;
}

.industry-card:hover {
  transform: translateY(-10px);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.center-text {
  text-align: center;
  max-width: 800px;
  margin: auto;
  color: #555;
}

.strengths-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.strengths-grid span {
  background: #0a3d62;
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
}

.contact-box {
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}
.products {
  padding: 60px 20px;
  background: #f4f9ff;
  text-align: center;
}

.products h2 {
  font-size: 34px;
  color: #0a3d62;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-card h3 {
  color: #0a3d62;
  padding: 15px;
}

.product-card p {
  padding: 0 15px 20px;
  color: #555;
}
   /* LOGO CONTAINER */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* LOGO IMAGE */
.logo-img {
    max-height: 80px;   /* desktop size */
    width: auto;
    transition: all 0.3s ease;
}

/* hover effect */
.logo-img:hover {
    transform: scale(1.05);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .logo-img {
        max-height: 55px;  /* mobile size */
    }
}

@media (max-width: 480px) {
    .logo-img {
        max-height: 45px;
    }
}



.surface-area {
  padding: 90px 20px;
  background: #f5f5f5;
}

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

/* TEXT */
.surface-title {
  font-size: 38px;
  color: #111;
  margin-bottom: 20px;
}

.surface-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 16px;
}

/* IMAGES */
.surface-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.surface-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  transition: 0.4s ease;
}

/* BIG IMAGE */
.surface-wide {
  grid-column: span 2;
}

/* HOVER */
.surface-gallery img:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .surface-wrap {
    grid-template-columns: 1fr;
  }

  .surface-gallery img {
    height: 200px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #D4AF37;
  --gold-light: #E5C658;
  --black: #000000;
  --navy: #0A1F44;
  --navy-dark: #06132C;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --gray: #888888;
  --text: #333333;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy-dark);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.top-bar a { color: var(--gold); transition: var(--transition); }
.top-bar a:hover { color: var(--white); }
.top-bar-left span { margin-right: 20px; }
.top-bar-left i, .top-bar-right i { color: var(--gold); margin-right: 6px; }
.top-bar-right a { margin-left: 15px; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  border-bottom: 3px solid var(--gold);
}
.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 24px;
  border-radius: 8px;
  font-family: 'Playfair Display', Georgia, serif;
}
.logo-text h1 {
  font-size: 22px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
}
.logo-text p {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 12px 18px;
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
}
.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
}
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after { width: 60%; }
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--gold); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-top: 3px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--navy);
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  transition: var(--transition);
}
.dropdown-menu li a:hover {
  background: var(--navy);
  color: var(--gold);
  padding-left: 25px;
}
.dropdown > a::before {
  content: '▾';
  margin-right: 5px;
  font-size: 10px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--navy);
  cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(rgba(10,31,68,0.75), rgba(0,0,0,0.65)),
              url('https://images.pexels.com/photos/28350363/pexels-photo-28350363.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(45deg, rgba(212,175,55,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeInUp 1s ease;
}
.hero-tagline {
  display: inline-block;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
  border-left: 3px solid var(--gold);
  padding-left: 15px;
}
.hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
  font-family: 'Playfair Display', Georgia, serif;
}
.hero h1 span { color: var(--gold); display: block; }
.hero p {
  font-size: 18px;
  margin-bottom: 35px;
  opacity: 0.95;
  max-width: 600px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212,175,55,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

/* ===== SECTION STYLES ===== */
.section { padding: 90px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-gray { background: var(--gray-light); }
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title .sub {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.section-title h2 {
  font-size: 42px;
  color: var(--navy);
  font-weight: 800;
  font-family: 'Playfair Display', Georgia, serif;
  margin-bottom: 15px;
}
.section-dark .section-title h2 { color: var(--white); }
.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 16px;
}
.section-dark .section-title p { color: rgba(255,255,255,0.8); }
.title-divider {
  width: 80px;
  height: 3px;
  background: var(--gold);
  margin: 20px auto;
}

/* ===== PAGE BANNER (sub-pages) ===== */
.page-banner {
  background: linear-gradient(rgba(10,31,68,0.85), rgba(0,0,0,0.75)),
              url('https://images.pexels.com/photos/10549876/pexels-photo-10549876.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover;
  color: var(--white);
  padding: 100px 0 70px;
  text-align: center;
  position: relative;
}
.page-banner h1 {
  font-size: 48px;
  font-weight: 800;
  font-family: 'Playfair Display', Georgia, serif;
  margin-bottom: 10px;
  color: var(--white);
}
.page-banner .breadcrumb {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.page-banner .breadcrumb a { color: var(--gold); }
.page-banner .breadcrumb a:hover { color: var(--white); }

/* ===== INTRO / ABOUT ===== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.intro-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.intro-image::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 100px; height: 100px;
  border: 4px solid var(--gold);
  z-index: 2;
  border-radius: 4px;
}
.intro-image::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  border: 4px solid var(--gold);
  z-index: 2;
  border-radius: 4px;
}
.intro-content h2 {
  font-size: 38px;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 20px;
  font-family: 'Playfair Display', Georgia, serif;
}
.intro-content .sub {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.intro-content p {
  margin-bottom: 18px;
  color: var(--text);
  line-height: 1.8;
}
.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 25px;
}
.intro-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.intro-feature i { color: var(--gold); font-size: 18px; }

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10,31,68,0.15);
  border-color: var(--gold);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--white);
  font-size: 32px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  transform: rotateY(180deg);
}
.service-card h3 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
}
.service-card p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
}
.service-link {
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  transition: var(--transition);
}
.service-link:hover { color: var(--navy); padding-left: 5px; }

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.why-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid #eee;
}
.why-card:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-5px);
}
.why-card i {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.why-card h4 {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
  transition: var(--transition);
}
.why-card:hover h4 { color: var(--white); }
.why-card p {
  font-size: 14px;
  color: var(--gray);
  transition: var(--transition);
}
.why-card:hover p { color: rgba(255,255,255,0.85); }

/* ===== STATS / COUNTERS ===== */
.stats-section {
  background: linear-gradient(rgba(10,31,68,0.92), rgba(10,31,68,0.92)),
              url('https://images.pexels.com/photos/3709404/pexels-photo-3709404.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover fixed;
  padding: 70px 0;
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat-item h3 {
  font-size: 48px;
  color: var(--gold);
  font-weight: 800;
  font-family: 'Playfair Display', Georgia, serif;
}
.stat-item p {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-top: 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  border-top: 3px solid var(--gold);
}
.testimonial-card .quote {
  font-size: 50px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  font-family: serif;
}
.testimonial-card p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.8;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.author-avatar {
  width: 55px; height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
}
.author-info h5 {
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 2px;
}
.author-info span {
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stars { color: var(--gold); margin-bottom: 10px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(rgba(10,31,68,0.92), rgba(0,0,0,0.85)),
              url('https://images.pexels.com/photos/19664340/pexels-photo-19664340.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover fixed;
  padding: 80px 0;
  color: var(--white);
  text-align: center;
}
.cta-section h2 {
  font-size: 38px;
  margin-bottom: 15px;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--white);
}
.cta-section h2 span { color: var(--gold); }
.cta-section p {
  font-size: 17px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* ===== SERVICE PAGE CONTENT ===== */
.service-banner {
  background: linear-gradient(rgba(10,31,68,0.85), rgba(0,0,0,0.75)),
              url('https://images.pexels.com/photos/33587048/pexels-photo-33587048.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover;
  color: var(--white);
  padding: 100px 0 70px;
  text-align: center;
}
.service-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}
.service-main h2 {
  color: var(--navy);
  font-size: 32px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', Georgia, serif;
}
.service-main p {
  margin-bottom: 18px;
  line-height: 1.8;
  color: var(--text);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.feature-item {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.feature-item:hover { transform: translateX(5px); }
.feature-item i {
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 12px;
  display: block;
}
.feature-item h4 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 17px;
}
.feature-item p { font-size: 14px; color: var(--gray); }

.benefits-list {
  background: var(--navy);
  padding: 30px;
  border-radius: 8px;
  color: var(--white);
}
.benefits-list h3 {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 22px;
}
.benefits-list ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}
.benefits-list ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 800;
  font-size: 18px;
}

.industries-section {
  background: var(--gray-light);
  padding: 60px 0;
  margin-top: 60px;
}
.industries-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}
.industry-tag {
  background: var(--white);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid transparent;
  transition: var(--transition);
}
.industry-tag:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ===== ABOUT PAGE ===== */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}
.mv-card {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-top: 4px solid var(--gold);
  transition: var(--transition);
}
.mv-card:hover { transform: translateY(-5px); }
.mv-card i {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.mv-card h3 {
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 15px;
}
.mv-card p { color: var(--text); line-height: 1.8; }

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}
.value-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 8px;
  transition: var(--transition);
}
.value-item:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.value-item .icon-circle {
  width: 70px; height: 70px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--navy);
  font-size: 28px;
}
.value-item h4 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 18px;
}
.value-item p { color: var(--gray); font-size: 14px; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  padding: 40px 30px;
  border-radius: 8px;
}
.contact-info-card h3 {
  color: var(--gold);
  margin-bottom: 25px;
  font-size: 24px;
  font-family: 'Playfair Display', Georgia, serif;
}
.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
  align-items: flex-start;
}
.contact-item .icon {
  width: 45px; height: 45px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.contact-item h5 {
  color: var(--gold);
  margin-bottom: 5px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-item p { color: rgba(255,255,255,0.9); font-size: 14px; line-height: 1.6; }
.contact-item a { color: rgba(255,255,255,0.9); transition: var(--transition); }
.contact-item a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.contact-form h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 28px;
  font-family: 'Playfair Display', Georgia, serif;
}
.contact-form > p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 14px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  background: var(--gray-light);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.map-container {
  margin-top: 50px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 400px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.whatsapp-float-form {
  background: #25D366;
  color: var(--white);
  padding: 15px 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 15px;
  font-weight: 600;
  width: 100%;
  justify-content: center;
}
.whatsapp-float-form:hover { background: #128C7E; transform: translateY(-3px); }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h4 {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  font-weight: 700;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--gold);
}
.footer-col p { line-height: 1.8; font-size: 14px; margin-bottom: 15px; }
.footer-col .logo { margin-bottom: 20px; }
.footer-col .logo-text h1 { color: var(--white); font-size: 18px; }
.footer-col ul li {
  margin-bottom: 12px;
  font-size: 14px;
}
.footer-col ul li a {
  transition: var(--transition);
  display: inline-block;
}
.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 5px;
}
.footer-col ul li i { color: var(--gold); margin-right: 8px; font-size: 12px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  align-items: flex-start;
}
.footer-contact-item i {
  color: var(--gold);
  margin-top: 4px;
  font-size: 14px;
}
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-icons a {
  width: 38px; height: 38px;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}
.social-icons a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
}
.footer-bottom span { color: var(--gold); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px; height: 50px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-5px);
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 55px; height: 55px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 5px 25px rgba(37,211,102,0.4);
  z-index: 999;
  animation: pulse 2s infinite;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fade-in { animation: fadeInUp 0.8s ease both; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .intro-grid, .service-content, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .mission-vision { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: 100%; left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .nav-menu.active { max-height: 800px; }
  .nav-menu > li > a { padding: 15px 20px; border-bottom: 1px solid #eee; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .dropdown.open .dropdown-menu { max-height: 1000px; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 15px; }
  .section { padding: 60px 0; }
  .section-title h2, .intro-content h2, .cta-section h2 { font-size: 28px; }
  .page-banner h1 { font-size: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .top-bar { display: none; }
  .intro-features { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
}
@media (max-width: 480px) {
  .container { padding: 0 15px; }
  .logo-text h1 { font-size: 16px; }
  .logo-text p { font-size: 8px; }
  .stat-item h3 { font-size: 36px; }
  .testimonials-grid, .services-grid { grid-template-columns: 1fr; }
}
