/* =====================================================
   M4 SOLUTIONS LIMITED - MAIN STYLESHEET
   Professional Corporate Website
   ===================================================== */

/* CSS CUSTOM PROPERTIES */
:root {
  /* Brand Colors */
  --primary-blue: #0a2558;
  --primary-blue-light: #1a3a6e;
  --primary-blue-dark: #061830;
  --accent-red: #d32f2f;
  --accent-red-hover: #b71c1c;
  --accent-yellow: #fbc02d;
  --accent-yellow-hover: #f9a825;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #f0f2f5;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --black: #212529;

  /* Typography */
  --font-heading: "Montserrat", "Oswald", sans-serif;
  --font-body: "Open Sans", "Roboto", sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-max: 1200px;
  --border-radius: 8px;
  --border-radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
  --shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--accent-red),
    var(--accent-yellow)
  );
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition-normal);
}

.navbar.scrolled {
  background: var(--primary-blue);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-yellow);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-blue);
  font-weight: 800;
}

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

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--accent-yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-yellow);
  transition: var(--transition-normal);
}

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

.nav-cta {
  background: var(--accent-red);
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--border-radius);
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition-normal);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 37, 88, 0.85) 0%,
    rgba(10, 37, 88, 0.7) 50%,
    rgba(10, 37, 88, 0.8) 100%
  );
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: var(--white);
  padding: 20px;
  max-width: 900px;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-subheadline {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.hero-subheadline span {
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--accent-red);
  color: var(--white);
  border: 2px solid var(--accent-red);
}

.btn-primary:hover {
  background: var(--accent-red-hover);
  border-color: var(--accent-red-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border: 2px solid #25d366;
}

.btn-whatsapp:hover {
  background: #128c7e;
  border-color: #128c7e;
  transform: translateY(-3px);
}

/* =====================================================
   ABOUT SECTION (HOME PAGE)
   ===================================================== */
.about-preview {
  padding: var(--section-padding);
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 4px solid var(--accent-yellow);
  border-radius: var(--border-radius-lg);
  z-index: -1;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-content p {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-feature-text {
  font-weight: 600;
  color: var(--dark-gray);
}

/* =====================================================
   SERVICES SECTION (HOME PAGE)
   ===================================================== */
.services-preview {
  padding: var(--section-padding);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 35px 30px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--accent-red),
    var(--accent-yellow)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-blue-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent-yellow);
  font-size: 2rem;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  background: linear-gradient(
    135deg,
    var(--accent-red),
    var(--accent-red-hover)
  );
  color: var(--white);
  transform: scale(1.1);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary-blue);
  margin-bottom: 12px;
  font-weight: 700;
}

.service-card p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.service-link {
  color: var(--accent-red);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-link:hover {
  color: var(--accent-red-hover);
  gap: 10px;
}

/* =====================================================
   WHY CHOOSE US SECTION
   ===================================================== */
.why-choose-us {
  padding: var(--section-padding);
  background: var(--primary-blue);
  color: var(--white);
}

.why-choose-us .section-title {
  color: var(--white);
}

.why-choose-us .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: var(--accent-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-blue);
  font-size: 1.75rem;
}

.why-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.why-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent-yellow), #fdd835);
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--primary-blue-dark);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background: var(--primary-blue);
  color: var(--white);
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--border-radius);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-normal);
}

.cta-btn:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* =====================================================
   PAGE BANNERS
   ===================================================== */
.page-banner {
  height: 50vh;
  min-height: 400px;
  background: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.page-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-blue-dark)
  );
}

.page-banner-content {
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
  color: var(--accent-yellow);
}

/* =====================================================
   ABOUT PAGE STYLES
   ===================================================== */
.about-full {
  padding: var(--section-padding);
}

.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-full-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-full-content p {
  color: var(--medium-gray);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.mission-vision {
  padding: var(--section-padding);
  background: var(--off-white);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mv-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--accent-red),
    var(--accent-red-hover)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--white);
  font-size: 2rem;
}

