* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #003087;
  overflow-x: hidden;
  height: 0vh;
}


/* ==========================
   FONTS
========================== */
@font-face {
  font-family: 'Museo700';
  src: url('../fonts/Museo_700.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Museo900';
  src: url('../fonts/Museo_900.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'MuseoSans500';
  src: url('../fonts/Museo_Sans_500.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'MuseoSans700';
  src: url('../fonts/Museo_Sans_700.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

/* ==========================
   NAVBAR
========================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: height 0.4s ease, padding 0.4s ease;
}

/* container for logo + menu */
.navbar .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 33%;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

/* Logo */
.navbar .logo {
  font-family: 'Museo700', sans-serif;
  font-weight: 700;
  font-size: 2.1em;
  color: #003087;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.6s ease, transform 0.6s ease, color 0.3s ease;
  cursor: default;
  white-space: nowrap;
  flex-shrink: 0;
}

.navbar .logo a {
  text-decoration: none;
  color: #003087;
}

.navbar.scrolled .logo {
  opacity: 1;
  transform: translateY(0);
}

.navbar .logo:hover {
  cursor: pointer;
}

/* Menu */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  display: inline-block;
}

.navbar ul li a {
  font-family: 'MuseoSans700', sans-serif;
  font-weight: 700;
  font-size: 1em;
  text-decoration: none;
  color: #003087;
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.navbar ul li a:hover {
  transform: scale(1.2);
  color: #00c0ce;
}


.btn-fill a {
  font-family: 'MuseoSans700', sans-serif;
  font-weight: 300;
  font-size: 2em;
  text-decoration: none;
  color: white;
}

.btn-outline {
  margin-top: 20px;
  padding: 10px 25px;
  border: 2px solid #003087;
  background: transparent;
  color: #003087;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #003087;
  color: white;
}

.btn-fill {
  margin-top: 20px;
  padding: 10px 25px;
  background: #003087;
  border: 2px solid #003087;
  color: white;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.btn-fill:hover {
  background: #00c0ce;
  border-color: #00c0ce;
}

.btn-fill:active {
  background: #003087 !important;
  border-color: #003087 !important;
}

.btn-fill:focus {
  outline: none;
  background: #003087;
  border-color: #003087;
}

/* Responsive Buttons */
@media (max-width: 768px) {
  .btn-fill a {
    font-size: 1.5em;
  }

  .btn-fill,
  .btn-outline {
    padding: 10px 20px;
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .btn-fill a {
    font-size: 1.2em;
  }

  .btn-fill,
  .btn-outline {
    padding: 10px 20px;
    font-size: 0.9em;
    width: 100%;
  }
}


/* ==========================
   HOME SECTION TEXT
========================== */
.home-content h1 {
  font-family: 'Museo700', sans-serif;
  font-weight: 700;
  font-size: 3em;
}

.home-content p {
  font-family: 'MuseoSans500', sans-serif;
  font-weight: 500;
  font-size: 1.2em;
}

/* HOME SECTION */
.home {
  display: flex;
  height: 100vh;
  overflow: visible;
  position: relative;
}

.home-left {
  width: 70%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
  padding: 80px 40px 40px 40px;
}

.home-content {
  max-width: 900px;
}

.home-logo-wrapper {
  position: relative;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.home-floating-logo {
  width: 850px;
  position: fixed;
  top: calc(50% - 90px);
  left: 34%;
  transform: translateX(-50%);
  z-index: 1;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}

.home-content h1 {
  font-family: 'Museo700', sans-serif;
  font-weight: 700;
  font-size: 3em;
  color: #003087;
  position: relative;
  z-index: 2;
  background-color: white;
  line-height: 1.2;
  margin-bottom: 15px;
}

.home-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.fiber {
  width: 33%;
  height: 100vh;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(180deg, #003087, #00c0ce);
  overflow: hidden;
  z-index: 1;
  border-bottom-left-radius: 100% 0%;
  transition: opacity 0.8s ease;
}

.fiber canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Tablet Home Section */
@media (max-width: 768px) {
  .home {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .home-left {
    width: 100%;
    padding: 100px 20px 40px 20px;
  }

  .home-content h1 {
    font-size: 2em;
  }

  .home-content p {
    font-size: 1em;
  }

  .home-floating-logo {
    width: 500px;
    top: calc(50% - 50px);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3 !important;
  }

  .fiber {
    width: 100%;
    height: 300px;
    position: relative;
    border-bottom-left-radius: 0;
  }
}

/* Mobile Home Section */
@media (max-width: 480px) {
  .home-left {
    padding: 80px 15px 30px 15px;
  }

  .home-content h1 {
    font-size: 1.5em;
  }

  .home-content p {
    font-size: 0.9em;
  }

  .home-floating-logo {
    width: 300px;
    display: block;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto 15px auto;
    opacity: 1 !important;
    pointer-events: none;
  }

  .fiber {
    display: none;
  }
}



/* ==========================
   GLOBAL UTILITIES
========================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

h2 {
  font-family: 'Museo900', sans-serif;
  font-size: 2.5em;
  color: #003087;
  margin-bottom: 20px;
  text-transform: uppercase;
}

p {
  font-family: 'MuseoSans500', sans-serif;
  color: #555;
  line-height: 1.6;
}

/* Tablet Heading Sizes */
@media (max-width: 768px) {
  h2 {
    font-size: 1.8em;
  }
}

/* Mobile Heading Sizes */
@media (max-width: 480px) {
  h2 {
    font-size: 1.4em;
  }

  p {
    font-size: 0.95em;
  }
}

/*ABOUT US SECTION*/
.about-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #003087 0%, #00c0ce 100%);
  color: white;
  overflow: hidden;
}

/* Canvas for main2.js */
#aboutCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-header h3 {
  color: rgb(255, 255, 255);
  font-weight: 300;
  font-size: 1.1em;
  line-height: 1.6;
}

.about-header p {
  color: #f0f0f0;
  max-width: 600px;
  margin: 0 auto 50px auto;
}

.about-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.about-card {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

.circle-icon {
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin: 0 auto 20px auto;
}

.about-card h3 {
  font-family: 'MuseoSans700', sans-serif;
  font-size: 1.2em;
}

/* Tablet About */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
  }

  .about-header h3 {
    font-size: 0.95em;
  }

  .about-grid {
    gap: 30px;
  }

  .about-card {
    min-width: 200px;
    max-width: 250px;
  }
}

/* Mobile About */
@media (max-width: 480px) {
  .about-section {
    padding: 40px 15px;
  }

  .about-header h3 {
    font-size: 0.85em;
  }

  .about-grid {
    flex-direction: column;
    gap: 20px;
  }

  .about-card {
    min-width: auto;
    max-width: 100%;
  }
}

/*WHY CHOOSE US SECTION*/
.why-choose-us-section {
  padding: 80px 0;
  background: white;
}

.why-choose-us-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.why-choose-us-card {
  width: 300px;
  padding: 30px;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.why-choose-us-card:hover {
  transform: translateY(-5px);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #ffffff;
  margin: 0 auto 15px auto;
  border-radius: 8px;
}

.why-choose-us-card h4 {
  font-family: 'Museo700', sans-serif;
  color: #003087;
  margin-bottom: 5px;
}

/* Tablet Why Choose Us */
@media (max-width: 768px) {
  .why-choose-us-section {
    padding: 60px 20px;
  }

  .why-choose-us-grid {
    gap: 20px;
  }

  .why-choose-us-card {
    width: 100%;
    max-width: 280px;
  }
}

/* Mobile Why Choose Us */
@media (max-width: 480px) {
  .why-choose-us-section {
    padding: 40px 15px;
  }

  .why-choose-us-card {
    width: 100%;
    padding: 20px;
  }

  .why-choose-us-card h4 {
    font-size: 0.95em;
  }

  .why-choose-us-card p {
    font-size: 0.9em;
  }
}


/* SERVICES SECTION*/

.services-section {
  padding: 80px 0;
  background: white;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.services-card {
  width: 350px;
  padding: 30px;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.services-card:hover {
  transform: translateY(-5px);
}

.services-icon-box {
  width: 80px;
  height: 80px;
  background: #ffffff;
  margin: 0 auto 15px auto;
  border-radius: 8px;
}

.services-card h4 {
  font-family: 'Museo700', sans-serif;
  color: #003087;
  margin-bottom: 5px;
}

/* Tablet Services */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 20px;
  }

  .services-grid {
    gap: 20px;
  }

  .services-card {
    width: 100%;
    max-width: 320px;
    padding: 25px;
  }
}

/* Mobile Services */
@media (max-width: 480px) {
  .services-section {
    padding: 40px 15px;
  }

  .services-card {
    width: 100%;
    padding: 20px;
  }

  .services-card h4 {
    font-size: 0.95em;
  }

  .services-card p {
    font-size: 0.9em;
  }
}


/*OUR PARTNERS SECTION*/

.our-partners-section {
  padding: 80px 0;
  background: #ddd;
  background-image: url('../img/fiber-optic.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.our-partners-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.486);
  z-index: 0;
}

.our-partners-section .container {
  position: relative;
  z-index: 1;
}

.our-partners-section h2 {
  color: white;
}

.our-partners-card h4 {
  font-family: 'Museo700', sans-serif;
  color: #003087;
  margin-bottom: 5px;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  position: relative;
}

.carousel-container {
  flex: 1;
  max-width: 900px;
  overflow: hidden;
  border-radius: 10px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.carousel-btn {
  color: rgb(50, 50, 50);
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background-color: #909090;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dot.active {
  background: #003087;
}

.our-partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.our-partners-card {
  width: 200px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  flex-shrink: 0;
  transition: transform 0.3s;
  background: rgba(255, 255, 255, 0.674);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

/* Tablet Partners */
@media (max-width: 768px) {
  .our-partners-section {
    padding: 60px 20px;
    background-attachment: scroll;
  }

  .carousel-wrapper {
    gap: 10px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .our-partners-card {
    width: 150px;
    padding: 15px;
  }
}

/* Mobile Partners */
@media (max-width: 480px) {
  .our-partners-section {
    padding: 40px 15px;
  }

  .carousel-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
    display: none;
  }

  .carousel-dots {
    margin-top: 15px;
  }

  .our-partners-card {
    width: 100%;
    max-width: 150px;
  }

  .our-partners-card h4 {
    font-size: 0.9em;
  }
}


/* ==========================
   AREA CHECKER
========================== */
.area-checker-section {
  background: linear-gradient(90deg, #003087, #00c0ce);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 400px;
}

.fiber-checker {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.fiber-checker canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.area-checker-section .container {
  position: relative;
  z-index: 2;
}

.area-checker-section h2,
.area-checker-section p {
  color: white;
}

.suggestions-list {
  position: absolute;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  max-height: 250px;
  overflow-y: auto;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  top: 100%;
  left: 0;
  padding: 0;
  margin: 0;
  margin-top: 0;
  display: none;
}

.suggestions-list:not(:empty) {
  display: block;
}

.suggestion-item {
  padding: 12px 15px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95em;
  color: #333;
  transition: all 0.2s ease;
  text-align: left;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover,
.suggestion-item.active {
  background-color: #003087;
  color: white;
}

.suggestion-item.no-results {
  color: #999;
  cursor: default;
  font-size: 0.9em;
  text-align: center;
}

.suggestion-item.no-results:hover {
  background-color: transparent;
  color: #999;
}

.checker-form {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
}

.barangay-input-wrapper {
  position: relative;
  width: 250px;
}

.checker-form select,
.checker-form input {
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  font-family: 'MuseoSans500', sans-serif;
  width: 250px;
}

.checker-form button {
  padding: 15px 30px;
  background: #003087;
  color: white;
  border-radius: 20px;
  border: 1px solid white;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}

.checker-form button:hover {
  background: #00c0ce;
  color: #ffffff;
}


#checkerResult {
  display: none;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1em;
  font-weight: 500;
  animation: slideIn 0.3s ease-out;
  margin-top: 15px;
  position: relative;
  z-index: 3;
}

#checkerResult p {
  margin: 0;
  font-size: 1.5em;
}

.checker-success {
  color: #22c55e;
  border-radius: 8px;
  padding: 12px 15px;
}

.checker-error {
  color: #d32f2f;
  border-radius: 8px;
  padding: 12px 15px;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.checker-form button {
  cursor: pointer;
  transition: all 0.3s ease;
}

.checker-form button:active {
  transform: scale(0.98);
}

/* Tablet Area Checker */
@media (max-width: 768px) {
  .area-checker-section {
    padding: 50px 20px;
  }

  .checker-form {
    gap: 10px;
  }

  .checker-form select,
  .checker-form input {
    width: 100%;
    max-width: 250px;
  }

  .checker-form button {
    width: 100%;
    max-width: 100px;
  }
}

/* Mobile Area Checker */
@media (max-width: 480px) {
  .area-checker-section {
    padding: 40px 15px;
  }

  .area-checker-section h2 {
    font-size: 1.5em;
  }

  .area-checker-section p {
    font-size: 0.9em;
  }

  .checker-form {
    flex-direction: column;
    gap: 10px;
  }

  .checker-form select,
  .checker-form input {
    width: 100%;
    padding: 12px 15px;
  }

  .checker-form button {
    width: 100%;
    padding: 12px 20px;
  }
}

/* ==========================
   PRICING SECTION
========================== */
.pricing-section {
  padding: 100px 0;
  background: #f9f9f9;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.price-card {
  background: white;
  padding: 40px;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
}

.price-card.featured {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 48, 135, 0.15);
  z-index: 2;
}

.price-card h3 {
  font-family: 'Museo900', sans-serif;
  font-size: 2.5em;
  color: #003087;
  margin-bottom: 5px;
}

.price-card p {
  font-family: 'Museo700', sans-serif;
  margin-bottom: 5px;
}

.price-card .speed {
  font-family: 'MuseoSans700', sans-serif;
  font-size: 1.2em;
  color: #00c0ce;
  margin-bottom: 10px;
}

.apply-button a {
  text-decoration: none;
  color: white;
  font: 'Museo700', sans-serif;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 900;
  cursor: pointer;
}

.apply-button button {
  font: 'Museo700', sans-serif;
  padding: 15px 30px;
  background: #003087;
  color: white;
  border: 2px solid white;
  border-radius: 50px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.3s;
}

.apply-button button:hover {
  background: #00c0ce;
}


/* Tablet Pricing */
@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 20px;
  }

  .pricing-grid {
    gap: 15px;
    margin-bottom: 50px;
  }

  .price-card {
    width: 100%;
    max-width: 280px;
    padding: 30px;
  }

  .price-card.featured {
    transform: scale(1.05);
  }

  .price-card h3 {
    font-size: 2em;
  }
}

/* Mobile Pricing */
@media (max-width: 480px) {
  .pricing-section {
    padding: 40px 15px;
  }

  .pricing-grid {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .price-card {
    width: 100%;
    padding: 25px;
  }

  .price-card.featured {
    transform: scale(1);
  }

  .price-card h3 {
    font-size: 1.5em;
  }

  .price-card p {
    font-size: 0.95em;
  }

  .apply-button button {
    width: 100%;
  }
}


/* ==========================
   FAQs SECTION
========================== */
.faq-section {
  padding: 80px 0;
  background: #eef2f5;
}

.faq-layout {
  display: flex;
  align-items: flex-start;
  text-align: left;
  gap: 50px;
}

.faq-left {
  width: 40%;
  margin-top: 150px;
}

.faq-right {
  width: 60%;
  max-height: 500px;
  overflow-y: scroll;
}

.faq-left h2 {
  font-size: 3em;
  line-height: 1.1;
}

.faq-left span {
  color: #00c0ce;
}

details {
  background: white;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

summary {
  font-family: 'Museo700', sans-serif;
  font-size: 1.1em;
  color: #003087;
  outline: none;
  transition: all 0.3s ease;
  user-select: none;
}

.more-faqs {
  text-decoration: none;
  color: #00c0ce;
}

details > *:not(summary) {
  animation: slideDown 0.3s ease-out;
}

details[open] {
  animation: slideUp 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    max-height: 1000px;
    transform: translateY(0);
  }
}
details[open] summary {
  margin-bottom: 10px;
  color: #00c0ce;
}

details p {
  color: #666;
}

details ul {
  color: #666;
  margin-left: 40px;
}

details li {
  color: #666;
}

/* Tablet FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 20px;
  }

  .faq-layout {
    flex-direction: column;
    gap: 30px;
  }

  .faq-left {
    width: 100%;
    margin-top: 0;
  }

  .faq-right {
    width: 100%;
    max-height: none;
    overflow-y: visible;
  }

  .faq-left h2 {
    font-size: 2em;
  }
}

/* Mobile FAQ */
@media (max-width: 480px) {
  .faq-section {
    padding: 40px 15px;
  }

  .faq-left h2 {
    font-size: 1.5em;
  }

  details {
    padding: 15px;
    margin-bottom: 10px;
  }

  summary {
    font-size: 0.95em;
  }

  details p {
    font-size: 0.9em;
  }
}

/* Video Guide*/
.video-guide-section {
  padding: 80px 0;
  background: #ddd;
  background-image: url('../img/server.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.video-guide-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.486);
  z-index: 0;
}

.video-guide-section h2 {
  color: white;
}

.video-guide-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.video-guide-placeholder {
  width: 45%;
  min-width: 250px;
  background: white;
  border-radius: 10px;
  padding: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-guide-placeholder h3 {
  margin: 0 0 15px 0;
  font-size: 1.2em;
  color: #003087;
  text-align: center;
}

.video-guide-placeholder video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}

/* Tablet Video Guide */
@media (max-width: 768px) {
  .video-guide-section {
    padding: 60px 20px;
    background-attachment: scroll;
  }

  .video-guide-grid {
    gap: 20px;
  }

  .video-guide-placeholder {
    width: 100%;
    max-width: 400px;
    height: 250px;
  }
}

/* Mobile Video Guide */
@media (max-width: 480px) {
  .video-guide-section {
    padding: 40px 15px;
  }

  .video-guide-grid {
    flex-direction: column;
    gap: 15px;
  }

  .video-guide-placeholder {
    width: 100%;
    height: 200px;
    font-size: 0.9em;
  }
}
/* *Client Guide */
.guide-section {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.guide-steps {
  max-width: 700px;
  margin: 50px auto 0 auto;
  text-align: left;
}

.guide-steps a {
  text-decoration: none;
  color: #00c0ce;
}

.guide-steps a::after {
  text-decoration: none;
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.step-icon {
  background: #eef2f500;
  color: #003087;
  min-width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Museo900', sans-serif;
  font-size: 1.5em;
  flex-shrink: 0;
}

.step h4 {
  font-family: 'MuseoSans700', sans-serif;
  font-size: 1.2em;
  color: #003087;
  margin-bottom: 5px;
}

/* Tablet Guide */
@media (max-width: 768px) {
  .guide-section {
    padding: 60px 20px;
  }

  .guide-steps {
    max-width: 100%;
  }

  .step h4 {
    font-size: 1em;
  }
}

/* Mobile Guide */
@media (max-width: 480px) {
  .guide-section {
    padding: 40px 15px;
  }

  .guide-steps {
    margin-top: 30px;
  }

  .step {
    gap: 15px;
    margin-bottom: 20px;
  }

  .step-icon {
    min-width: 40px;
    height: 40px;
    font-size: 1.2em;
  }

  .step h4 {
    font-size: 0.95em;
  }

  .step-text p {
    font-size: 0.9em;
  }
}

/*CONTACT & FOOTER */
.contact-section {
  padding: 80px 0;
  background: #f4f4f4;
  box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.contact-item {
  text-align: center;
  flex: 1;
}

.c-icon {
  font-size: 2em;
  margin-bottom: 10px;
}

footer {
  background: black;
  color: white;
  padding: 30px 0;
  text-align: center;
  font-family: 'MuseoSans500', sans-serif;
  font-size: 0.9em;
}

.footer-logo {
  max-width: 100%;
  height: auto;
  width: 300px;
}

/* Tablet Contact & Footer */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 20px;
  }

  .contact-grid {
    gap: 30px;
  }

  .contact-item {
    flex: 1;
    min-width: 200px;
  }

  .footer-logo {
    width: 250px;
  }
}

/* Mobile Contact & Footer */
@media (max-width: 480px) {
  .contact-section {
    padding: 40px 15px;
  }

  .contact-grid {
    flex-direction: column;
    gap: 25px;
  }

  .contact-item p {
    font-size: 0.9em;
  }

  footer {
    padding: 20px 15px;
  }

  footer p {
    font-size: 0.8em;
  }

  .footer-logo {
    width: 200px;
  }
}