/* ==============================
   BEST VISION ENTERPRISES
   ============================== */

:root {
  --primary: #0a2e5c;
  --secondary: #f97316;
  --light: #f8f9fa;
  --dark: #1e293b;
  --white: #ffffff;
  --footer: #071d38;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

section {
  padding: 100px 0;
}

.btn {
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary {
  background: var(--primary);
  border: none;
}

.btn-primary:hover {
  background: #082446;
  transform: translateY(-2px);
}

.btn-warning {
  background: var(--secondary);
  border: none;
  color: #fff;
}

.btn-warning:hover {
  background: #e66b0f;
  color: #fff;
  transform: translateY(-2px);
}

/*==========================
NAVBAR
==========================*/

.navbar {
  padding: 18px 0;
}

.nav-link {
  font-weight: 600;

  color: #0a2e5c;

  margin: 0 12px;

  transition: 0.3s;
}

.nav-link:hover {
  color: #f97316;
}

.nav-link.active {
  color: #f97316;
}

.btn-warning {
  background: #f97316;

  color: #fff;

  border: none;

  font-weight: 600;
}

.btn-warning:hover {
  background: #0a2e5c;

  color: #fff;
}

.navbar-brand img {
  max-height: 70px;
  width: auto;
}

.navbar {
  transition: 0.35s ease;
}

.navbar.scrolled {
  background: #fff !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/*==================================
            HERO
===================================*/

.hero {
  background: linear-gradient(135deg, #eef6ff 0%, #ffffff 60%, #fff7ef 100%);

  overflow: hidden;

  position: relative;
}

.hero::before {
  content: "";

  position: absolute;

  width: 600px;

  height: 600px;

  background: #f97316;

  opacity: 0.08;

  border-radius: 50%;

  top: -250px;

  right: -200px;
}

.hero-title {
  font-size: 58px;

  font-weight: 700;

  color: #0a2e5c;

  line-height: 1.2;
}

.hero-title span {
  color: #f97316;
}

.hero-description {
  font-size: 19px;

  color: #666;

  line-height: 1.9;
}

.hero-badge {
  display: inline-block;

  background: #fff;

  color: #f97316;

  padding: 10px 20px;

  border-radius: 50px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  font-weight: 600;
}

.hero-image {
  width: 100%;

  max-width: 600px;

  animation: float 6s ease-in-out infinite;
}

.hero-features {
  display: flex;

  gap: 30px;

  flex-wrap: wrap;
}

.hero-features div {
  font-weight: 600;

  color: #0a2e5c;
}

.hero-features i {
  color: #f97316;

  margin-right: 8px;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0);
  }
}

/*============================
      TRUSTED BY
=============================*/

.trusted-by {
  background: #ffffff;
}

.partner-card {
  background: #fff;

  padding: 25px;

  border-radius: 15px;

  transition: 0.3s;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.partner-card:hover {
  transform: translateY(-8px);
}

.partner-card img {
  max-height: 70px;

  filter: grayscale(100%);

  transition: 0.4s;
}

.partner-card:hover img {
  filter: none;
}

/*============================
      STATISTICS
=============================*/

.stats {
  background: #0a2e5c;

  color: #fff;
}

.stat-box h2 {
  font-size: 50px;

  font-weight: 700;

  color: #f97316;
}

.stat-box p {
  font-size: 18px;
}

/*================================
      FEATURED SERVICES
================================*/

.featured-services {
  background: #f8fafc;
}

.section-badge {
  display: inline-block;
  background: #0a2e5c;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-title {
  color: var(--primary);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
}

.section-description {
  max-width: 760px;
  margin: auto;
  color: #64748b;
  line-height: 1.8;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  height: 100%;
  transition: 0.35s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-top: 5px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-top: 5px solid #f97316;
}

.service-icon {
  width: 75px;
  height: 75px;
  background: #0a2e5c;
  color: #fff;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  margin-bottom: 25px;
}

.service-card:hover .service-icon {
  background: #f97316;
}

.service-card h4 {
  color: #0a2e5c;
  margin-bottom: 15px;
}

.service-card p {
  color: #666;
  line-height: 1.8;
}

.service-link {
  color: #f97316;
  font-weight: 600;
  text-decoration: none;
}

.service-link i {
  transition: 0.3s;
}

.service-link:hover i {
  margin-left: 8px;
}

/*====================================
        FEATURED PRODUCTS
=====================================*/

.featured-products {
  background: #fff;
}

.product-card {
  border-radius: 20px;

  overflow: hidden;

  background: #fff;

  transition: 0.4s;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
  transform: translateY(-12px);
}

.product-card img {
  height: 240px;

  width: 100%;

  object-fit: cover;
}

.product-content {
  padding: 25px;
}

.product-content span {
  color: #f97316;

  font-weight: 600;
}

.product-content h4 {
  margin: 12px 0 20px;

  color: #0a2e5c;
}

/* ==========================
   ABOUT
========================== */

.about-section {
  background: #fff;
}

.about-section img {
  border-radius: 25px;
}

.about-box {
  background: #fff;

  border-radius: 15px;

  padding: 20px;

  text-align: center;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

  transition: 0.3s;
}

.about-box:hover {
  transform: translateY(-8px);
}

.about-box h3 {
  color: #f97316;

  font-size: 34px;

  margin-bottom: 10px;
}

.about-box span {
  color: #666;

  font-weight: 600;
}

/* WHY CHOOSE US */

.why-us {
  background: #ffffff;
}

.feature-card {
  background: #fff;

  border-radius: 20px;

  padding: 40px;

  height: 100%;

  transition: 0.35s;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
  transform: translateY(-10px);

  background: #0a2e5c;

  color: #fff;
}

.feature-card i {
  font-size: 45px;

  color: #f97316;

  margin-bottom: 20px;
}

.feature-card h4 {
  margin-bottom: 20px;

  font-weight: 700;
}

.feature-card p {
  color: #666;
}

.feature-card:hover p {
  color: #fff;
}

/*==========================
TOP BAR
==========================*/

.top-bar {
  background: #0a2e5c;

  color: #fff;

  padding: 10px 0;

  font-size: 14px;
}

.top-bar span {
  margin-right: 20px;
}

.top-bar a {
  color: #fff;

  margin-left: 15px;

  font-size: 18px;

  transition: 0.3s;
}

.top-bar a:hover {
  color: #f97316;
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.card-shadow {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: none;
  border-radius: 20px;
}

/*====================================
        OUR PROCESS
====================================*/

.our-process {
  background: #f8fafc;
}

.process-card {
  position: relative;

  background: #fff;

  border-radius: 20px;

  padding: 45px 30px;

  text-align: center;

  height: 100%;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.35s;
}

.process-card:hover {
  transform: translateY(-10px);
}

.process-number {
  position: absolute;

  top: 20px;

  right: 20px;

  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: var(--secondary);

  color: #fff;

  font-weight: 700;

  display: flex;

  align-items: center;

  justify-content: center;
}

.process-card i {
  font-size: 55px;

  color: var(--primary);

  margin-bottom: 25px;
}

.process-card h4 {
  color: var(--primary);

  margin-bottom: 15px;
}

.process-card p {
  color: #666;

  line-height: 1.8;
}

/*====================================
            PORTFOLIO
====================================*/

.portfolio-section {
  background: #fff;
}

.portfolio-card {
  position: relative;

  overflow: hidden;

  border-radius: 20px;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);

  cursor: pointer;
}

.portfolio-card img {
  width: 100%;

  height: 280px;

  object-fit: cover;

  transition: 0.5s;
}

.portfolio-card:hover img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;

  left: 0;

  right: 0;

  bottom: 0;

  padding: 25px;

  background: linear-gradient(
    to top,
    rgba(10, 46, 92, 0.95),
    rgba(10, 46, 92, 0.2)
  );

  color: #fff;
}

.portfolio-overlay h4 {
  margin-bottom: 8px;

  font-weight: 700;
}

.portfolio-overlay p {
  margin: 0;

  font-size: 15px;

  opacity: 0.95;
}

/*====================================
        TESTIMONIALS
====================================*/

.testimonials {
  background: #f8fafc;
}

.testimonial-card {
  background: #fff;

  padding: 35px;

  border-radius: 20px;

  height: 100%;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.35s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.stars {
  color: #fbbf24;

  font-size: 22px;

  margin-bottom: 20px;
}

.testimonial-card p {
  color: #64748b;

  line-height: 1.8;

  margin-bottom: 25px;
}

.client {
  display: flex;

  align-items: center;

  gap: 15px;
}

.client-avatar {
  width: 60px;

  height: 60px;

  border-radius: 50%;

  background: var(--primary);

  color: #fff;

  display: flex;

  justify-content: center;

  align-items: center;

  font-weight: 700;

  font-size: 20px;
}

.client h5 {
  margin: 0;

  color: var(--primary);
}

.client span {
  color: #64748b;

  font-size: 14px;
}

/*====================================
                FAQ
====================================*/

.faq-section {
  background: #ffffff;
}

.accordion-item {
  border: none;

  border-radius: 15px;

  margin-bottom: 20px;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.accordion-button {
  font-weight: 600;

  color: var(--primary);

  padding: 22px;
}

.accordion-button:not(.collapsed) {
  background: var(--primary);

  color: #fff;
}

.accordion-body {
  line-height: 1.8;

  color: #64748b;
}

/*====================================
        CALL TO ACTION
====================================*/

.cta-section {
  background: linear-gradient(135deg, #0a2e5c, #144a87);

  color: #fff;

  padding: 90px 0;
}

.cta-badge {
  display: inline-block;

  background: rgba(255, 255, 255, 0.15);

  color: #fff;

  padding: 8px 20px;

  border-radius: 30px;

  font-size: 14px;

  font-weight: 600;

  letter-spacing: 1px;
}

.cta-title {
  font-size: 46px;

  font-weight: 700;

  line-height: 1.3;
}

.cta-title span {
  color: #f97316;
}

.cta-text {
  margin-top: 20px;

  font-size: 18px;

  line-height: 1.9;

  color: #dbeafe;

  max-width: 700px;
}

.cta-section .btn {
  padding: 15px 35px;

  border-radius: 50px;

  font-weight: 600;
}

.cta-section .btn-outline-light:hover {
  background: #fff;

  color: #0a2e5c;
}

/*====================================
        CONTACT PREVIEW
====================================*/

.contact-preview {
  background: #f8fafc;
}

.contact-card,
.contact-form-card {
  background: #fff;

  border-radius: 20px;

  padding: 40px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

  height: 100%;
}

.contact-item {
  display: flex;

  gap: 20px;

  margin-bottom: 30px;
}

.contact-icon {
  width: 60px;

  height: 60px;

  border-radius: 50%;

  background: #0a2e5c;

  color: #fff;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 24px;

  flex-shrink: 0;
}

.contact-item h5 {
  color: #0a2e5c;

  margin-bottom: 8px;
}

.contact-item p {
  color: #64748b;

  margin: 0;

  line-height: 1.8;
}

.contact-form-card .form-control {
  border-radius: 12px;

  padding: 14px;

  border: 1px solid #ddd;
}

.contact-form-card .form-control:focus {
  border-color: #f97316;

  box-shadow: none;
}

.contact-form-card button {
  padding: 14px 35px;
}

/*====================================
            FOOTER
====================================*/

.footer {
  background: #071d38;

  color: #dbeafe;

  padding: 80px 0 20px;
}

.footer-logo {
  height: 75px;
}

.footer h5 {
  color: #fff;

  margin-bottom: 25px;

  font-weight: 700;
}

.footer p {
  line-height: 1.9;
}

.footer ul {
  list-style: none;

  padding: 0;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  color: #dbeafe;

  text-decoration: none;

  transition: 0.3s;
}

.footer ul li a:hover {
  color: #f97316;

  padding-left: 8px;
}

.social-links {
  margin-top: 25px;
}

.social-links a {
  width: 45px;

  height: 45px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  background: rgba(255, 255, 255, 0.08);

  color: #fff;

  border-radius: 50%;

  margin-right: 10px;

  transition: 0.35s;

  text-decoration: none;
}

.social-links a:hover {
  background: #f97316;

  transform: translateY(-5px);
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);

  margin: 50px 0 25px;
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}

/*==========================
BACK TO TOP
==========================*/

.back-to-top {
  position: fixed;

  right: 25px;

  bottom: 25px;

  width: 55px;

  height: 55px;

  background: #f97316;

  color: #fff;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  text-decoration: none;

  font-size: 22px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);

  transition: 0.35s;

  z-index: 999;
}

.back-to-top:hover {
  background: #0a2e5c;

  color: #fff;

  transform: translateY(-5px);
}

/*==========================
PAGE HEADER
==========================*/

.page-header {
  background:
    linear-gradient(rgba(10, 46, 92, 0.9), rgba(10, 46, 92, 0.9)),
    url("../images/banner.jpg");

  background-size: cover;

  background-position: center;

  color: #fff;

  padding: 140px 0;

  text-align: center;
}

.page-header h1 {
  font-size: 56px;

  font-weight: 700;
}

.page-header p {
  max-width: 700px;

  margin: auto;

  margin-top: 20px;

  font-size: 20px;

  color: #dbeafe;
}

/*==========================
ABOUT COMPANY
==========================*/

.about-company {
  background: #fff;
}

/*==========================
MISSION
==========================*/

.mission-section {
  background: #f8fafc;
}

.mission-card {
  background: #fff;

  padding: 40px;

  text-align: center;

  border-radius: 20px;

  height: 100%;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.35s;
}

.mission-card:hover {
  transform: translateY(-10px);
}

.mission-card i {
  font-size: 55px;

  color: #f97316;

  margin-bottom: 20px;
}

.mission-card h3 {
  color: #0a2e5c;

  margin-bottom: 20px;
}

/*====================================
            TIMELINE
====================================*/

.timeline-section {
  background: #ffffff;
}

.timeline {
  position: relative;

  max-width: 900px;

  margin: auto;
}

.timeline::before {
  content: "";

  position: absolute;

  left: 25px;

  top: 0;

  width: 4px;

  height: 100%;

  background: #0a2e5c;
}

.timeline-item {
  position: relative;

  padding-left: 80px;

  margin-bottom: 60px;
}

.timeline-dot {
  position: absolute;

  left: 12px;

  width: 30px;

  height: 30px;

  border-radius: 50%;

  background: #f97316;

  border: 5px solid #fff;

  box-shadow: 0 0 0 4px #0a2e5c;
}

.timeline-content {
  background: #fff;

  padding: 30px;

  border-radius: 18px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.timeline-content h4 {
  color: #0a2e5c;

  margin-bottom: 8px;
}

.timeline-content small {
  color: #f97316;

  font-weight: 600;
}

.timeline-content p {
  margin-top: 15px;

  color: #64748b;

  line-height: 1.8;
}

/*====================================
        WHY COMPANY
====================================*/

.why-company {
  background: #f8fafc;
}

.choose-card {
  background: #fff;

  padding: 40px 30px;

  border-radius: 20px;

  text-align: center;

  height: 100%;

  transition: 0.35s;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.choose-card:hover {
  transform: translateY(-10px);

  background: #0a2e5c;
}

.choose-icon {
  width: 80px;

  height: 80px;

  margin: auto;

  border-radius: 50%;

  background: #f97316;

  color: #fff;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 34px;

  margin-bottom: 25px;
}

.choose-card h4 {
  color: #0a2e5c;

  margin-bottom: 15px;

  transition: 0.3s;
}

.choose-card p {
  color: #64748b;

  line-height: 1.8;

  transition: 0.3s;
}

.choose-card:hover h4,
.choose-card:hover p {
  color: #fff;
}

/*====================================
            TEAM SECTION
====================================*/

.team-section {
  background: #ffffff;
}

.team-card {
  background: #fff;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

  transition: 0.35s;

  text-align: center;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card img {
  width: 100%;

  height: 320px;

  object-fit: cover;
}

.team-content {
  padding: 30px;
}

.team-content h4 {
  color: #0a2e5c;

  margin-bottom: 8px;
}

.team-content p {
  color: #f97316;

  font-weight: 600;

  margin-bottom: 20px;
}

.team-social {
  display: flex;

  justify-content: center;

  gap: 15px;
}

.team-social a {
  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: #0a2e5c;

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  transition: 0.3s;
}

.team-social a:hover {
  background: #f97316;
}

/*====================================
        COMPANY STATS
====================================*/

.company-stats {
  background: #f8fafc;
}

.company-stats .stat-card {
  background: #fff;

  border-radius: 20px;

  padding: 40px 25px;

  text-align: center;

  height: 100%;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

  transition: 0.35s;
}

.company-stats .stat-card:hover {
  transform: translateY(-10px);

  background: #0a2e5c;
}

.company-stats .stat-card i {
  font-size: 48px;

  color: #f97316;

  margin-bottom: 20px;
}

.company-stats .stat-card h2 {
  font-size: 48px;

  font-weight: 700;

  color: #0a2e5c;

  margin-bottom: 10px;

  transition: 0.3s;
}

.company-stats .stat-card p {
  color: #64748b;

  font-weight: 600;

  margin: 0;

  transition: 0.3s;
}

.company-stats .stat-card:hover h2,
.company-stats .stat-card:hover p {
  color: #fff;
}

/*====================================
    CERTIFICATIONS
====================================*/

.certifications-section {
  background: #ffffff;
}

.certificate-card {
  background: #fff;

  border-radius: 20px;

  padding: 40px 30px;

  text-align: center;

  height: 100%;

  transition: 0.35s;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

  border-top: 5px solid transparent;
}

.certificate-card:hover {
  transform: translateY(-10px);

  border-top: 5px solid #f97316;
}

.certificate-icon {
  width: 90px;

  height: 90px;

  margin: auto;

  border-radius: 50%;

  background: #0a2e5c;

  color: #fff;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 40px;

  margin-bottom: 25px;

  transition: 0.35s;
}

.certificate-card:hover .certificate-icon {
  background: #f97316;
}

.certificate-card h4 {
  color: #0a2e5c;

  margin-bottom: 15px;
}

.certificate-card p {
  color: #64748b;

  line-height: 1.8;
}

/*====================================
        PARTNERS
====================================*/

.partners-section {
  background: #f8fafc;
}

.partner-box {
  background: #fff;

  padding: 30px;

  border-radius: 20px;

  text-align: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  transition: 0.35s;
}

.partner-box:hover {
  transform: translateY(-8px);
}

.partner-box img {
  max-height: 80px;

  filter: grayscale(100%);

  transition: 0.35s;
}

.partner-box:hover img {
  filter: none;
}

/*====================================
        ABOUT CTA
====================================*/

.about-cta {
  background: linear-gradient(135deg, #0a2e5c, #123e7a);

  color: #fff;

  padding: 80px 0;
}

.about-cta h2 {
  font-size: 42px;

  font-weight: 700;

  margin-bottom: 20px;
}

.about-cta p {
  font-size: 18px;

  opacity: 0.9;

  margin-bottom: 0;
}

.about-cta .btn {
  margin-top: 15px;
}

/*====================================
        SERVICES PAGE
====================================*/

.services-intro {
  background: #fff;
}

.service-details {
  padding: 100px 0;
}

.service-content {
  padding-left: 30px;
}

.service-list {
  list-style: none;

  padding: 0;

  margin-top: 30px;
}

.service-list li {
  margin-bottom: 15px;

  padding-left: 35px;

  position: relative;

  font-size: 17px;
}

.service-list li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: #f97316;

  font-weight: bold;

  font-size: 22px;
}

/*==========================
PRODUCTS PAGE
==========================*/

.products-intro {
  background: #fff;
}

.products-section {
  padding: 80px 0;
}

.products-section .product-card {
  height: 100%;
}

/* =================================
   REQUEST QUOTE
================================= */

.quote-section {
  background: #f8fafc;
}

.quote-form-card {
  background: #ffffff;
  padding: 45px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.quote-form-card h3 {
  color: var(--primary);
  font-size: 30px;
}

.quote-form-card .form-label {
  color: var(--primary);
  font-weight: 600;
}

.quote-form-card .form-control,
.quote-form-card .form-select {
  min-height: 52px;
  border-radius: 10px;
  border: 1px solid #dee2e6;
}

.quote-form-card textarea.form-control {
  min-height: 150px;
}

.quote-form-card .form-control:focus,
.quote-form-card .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.15);
}

.quote-info {
  margin-top: 35px;
}

.quote-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
}

.quote-icon {
  min-width: 55px;
  height: 55px;
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.quote-info-item h5 {
  color: var(--primary);
  margin-bottom: 7px;
}

.quote-info-item p {
  color: #666;
  margin: 0;
  line-height: 1.7;
}

/* =================================
   QUOTE SUCCESS
================================= */

.success-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: #f8fafc;
}

.success-card {
  max-width: 650px;
  margin: auto;
  background: #fff;
  padding: 60px 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.success-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: #0a2e5c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
}

.success-card h1 {
  color: #0a2e5c;
}

/* =================================
   CONTACT PAGE
================================= */

.page-header {
  padding: 100px 0;
  background: linear-gradient(135deg, #eef6ff 0%, #ffffff 60%, #fff7ef 100%);
}

.page-header h1 {
  color: var(--primary);
  font-size: 52px;
}

.page-header p {
  max-width: 700px;
  margin: 15px auto 0;
  color: #666;
  font-size: 18px;
}

.contact-section {
  background: #fff;
}

.contact-info-card {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}

.contact-icon {
  min-width: 55px;
  height: 55px;
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.contact-info-card h5 {
  color: var(--primary);
  margin-bottom: 7px;
}

.contact-info-card p {
  color: #666;
  margin: 0;
  line-height: 1.7;
}

.contact-form-card {
  background: #fff;
  padding: 45px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-card h3 {
  color: var(--primary);
  font-size: 30px;
}

.contact-form-card .form-label {
  color: var(--primary);
  font-weight: 600;
}

.contact-form-card .form-control {
  min-height: 52px;
  border-radius: 10px;
}

.contact-form-card textarea.form-control {
  min-height: 170px;
}

.contact-form-card .form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.15);
}

.contact-cta {
  background: var(--primary);
  color: #fff;
}

.contact-cta i.bi-whatsapp {
  font-size: 55px;
  color: var(--secondary);
}

.contact-cta h2 {
  margin-top: 20px;
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.8);
}

/* =================================
   PORTFOLIO
================================= */

.portfolio-intro {
  background: #fff;
}

.portfolio-section {
  background: #f8fafc;
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.portfolio-filter-btn {
  border: 1px solid #dbe3ec;
  background: #fff;
  color: var(--primary);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.portfolio-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: 0.35s;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.portfolio-image {
  height: 260px;
  position: relative;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 46, 92, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.35s;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-view {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
}

.portfolio-content {
  padding: 25px;
}

.portfolio-content span {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 700;
}

.portfolio-content h4 {
  color: var(--primary);
  margin: 10px 0;
}

.portfolio-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
}

.portfolio-cta {
  background: var(--primary);
  color: #fff;
}

.portfolio-cta h2 {
  font-size: 40px;
}

.portfolio-cta p {
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================
   SITE FOOTER
========================================== */

.site-footer {
  background: #071f3d;
  color: #fff;
  padding-top: 70px;
}

.footer-logo {
  width: 190px;
  max-width: 100%;
  background: #fff;
  padding: 8px 15px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 420px;
}

.footer-title {
  color: #fff;
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #f97316;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #f97316;
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #f97316;
  transform: translateY(-3px);
}

.footer-contact > div {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact i {
  color: #f97316;
  font-size: 20px;
  flex-shrink: 0;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-contact a:hover {
  color: #f97316;
}

.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* ==========================================
   PAGE HEADER
========================================== */

.page-header {
  padding: 100px 0;
  background: linear-gradient(135deg, #eef6ff 0%, #ffffff 60%, #fff7ef 100%);
}

.page-header h1 {
  color: #0a2e5c;
  font-size: 48px;
}

.page-header p {
  max-width: 700px;
  margin: 20px auto 0;
  color: #666;
  font-size: 18px;
  line-height: 1.8;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 991px) {
  .navbar {
    padding: 12px 0;
  }

  .navbar-brand img {
    height: 55px;
  }

  .nav-link {
    margin: 5px 0;
  }

  .top-bar {
    text-align: center;
  }

  .top-bar .text-end {
    text-align: center !important;
  }

  .hero-title {
    font-size: 42px;
  }

  .section-title {
    font-size: 34px;
  }

  .page-header h1 {
    font-size: 38px;
  }
}

@media (max-width: 575px) {
  section {
    padding: 65px 0;
  }

  .hero-title {
    font-size: 35px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-features {
    gap: 15px;
  }

  .section-title {
    font-size: 30px;
  }

  .page-header {
    padding: 70px 0;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .footer-bottom {
    text-align: center;
  }
}

/* ================================
   FOOTER
================================ */

.footer {
  background: #0a2e5c;
  color: #ffffff;
  padding: 80px 0 25px;
}

.footer-logo {
  width: auto;
  max-width: 220px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  display: block;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 420px;
}

.footer h5 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
}

.footer h5::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #f97316;
  margin-top: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #f97316;
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 15px;
}

.footer-contact i {
  color: #f97316;
  font-size: 18px;
  margin-top: 3px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-contact a:hover {
  color: #f97316;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
  font-size: 18px;
}

.social-links a:hover {
  background: #f97316;
  transform: translateY(-4px);
}

.footer hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 50px 0 25px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom strong {
  color: #f97316;
}

/* ================================
   BACK TO TOP
================================ */

.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f97316;
  color: #ffffff;

  border-radius: 50%;

  text-decoration: none;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);

  opacity: 0;
  visibility: hidden;

  transition: 0.3s;

  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #ffffff;
  color: #0a2e5c;
  transform: translateY(-4px);
}

/* ================================
   PRODUCTS PAGE
================================ */

.page-hero {
  background: linear-gradient(135deg, #eef6ff 0%, #ffffff 60%, #fff7ef 100%);

  padding: 100px 0;
}

.page-hero h1 {
  color: #0a2e5c;
  font-size: 50px;
}

.page-hero p {
  max-width: 700px;
  margin: 20px auto 0;
  color: #666;
  font-size: 18px;
  line-height: 1.8;
}

.products-page {
  background: #f8fafc;
}

.product-card {
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-image {
  height: 250px;
  overflow: hidden;
  background: #f1f5f9;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-content {
  padding: 28px;
}

.product-content span {
  display: inline-block;
  color: #f97316;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-content h4 {
  color: #0a2e5c;
  margin-bottom: 12px;
}

.product-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.products-cta {
  background: #0a2e5c;
  color: #fff;
  padding: 80px 0;
}

.products-cta .cta-title {
  color: #fff;
}

.products-cta .cta-text {
  color: rgba(255, 255, 255, 0.8);
  max-width: 750px;
  line-height: 1.8;
}

/* =========================================
   GALLERY
========================================= */

.gallery-section {
  background: #f8f9fa;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  height: 280px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 25px 20px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  transform: translateY(10px);
  transition: 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  margin-bottom: 5px;
  font-weight: 700;
}

.gallery-overlay p {
  margin-bottom: 0;
  font-size: 14px;
}