.mv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-weight: 700;
}

.mv-card p {
  color: var(--medium-gray);
}

/* =====================================================
   SERVICES PAGE STYLES
   ===================================================== */
.services-full {
  padding: var(--section-padding);
}

.services-full .services-grid {
  margin-bottom: 60px;
}

.service-detail-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
}

.service-detail-card:hover {
  box-shadow: var(--shadow-hover);
}

.service-detail-image {
  height: 200px;
  width: 100%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 4rem;
  overflow: hidden;
  border-radius: 15px;
  
}

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

.service-detail-content {
  padding: 30px;
}

.service-detail-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-weight: 700;
}

.service-detail-content p {
  color: var(--medium-gray);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.service-feature-tag {
  background: var(--off-white);
  color: var(--primary-blue);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* =====================================================
   GALLERY PAGE STYLES
   ===================================================== */
.gallery-section {
  padding: var(--section-padding);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition-normal);
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.filter-btn i {
  font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-blue);
  color: var(--white);
}

.gallery-grid.filtering {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light-gray);
  cursor: pointer;
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease, display 0.3s ease;
}

.gallery-item.hide {
  display: none;
}

.gallery-item.show {
  display: block;
  animation: fadeInUp 0.4s ease forwards;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(10, 37, 88, 0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  opacity: 0;
  transition: var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.gallery-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.gallery-info h3 {
  color: rgba(255, 255, 255, 0.922);
  font-size: 0.9rem;
}
.gallery-info h3:hover {
  color: rgb(237, 237, 61);
  font-size: 0.9rem;
}

/* =====================================================
   CONTACT PAGE STYLES
   ===================================================== */
.contact-section {
  padding: var(--section-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-info {
  background: var(--primary-blue);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  color: var(--white);
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--accent-yellow);
}

.contact-details p {
  color: var(--white);
  margin: 0;
  font-size: 1rem;
}

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

.contact-details a:hover {
  color: var(--accent-yellow);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition-normal);
}

.social-link:hover {
  background: var(--accent-yellow);
  color: var(--primary-blue);
  transform: translateY(-3px);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 25px;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-normal);
  background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: var(--white);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--accent-red);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--border-radius);
  transition: var(--transition-normal);
}

.submit-btn:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.map-section {
  padding-bottom: var(--section-padding);
}

.map-container {
  height: 400px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--primary-blue-dark);
  color: var(--white);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about .logo {
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.footer-slogan {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-yellow);
  font-style: italic;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-red);
  border-radius: 2px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-yellow);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-contact-item i {
  color: var(--accent-yellow);
  margin-top: 4px;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-normal);
}

.footer-socials a:hover {
  background: var(--accent-yellow);
  color: var(--primary-blue);
  transform: translateY(-3px);
}
.dev-link:hover {
  color: yellow;
}

/* =====================================================
   FLOATING WHATSAPP BUTTON
   ===================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.75rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: var(--transition-normal);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background: #128c7e;
}

/* =====================================================
   SCROLL TO TOP BUTTON
   ===================================================== */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--accent-red-hover);
  transform: translateY(-3px);
}

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

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

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

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

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

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

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }

  .hero-headline {
    font-size: 2.75rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-headline {
    font-size: 2.5rem;
  }

  .hero-subheadline {
    font-size: 1.1rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .about-full-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image::before {
    display: none;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary-blue);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero {
    min-height: 500px;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .hero-subheadline {
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
  }

  .page-banner h1 {
    font-size: 2.25rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form-wrapper {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero-headline {
    font-size: 1.75rem;
  }

  .logo-title {
    font-size: 1rem;
  }

  .logo-icon {
    width: 42px;
    height: 42px;
  }

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

  .cta-content h2 {
    font-size: 1.75rem;
  }

  .mv-card {
    padding: 30px 20px;
  }
}
