/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Poppins", sans-serif; /* Keeping Poppins for nav as requested */
}

:root {
  --primary: #005DB9;
  --primary-light: #287dd1;
  --secondary: #FF6B6B;
  --dark: #222832;
  --dark-light: #333C4A;
  --light: #F8F9FA;
  --gray: #ADB5BD;
  --success: #4CAF50;
  --error: #F44336;
  --transition: all 0.3s ease;
}
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #f4f9fb; /* Background color for the entire website, including individual sections */
  --default-color: #364167; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #005DB9; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #F1481D; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #7BD3DD; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #f4f9fb; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #364167; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #7BD3DD; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #bbd8ee;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0c2a47;
  --default-color: #DCE8F7;
  --heading-color: #ffffff;
  --surface-color: #005DB9;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
* {
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
    color: #364167;
    background-color: #fff; /* Added a default background for consistency */
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

p {
  font-size: 18px;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);

}

h1 {
  font-size: 2rem; /* Increased from default (e.g., 2rem) */
  -webkit-background-clip: text;
  background-color: white;
  background-clip: text;
  margin-bottom: 25px;
  line-height: 1.2;}

h2 {
  font-size: 2rem; /* Increased from default (e.g., 1.75rem) */
}

h3 {
  font-size: 1.75rem; /* Increased from default (e.g., 1.5rem) */
}

h4 {
  font-size: 1.5rem; /* Increased from default (e.g., 1.25rem) */
}

h5 {
  font-size: 1.25rem; /* Increased from default (e.g., 1rem) */
}

h6 {
  font-size: 1rem; /* Increased from default (e.g., 0.875rem) */
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Form Container Styling */
.php-email-form {
  background-color: #f8fafd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
}

/* Form Input Styling */
.php-email-form .form-control {
  border: 1px solid #c0dbfd;
  font-size: 14px;
  padding: 12px 15px;
  width: 100%;
  margin-bottom: 15px;
  background-color: #ffffff;
  color: #555555;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.php-email-form .form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
  outline: none;
}

/* Form Textarea Styling */
.php-email-form textarea {
  resize: none;
  min-height: 150px;
}

/* Form Button Styling */
.php-email-form button[type="submit"] {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  border: 0;
  color: white;
  text-transform: uppercase;
  background: linear-gradient(135deg, #007bff, #00d6a3);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.php-email-form button[type="submit"]:hover {
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
  transform: translateY(-3px);
}

/* Validation Messages */
.php-email-form .error-message,
.php-email-form .sent-message {
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  padding: 10px;
  border-radius: 6px;
}

.php-email-form .error-message {
  background-color: #ff3860;
  color: #ffffff;
}

.php-email-form .sent-message {
  background-color: #28a745;
  color: #ffffff;
}

/* Loading Spinner */
.php-email-form .loading {
  display: none;
  text-align: center;
  margin-top: 10px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  border: 3px solid #007bff;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Newsletter Form */
.newsletter-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.newsletter-form .loading {
  font-size: 14px;
  color: var(--accent-color);
  margin-top: 10px;
}

.newsletter-form .error-message {
  font-size: 14px;
  color: #ff3860;
  margin-top: 10px;
}

.newsletter-form .sent-message {
  font-size: 14px;
  color: #28a745;
  margin-top: 10px;
}
/*--------------------------------------------------------------
End of General Styling & Shared Classes
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Navbar - Código Completo Solucionado
--------------------------------------------------------------*/
.navbar {
    background: transparent; /* Fondo inicial transparente */
    backdrop-filter: none; /* Sin blur inicial */
    padding: 0.5rem 1rem; /* Padding original */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* Asegura que esté sobre otro contenido */
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease; /* Transiciones suaves */
    display: flex; /* Contenedor flex para alinear items */
    align-items: center; /* Alineación vertical */
}

.navbar.scrolled {
    background: #005DB9; /* Color de fondo al hacer scroll */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Sombra sutil */
    padding: 0.5rem 1rem; /* Padding ajustado al hacer scroll */
}

.navbar-container { /* Contenedor principal dentro del navbar */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Padding horizontal estándar del contenedor */
    display: flex;
    justify-content: space-between; /* Logo a la izq, menú y toggle a la der */
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white; /* Color del texto del logo */
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    width: 150px; /* Ancho del logo */
    height: auto; /* Mantener proporción */
}

/* Estilos para el Menú de Navegación Principal (Desktop) */
.nav-menu {
    display: flex; /* Por defecto para escritorio */
    list-style: none;
    align-items: center;
    gap: 0.5rem; /* Espacio entre elementos del menú */
    margin: 0; /* Reset de margen */
    padding: 0; /* Reset de padding */
}

.nav-item {
    position: relative; /* Para los dropdowns */
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--nav-color, white); /* Color de enlace */
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap; /* Evitar que el texto se parta */
    font-family: var(--nav-font, "Poppins", sans-serif); /* Fuente del nav */
}

.nav-link:hover,
.nav-link.active { /* Para el enlace activo de la página actual */
    background: rgba(255, 255, 255, 0.1);
    color: var(--nav-hover-color, #7BD3DD); /* Color hover/active */
    transform: translateY(-2px);
}

.nav-link.active { /* Estilo más fuerte para el enlace activo */
    background: rgba(255, 255, 255, 0.2);
}

/* Dropdowns (Desktop) */
.dropdown {
    position: relative;
}

.dropdown .nav-link .chevron { /* Para el ícono de flecha */
    transition: transform 0.3s ease;
    font-size: 0.7em;
    margin-left: 5px;
}

.dropdown:hover > .nav-link .chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--nav-dropdown-background-color, rgba(30, 60, 114, 0.98)); /* Fondo de dropdown */
    backdrop-filter: blur(15px);
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px); /* Efecto de aparición desde arriba */
    transition: opacity 0.3s ease, visibility 0s linear 0.3s, transform 0.3s ease; /* Transición suave */
    list-style: none;
    padding: 0.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100; /* Para estar sobre otros elementos */
}

.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease, visibility 0s linear 0s, transform 0.3s ease;
}

.dropdown-menu .nav-link { /* Estilo para los items dentro del dropdown */
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    color: var(--nav-dropdown-color, #FFF); /* Color de texto para items de dropdown */
    width: 100%; /* Asegurar que ocupen todo el ancho */
    justify-content: flex-start; /* Alinear texto a la izquierda */
}

.dropdown-menu .nav-link:hover {
    background: var(--nav-dropdown-hover-color, rgba(255, 255, 255, 0.15)); /* Color de hover para items */
    color: var(--nav-hover-color, #7BD3DD); /* Color de texto al hacer hover */
    transform: translateX(5px); /* Ligero desplazamiento al hacer hover */
}

/* Botones CTA en el Navbar */
.cta-buttons-wrapper {
    margin-left: 1rem; /* Espacio antes de los botones CTA */
}

.cta-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.call-button {
    background: transparent;
    border: 2px solid var(--accent-color, #ff6b35); /* Color de acento para borde */
    color: var(--accent-color, #ff6b35); /* Color de acento para texto */
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

.call-button:hover {
    background: var(--accent-color, #ff6b35);
    color: var(--contrast-color, white);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.book-button {
    background: linear-gradient(45deg, var(--accent-color, #ff6b35), color-mix(in srgb, var(--accent-color, #f7931e), #000 10%));
    color: var(--contrast-color, white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    font-size: 0.85rem;
    white-space: nowrap;
}

.book-button::before { /* Efecto de brillo al pasar el mouse */
    content: ''; 
    position: absolute; 
    top: 0; 
    left: -100%; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.book-button:hover::before { 
    left: 100%; 
}

.book-button:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5); 
}

.book-button:active { 
    transform: translateY(-1px); 
}

/* Botón de Menú Móvil (Hamburguesa) */
.mobile-menu-toggle {
    display: none; /* Oculto en desktop */
    background: none;
    border: none;
    color: var(--nav-color, white); /* Color del ícono */
    font-size: 1.8rem; /* Tamaño del ícono */
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.3s ease, color 0.3s ease;
    z-index: 1001; /* Para estar sobre el menú si se superpone */
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Estilos para Navegación Móvil */
@media (max-width: 992px) {
    .nav-menu { /* Cuando está en modo móvil y no activo */
        display: none;
        position: fixed;
        top: 70px; /* Altura de tu navbar */
        right: 0; /* Inicia fuera de la pantalla */
        width: 280px; /* Ancho del menú móvil */
        height: calc(100vh - 70px); /* Altura completa menos el navbar */
        background: var(--primary); /* Use primary blue color for consistency */
        flex-direction: column;
        align-items: stretch; /* Los items ocupan todo el ancho */
        gap: 0;
        padding: 1.5rem;
        transform: translateX(100%); /* Inicia fuera de pantalla a la derecha */
        transition: transform 0.3s ease-in-out;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
        overflow-y: auto; /* Para menús largos */
    }

    .nav-menu.active { /* Cuando el menú móvil está activo */
        display: flex;
        transform: translateX(0); /* Desliza hacia adentro */
    }

    .nav-item {
        width: 100%;
        margin: 0; /* Quitar margen lateral en móvil */
    }

    .nav-link {
        width: 100%;
        justify-content: flex-start; /* Alinear texto e icono a la izquierda */
        padding: 0.75rem 1rem; /* Padding para items móviles */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
        color: white !important; /* Forzar color blanco para mejor contraste */
        border-radius: 8px; /* Add border radius for better mobile UX */
        margin-bottom: 5px; /* Add spacing between nav items */
        transition: all 0.3s ease;
        font-weight: 500; /* Hacer el texto un poco más bold para mejor legibilidad */
    }

    .nav-link:hover, .nav-link.active {
        background: var(--primary-light); /* Use lighter blue for hover/active states */
        color: white !important; /* Forzar color blanco */
        transform: none; /* Quitar efecto de hover de escritorio */
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        font-weight: 600; /* Hacer el texto más bold en hover */
    }

    /* Dropdowns en Móvil (estilo acordeón) - Versión limpia */
    .dropdown-menu {
        position: static; 
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent; /* Completamente transparente */
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin-top: 0.5rem;
        padding-left: 0; /* Sin padding adicional */
        max-height: 0; /* Oculto por defecto */
        overflow: hidden;
        transition: max-height 0.3s ease-out; /* Transición suave para acordeón */
    }

    .dropdown.active > .dropdown-menu { /* Cuando el LI.dropdown tiene clase .active */
        max-height: 500px; /* Altura suficiente para mostrar contenido */
        padding: 0.5rem 0; /* Padding mínimo */
    }
    
    .dropdown.active > .nav-link .chevron { /* Rotar flecha en dropdown activo */
        transform: rotate(180deg);
    }

    .dropdown-menu .nav-link {
        padding: 0.6rem 1rem 0.6rem 2rem; /* Mayor indentación visual */
        border-bottom: none; 
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.9) !important; 
        margin-bottom: 3px;
        font-weight: 400; 
        border-radius: 6px;
        margin-left: 1rem; /* Indentación adicional */
        border-left: 2px solid rgba(255, 255, 255, 0.2); /* Línea sutil para indicar jerarquía */
    }

    .dropdown-menu .nav-link:hover {
        background: rgba(255, 255, 255, 0.1); /* Hover muy sutil */
        color: white !important; 
        font-weight: 500; 
        border-left-color: rgba(255, 255, 255, 0.5); /* Línea más visible en hover */
    }

    .cta-buttons-wrapper {
        margin-left: 0;
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        width: 100%;
    }

    .call-button, .book-button {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        font-weight: 600; /* Asegurar que el texto sea visible */
        text-shadow: none; /* Quitar sombra de texto que pueda afectar legibilidad */
    }
    
    .call-button {
        color: var(--accent-color) !important; /* Forzar color para mejor contraste */
        border-color: var(--accent-color);
    }
    
    .call-button:hover {
        color: white !important; /* Forzar color blanco en hover */
    }
    
    .book-button {
        color: white !important; /* Forzar color blanco */
    }

    .mobile-menu-toggle {
        display: block; /* Mostrar botón de hamburguesa en móvil */
    }
}

/*--------------------------------------------------------------
End of Navbar
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* Hero Section Styles */
.hero-header {
    background: linear-gradient(135deg, #0c2a47 0%, #005DB9 100%);
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
    color: white;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("assets/img/hero-bg-1.png");
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(123, 211, 221, 0.2);
    color: #7BD3DD;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

.hero-title span {
    color: #FF6B35;
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #FF6B35;
    transform-origin: left;
    animation: widthAnim 1.5s ease-in-out forwards;
    animation-delay: 0.7s;
    transform: scaleX(0);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.proof-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.proof-badge i {
    color: #FF6B35;
}

.hero-buttons {
    display: flex;
    flex-wrap: nowrap; /* Mantiene los botones en una sola fila */
    gap: 15px;
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.9s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.btn-primary {
    background: #FF6B35;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
    white-space: nowrap; /* Evita que el texto se envuelva */
    flex-shrink: 1; /* Permite que el botón se encoja si es necesario */
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap; /* Evita que el texto se envuelva */
    flex-shrink: 1; /* Permite que el botón se encoja si es necesario */
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: float 3s ease-in-out infinite alternate;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 3;
}

.wave1 use {
    animation: move-forever1 10s linear infinite;
    animation-delay: -2s;
    fill: white;
    opacity: 0.2;
}

.wave2 use {
    animation: move-forever2 8s linear infinite;
    animation-delay: -2s;
    fill: white;
    opacity: 0.3;
}

.wave3 use {
    animation: move-forever3 6s linear infinite;
    animation-delay: -2s;
    fill: white;
    opacity: 0.5;
}

/* Keyframes para animaciones */
@keyframes move-forever1 {
    0% { transform: translate(85px, 0%); }
    100% { transform: translate(-90px, 0%); }
}

@keyframes move-forever2 {
    0% { transform: translate(-90px, 0%); }
    100% { transform: translate(85px, 0%); }
}

@keyframes move-forever3 {
    0% { transform: translate(-90px, 0%); }
    100% { transform: translate(85px, 0%); }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes widthAnim {
    to { transform: scaleX(1); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .hero-proof {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-header {
        padding: 120px 0 90px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .proof-badge {
        font-size: 13px;
        padding: 7px 14px;
    }
}

@media (max-width: 576px) {
    .hero-header {
        padding: 100px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-proof {
        flex-direction: column;
        align-items: center;
    }
    
    /* Ajustes para mantener los botones en una fila */
    .hero-buttons {
        /* No cambiar a dirección de columna */
        justify-content: center;
        /* Reducir el espacio entre botones */
        gap: 10px;
    }
    
    .btn-primary, .btn-secondary {
        /* Reducir el tamaño del texto y padding */
        padding: 10px 15px;
        font-size: 13px;
        /* No usar width: 100% para evitar que ocupen toda la línea */
    }
    
    /* Reducir el tamaño del icono */
    .btn-primary i, .btn-secondary i {
        font-size: 90%;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    /* Ajustes adicionales para pantallas muy pequeñas */
    .btn-primary, .btn-secondary {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    /* Reducir aún más el gap entre botones */
    .hero-buttons {
        gap: 8px;
    }
}
/*--------------------------------------------------------------
End of Hero Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Our Services Section
--------------------------------------------------------------*/

 .ourserv-section {
  position: relative;
  padding: 70px 0;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  background: linear-gradient(135deg, #f4f9fb 0%, #e8eafd 100%);
  color: #364167;
}

.ourserv-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Background Elements */
.ourserv-bg-element {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(50px);
}

.ourserv-bg-1 {
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,123,255,0.3) 0%, rgba(0,123,255,0) 70%);
  animation: float 15s ease-in-out infinite;
}

.ourserv-bg-2 {
  bottom: -150px;
  left: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(253,126,20,0.2) 0%, rgba(253,126,20,0) 70%);
  animation: float 20s ease-in-out infinite reverse;
}

/* Floating Elements */
.ourserv-float {
  position: absolute;
  z-index: 1;
  opacity: 0.7;
  pointer-events: none;
}

.ourserv-float-1 {
  top: 20%;
  left: 10%;
  animation: float-rotate 15s linear infinite;
}

.ourserv-float-2 {
  bottom: 15%;
  right: 5%;
  animation: float-rotate 20s linear infinite reverse;
}

.ourserv-float-3 {
  top: 60%;
  left: 50%;
  animation: float-rotate 25s linear infinite;
}

.ourserv-shape {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 123, 255, 0.2);
  border-radius: 8px;
}

.ourserv-shape-2 {
  width: 60px;
  height: 60px;
  background-color: rgba(253, 126, 20, 0.2);
  border-radius: 12px;
  transform: rotate(45deg);
}

.ourserv-shape-3 {
  width: 30px;
  height: 30px;
  background-color: rgba(123, 211, 221, 0.2);
  border-radius: 6px;
}

/* Header Styles */
.ourserv-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.ourserv-subtitle {
  color: #007BFF;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
  position: relative;
}


.ourserv-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #364167 0%, #007BFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ourserv-description {
  font-size: 1.2rem;
  color: #555555;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Grid and Cards */
.ourserv-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.ourserv-card {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.ourserv-card-inner {
  display: flex;
  flex-direction: column;
}

.ourserv-card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.ourserv-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ourserv-card:active .ourserv-card-image img {
  transform: scale(1.05);
}

.ourserv-icon-wrapper {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #007BFF 0%, #005DB9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
  z-index: 2;
}

.ourserv-icon {
  color: white;
  font-size: 24px;
}

.ourserv-card-content {
  padding: 25px 20px;
  position: relative;
}

.ourserv-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #364167;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 12px;
}

.ourserv-card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #007BFF 0%, #4FB5FF 100%);
}

.ourserv-card-description {
  font-size: 1rem;
  color: #555555;
  margin-bottom: 15px;
  line-height: 1.5;
}

.ourserv-features {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}

.ourserv-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #555555;
}

.ourserv-features li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-color: rgba(0, 123, 255, 0.1);
  border-radius: 50%;
}

.ourserv-features li:after {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007BFF;
  font-size: 11px;
}

.ourserv-btn {
  display: inline-block;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(45deg, #007BFF 0%, #4FB5FF 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
}

.ourserv-btn:active {
  transform: scale(0.98);
  box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
}

/* Active States for Touch */
.ourserv-card.touch-active {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ourserv-card.touch-active .ourserv-card-image img {
  transform: scale(1.05);
}

/* Animations */
@keyframes float {
  0% {
      transform: translate(0, 0);
  }
  50% {
      transform: translate(15px, 15px);
  }
  100% {
      transform: translate(0, 0);
  }
}

/* Desktop Styles (Apply only to larger screens) */
@media (min-width: 1200px) {
  .ourserv-section {
      padding: 100px 0;
  }

  .ourserv-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
  }

  .ourserv-title {
      font-size: 2.2rem;
  }

  .ourserv-subtitle {
      font-size: 1rem;
  }

  .ourserv-description {
      font-size: 1.2rem;
      max-width: 900px;
  }

  .ourserv-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  }

  .ourserv-card:hover .ourserv-card-image img {
      transform: scale(1.1);
  }

  .ourserv-card:hover .ourserv-icon-wrapper {
      transform: rotateY(180deg);
  }

  .ourserv-card:hover .ourserv-card-title::after {
      width: 80px;
  }

  .ourserv-card:hover .ourserv-features li {
      transform: translateX(5px);
  }

  .ourserv-btn {
      width: auto;
      padding: 12px 30px;
  }

  .ourserv-btn:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 100%;
      background: linear-gradient(45deg, #4FB5FF 0%, #007BFF 100%);
      transition: width 0.5s ease;
      z-index: -1;
  }
  
  .ourserv-btn:hover:before {
      width: 100%;
  }

  .ourserv-btn:hover {
      box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
      transform: translateY(-3px);
  }

  .ourserv-features li {
      transition: transform 0.3s ease;
  }

  .ourserv-card-title::after {
      transition: width 0.3s ease;
  }

  .ourserv-icon-wrapper {
      transition: transform 0.3s ease;
  }
}

/* Tablet Specific Adjustments */
@media (min-width: 576px) and (max-width: 767px) {
  .ourserv-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
  }

  .ourserv-card-image {
      height: 180px;
  }
}

/* Mobile-First Approach for Screens Below 576px */
@media (max-width: 576px) {
  .ourserv-section {
      padding: 50px 0;
  }

  .ourserv-title {
      font-size: 1.75rem;
  }

  .ourserv-description {
      font-size: 1rem;
  }

  .ourserv-header {
      margin-bottom: 30px;
  }

  .ourserv-card-image {
      height: 180px;
  }

  .ourserv-card-content {
      padding: 20px 15px;
  }

  .ourserv-card-title {
      font-size: 20px;
  }

  .ourserv-bg-1, .ourserv-bg-2 {
      width: 200px;
      height: 200px;
  }
}
/*--------------------------------------------------------------
End of Our Services Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------  
Stats Section
--------------------------------------------------------------*/
/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: white;
    position: relative;
    text-align: center; /* For centering content */
}

.stats-header {
    text-align: center;
    margin-bottom: 50px;
}

.stats-header h2 { /* Combined with .partners-header h2 */
    font-size: 2.2rem;
    font-weight: 700;
    color: #364167;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.stats-header p { /* Combined with .partners-header p */
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-container {
    display: flex;
    justify-content: center; /* Changed from space-around for better alignment */
    align-items: center; /* Changed to center */
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto; /* For centering the container */
}

.stat-item {
    text-align: center;
    position: relative; /* For potential future absolute positioned elements */
    padding: 0 20px; /* Added padding for spacing */
    max-width: 250px; /* Added max-width */
    animation: fadeInUp 0.8s ease forwards; /* Uses the combined keyframe */
    opacity: 0; /* Initial state for animation */
}

/* Staggered animation for stat items */
.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.3s; }
.stat-item:nth-child(3) { animation-delay: 0.5s; }

/* .fadeInUp keyframe is already defined */

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #007BFF, #5AAFB9);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1; /* Adjusted for better alignment */
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    position: relative; /* For potential pseudo-elements */
    display: inline-block; /* To allow text-gradient to work correctly */
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #364167;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f4f9fb 0%, #e8eafd 100%);
    position: relative; /* For potential absolute positioned elements */
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partners-header {
    text-align: center;
    margin-bottom: 40px;
}

/* .partners-header h2 is combined with .stats-header h2 */
/* .partners-header p is combined with .stats-header p */

.partner-carousel-container {
    width: 100%;
    overflow: hidden; /* Hides the overflowing logos */
    position: relative; /* For potential absolute positioned elements */
    margin-top: 30px; /* Space above the carousel */
}

.partner-carousel-container:hover .partner-carousel {
    animation-play-state: paused; /* Pause scroll on hover */
}

.partner-carousel {
    display: flex; /* Aligns logos in a row */
    animation: scroll 30s linear infinite;
    width: max-content; /* Ensures logos don't wrap */
}

.partner-logo {
    flex: 0 0 auto; /* Prevents logos from shrinking/growing */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    width: 180px; /* Fixed width for logos */
    height: 120px; /* Fixed height for logos */
    margin: 0 20px; /* Space between logos */
    background: linear-gradient(135deg, #1E78FF 0%, #0046B8 100%); /* Logo background */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    /* For smoother animation and to prevent jitter */
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.partner-logo:hover {
    transform: translateY(-10px); /* Lift effect on hover */
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.partner-logo img {
    max-width: 80%; /* Ensure image fits within the logo box */
    max-height: 80px; /* Ensure image fits within the logo box */
    object-fit: contain; /* Scales image while preserving aspect ratio */
    filter: brightness(0) invert(1); /* Makes logos white */
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Scroll by the width of 4 logos + their margins */
        transform: translateX(calc(-180px * 4 - 40px * 4)); /* Adjust if number of logos changes */
    }
}

/* Trust Badge Section */
.trust-badges {
    padding: 20px 0; /* Reduced padding */
    background: #f4f9fb;
    text-align: center; /* Centers the container */
}

.trust-badges-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center; /* Centers badges */
    align-items: center;
    flex-wrap: wrap; /* Allows badges to wrap on smaller screens */
    gap: 30px; /* Space between badges */
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between icon and text */
    padding: 10px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.trust-badge-icon {
    font-size: 24px;
    color: #007BFF;
}

.trust-badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #364167;
}
/*--------------------------------------------------------------
End of Stats Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
Why Choose Us Section
--------------------------------------------------------------*/
.whychoose-section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f4f9fb 0%, #e8eafd 100%);
            color: #364167;
        }

        /* Animated Background Elements */
        .whychoose-bg-decoration {
            position: absolute;
            z-index: 1;
            opacity: 0.1;
        }

        .whychoose-bg-decoration-1 {
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0,123,255,0.3) 0%, rgba(0,123,255,0) 70%);
            border-radius: 50%;
            animation: whychoose-float-large 20s ease-in-out infinite;
        }

        .whychoose-bg-decoration-2 {
            bottom: -150px;
            left: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(253,126,20,0.2) 0%, rgba(253,126,20,0) 70%);
            border-radius: 50%;
            animation: whychoose-float-large 25s ease-in-out infinite reverse;
        }

        .whychoose-floating-shapes {
            position: absolute;
            z-index: 1;
        }

        .whychoose-shape {
            position: absolute;
            opacity: 0.6;
        }

        .whychoose-shape-1 {
            top: 15%;
            left: 5%;
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #007BFF, #5AAFB9);
            transform: rotate(45deg);
            animation: whychoose-float-rotate 15s linear infinite;
        }

        .whychoose-shape-2 {
            top: 60%;
            right: 8%;
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #FD7E14, #FF9A4D);
            border-radius: 50%;
            animation: whychoose-bounce 8s ease-in-out infinite;
        }

        .whychoose-shape-3 {
            bottom: 20%;
            left: 10%;
            width: 80px;
            height: 20px;
            background: linear-gradient(45deg, #7BD3DD, #5AAFB9);
            border-radius: 10px;
            animation: whychoose-float-horizontal 12s ease-in-out infinite;
        }

        .whychoose-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .whychoose-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .whychoose-subtitle {
            color: #007BFF;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            animation: whychoose-fadeInDown 1s ease-out 0.2s both;
        }

        .whychoose-subtitle::before,
        .whychoose-subtitle::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #007BFF, transparent);
        }

        .whychoose-subtitle::before {
            left: -50px;
        }

        .whychoose-subtitle::after {
            right: -50px;
            background: linear-gradient(90deg, transparent, #007BFF);
        }

        .whychoose-title {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(90deg, #364167 0%, #007BFF 50%, #5AAFB9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            line-height: 1.2;
            animation: whychoose-fadeInUp 1s ease-out 0.4s both;
            position: relative;
        }

        .whychoose-description {
            font-size: 1.1rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            animation: whychoose-fadeInUp 1s ease-out 0.6s both;
        }

        .whychoose-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .whychoose-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            animation: whychoose-fadeInUp 0.8s ease-out both;
            text-align: center;
        }

        .whychoose-card:nth-child(1) {
            animation-delay: 0.8s;
        }

        .whychoose-card:nth-child(2) {
            animation-delay: 1s;
        }

        .whychoose-card:nth-child(3) {
            animation-delay: 1.2s;
        }

        .whychoose-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                rgba(255, 255, 255, 0) 0%, 
                rgba(255, 255, 255, 0.4) 50%, 
                rgba(255, 255, 255, 0) 100%);
            transition: left 0.7s ease;
        }

        .whychoose-card:hover::before {
            left: 100%;
        }

        .whychoose-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 123, 255, 0.15);
        }

        .whychoose-icon-wrapper {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #007BFF 0%, #5AAFB9 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
            animation: whychoose-pulse-glow 3s ease-in-out infinite;
        }

        .whychoose-card:nth-child(2) .whychoose-icon-wrapper {
            background: linear-gradient(135deg, #FD7E14 0%, #FF9A4D 100%);
            box-shadow: 0 10px 30px rgba(253, 126, 20, 0.3);
        }

        .whychoose-card:nth-child(3) .whychoose-icon-wrapper {
            background: linear-gradient(135deg, #7BD3DD 0%, #5AAFB9 100%);
            box-shadow: 0 10px 30px rgba(123, 211, 221, 0.3);
        }

        .whychoose-icon {
            font-size: 40px;
            color: white;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .whychoose-card:hover .whychoose-icon {
            transform: scale(1.2) rotate(15deg);
        }

        .whychoose-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #364167;
            margin-bottom: 20px;
            position: relative;
        }

        .whychoose-card-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #007BFF, #5AAFB9);
            transition: width 0.5s ease;
        }

        .whychoose-card:hover .whychoose-card-title::after {
            width: 60px;
        }

        .whychoose-card-description {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .whychoose-features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-bottom: 30px;
        }

        .whychoose-feature-tag {
            background: rgba(0, 123, 255, 0.1);
            color: #007BFF;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 123, 255, 0.2);
        }

        .whychoose-card:nth-child(2) .whychoose-feature-tag {
            background: rgba(253, 126, 20, 0.1);
            color: #FD7E14;
            border-color: rgba(253, 126, 20, 0.2);
        }

        .whychoose-card:nth-child(3) .whychoose-feature-tag {
            background: rgba(123, 211, 221, 0.1);
            color: #7BD3DD;
            border-color: rgba(123, 211, 221, 0.2);
        }

        .whychoose-feature-tag::before {
            content: "✓";
            margin-right: 6px;
            font-weight: bold;
        }

        .whychoose-feature-tag:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
        }

        .whychoose-card:nth-child(1) .whychoose-feature-tag:hover {
            background: #007BFF;
            color: white;
        }

        .whychoose-card:nth-child(2) .whychoose-feature-tag:hover {
            background: #FD7E14;
            color: white;
        }

        .whychoose-card:nth-child(3) .whychoose-feature-tag:hover {
            background: #7BD3DD;
            color: white;
        }

        .whychoose-cta-btn {
            background: linear-gradient(135deg, #007BFF, #5AAFB9);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
        }

        .whychoose-card:nth-child(2) .whychoose-cta-btn {
            background: linear-gradient(135deg, #FD7E14, #FF9A4D);
            box-shadow: 0 8px 25px rgba(253, 126, 20, 0.3);
        }

        .whychoose-card:nth-child(3) .whychoose-cta-btn {
            background: linear-gradient(135deg, #7BD3DD, #5AAFB9);
            box-shadow: 0 8px 25px rgba(123, 211, 221, 0.3);
        }

        .whychoose-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 123, 255, 0.4);
            color: white;
        }

        .whychoose-cta-btn::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .whychoose-cta-btn:hover::after {
            transform: translateX(5px);
        }

        /* Bottom CTA Section */
        .whychoose-bottom-cta {
            background: linear-gradient(135deg, #364167 0%, #007BFF 100%);
            margin-top: 80px;
            padding: 50px 40px;
            border-radius: 25px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2);
        }

        .whychoose-bottom-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: whychoose-float-large 15s ease-in-out infinite;
        }

        .whychoose-bottom-cta::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -30%;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            animation: whychoose-float-large 20s ease-in-out infinite reverse;
        }

        .whychoose-cta-content {
            position: relative;
            z-index: 1;
        }

        .whychoose-cta-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .whychoose-cta-subtitle {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .whychoose-main-cta {
            background: linear-gradient(45deg, #FD7E14, #FF9A4D);
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(253, 126, 20, 0.4);
            animation: whychoose-pulse-cta 3s ease-in-out infinite;
        }

        .whychoose-main-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(253, 126, 20, 0.5);
            color: white;
        }

        /* Animations */
        @keyframes whychoose-fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes whychoose-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes whychoose-expandWidth {
            from {
                width: 0;
            }
            to {
                width: 100px;
            }
        }

        @keyframes whychoose-float-large {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(30px, -30px) rotate(120deg);
            }
            66% {
                transform: translate(-20px, 20px) rotate(240deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }

        @keyframes whychoose-float-rotate {
            0% {
                transform: rotate(45deg) translate(0, 0);
            }
            100% {
                transform: rotate(405deg) translate(20px, -20px);
            }
        }

        @keyframes whychoose-bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes whychoose-float-horizontal {
            0%, 100% {
                transform: translateX(0);
            }
            50% {
                transform: translateX(30px);
            }
        }

        @keyframes whychoose-pulse-glow {
            0%, 100% {
                box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
            }
            50% {
                box-shadow: 0 15px 40px rgba(0, 123, 255, 0.5);
            }
        }

        @keyframes whychoose-pulse-cta {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .whychoose-title {
                font-size: 2.2rem;
            }

            .whychoose-cards-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                margin-top: 40px;
            }

            .whychoose-subtitle::before,
            .whychoose-subtitle::after {
                display: none;
            }

            .whychoose-bottom-cta {
                margin-top: 60px;
                padding: 40px 25px;
            }

            .whychoose-cta-title {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 480px) {
            .whychoose-title {
                font-size: 1.8rem;
            }

            .whychoose-card {
                padding: 30px 20px;
            }

            .whychoose-icon-wrapper {
                width: 80px;
                height: 80px;
            }

            .whychoose-icon {
                font-size: 32px;
            }
        }

        .whyus-cta {
    background: linear-gradient(135deg, #e65656, #e6a86f);
    padding: 40px 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.15);
  }
  
  .whyus-cta:before, .whyus-cta:after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
  }
  
  .whyus-cta:before {
    top: -70px;
    right: -70px;
  }
  
  
  .whyus-cta-content {
    position: relative;
    z-index: 1;
  }
  
  .whyus-cta-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 20px 0;
  }
  
  .whyus-cta-btn {
    display: inline-block;
    background: white;
    color: #007BFF;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    transform: skew(-5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .whyus-cta-btn:hover {
    transform: skew(-5deg) translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
/*--------------------------------------------------------------
End of Why Choose Us Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
Testimonials Section
--------------------------------------------------------------*/
.testimonials-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, #1E78FF 0%, #0046B8 100%);
            position: relative;
            overflow: hidden;
        }
        
        /* Background bubbles */
        .bg-bubble {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            z-index: 0;
        }
        
        /* Testimonials container */
        .testimonials-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }
        
        .testimonials-header {
            text-align: center;
            margin-bottom: 3rem;
            color: white;
        }
        
        .testimonials-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .testimonials-header p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.6;
            opacity: 0.95;
        }
        
        /* Carousel container */
        .testimonials-carousel {
            position: relative;
            margin: 0 auto;
            max-width: 100%;
            padding: 0 60px;
            box-sizing: border-box;
        }
        
        /* Carousel track */
        .testimonials-track {
            display: flex;
            transition: transform 0.5s ease;
            padding: 1rem 0;
            width: 100%;
            margin: 0;
            position: relative;
        }
        
        /* Testimonial cards */
        /* Testimonial cards */
        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 1.8rem;
            margin: 0 15px;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            min-height: 300px;
            flex: 0 0 auto;
            width: calc(33.33% - 30px);
            box-sizing: border-box;
        }
        
        /* Event type */
        .event-type {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: #FF6B35;
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        /* Orange circle */
        /* Orange circle removed */
        
        /* Rating stars */
        .rating {
            display: flex;
            margin: 0.5rem 0 1rem;
        }
        
        .star {
            color: #FFD700;
            margin-right: 0.2rem;
            font-size: 1.2rem;
        }
        
        /* Testimonial text */
        .testimonial-text {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
            overflow: hidden;
            font-style: italic;
            color: white;
        }
        
        /* Customer info */
        .customer-info {
            margin-top: auto;
        }
        
        /* Customer image removed */
        
        .customer-details h4 {
            margin: 0 0 0.2rem 0;
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
        }
        
        .customer-details p {
            margin: 0;
            opacity: 0.8;
            font-size: 0.9rem;
            color: white;
        }
        
        /* Navigation buttons */
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 2;
            font-size: 1.2rem;
            color: #1E78FF;
            border: none;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .nav-btn:hover {
            background: #f5f5f5;
            transform: translateY(-50%) scale(1.05);
        }
        
        .prev-btn {
            left: 0;
        }
        
        .next-btn {
            right: 0;
        }
        
        /* Carousel indicators */
        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 2rem;
        }
        
        .indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator.active {
            width: 24px;
            border-radius: 4px;
            background: white;
        }
        
        /* View all button */
        .view-all {
            text-align: center;
            margin-top: 2.5rem;
        }
        
        .view-all a {
            display: inline-block;
            background: white;
            color: #1E78FF;
            padding: 0.8rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .view-all a:hover {
            background: #f5f5f5;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }
        
        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .testimonial-card {
                width: calc(50% - 30px);
                min-height: 320px;
            }
            
            .testimonials-header h2 {
                font-size: 2.2rem;
            }
            
            .nav-btn {
                width: 36px;
                height: 36px;
            }
        }
        
        @media (max-width: 768px) {
            .testimonial-card {
                width: calc(100% - 30px);
                min-height: 300px;
            }
            
            .testimonials-carousel {
                padding: 0 40px;
            }
            
            .testimonials-header h2 {
                font-size: 2rem;
            }
            
            .testimonials-header p {
                font-size: 1rem;
                padding: 0 15px;
            }
            
            .testimonials-section {
                padding: 3rem 0;
            }
            
            .nav-btn {
                width: 32px;
                height: 32px;
            }
        }
        
        @media (max-width: 480px) {
            .testimonial-card {
                padding: 1.2rem;
                margin: 0 10px;
                min-height: 280px;
            }
            
            .testimonials-header h2 {
                font-size: 1.7rem;
            }
            
            .testimonials-carousel {
                padding: 0 30px;
            }
            
            .event-type {
                font-size: 0.75rem;
                padding: 0.3rem 0.7rem;
            }
            
            .testimonial-text {
                font-size: 0.95rem;
            }
            
            .nav-btn {
                width: 28px;
                height: 28px;
                font-size: 1rem;
            }
        }
/*--------------------------------------------------------------
End of Testimonials Section 
--------------------------------------------------------------*/

/*--------------------------------------------------------------
Pricing Section - Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
/* Enhanced MGR Pricing Section Styles */
.price-section {
  padding: 70px 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  position: relative;
  overflow: hidden;
  color: #364167;
  background: linear-gradient(135deg, #f4f9fb 0%, #e8eafd 100%);
}

.price-section::before,
.price-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(0, 123, 255, 0.03);
  z-index: 0;
}

.price-section::before {
  top: -150px;
  left: -150px;
}

.price-section::after {
  bottom: -150px;
  right: -150px;
}

.price-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.price-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.price-subtitle {
  color: #007BFF;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
  position: relative;
}

.price-title {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(90deg, #364167 0%, #007BFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
}

.price-description {
  font-size: 18px;
  color: #555555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Enhanced Toggle Styles */
.price-toggle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: white;
  border-radius: 50px;
  padding: 5px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.price-toggle-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.price-toggle-label {
  flex: 1;
  text-align: center;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #555;
  position: relative;
  z-index: 1;
}

.price-toggle-save {
  display: inline-block;
  background: #FD7E14;
  color: white;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 6px;
  transform: translateY(-1px);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(253, 126, 20, 0.4);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(253, 126, 20, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(253, 126, 20, 0);
  }
}

.price-toggle-slider {
  position: absolute;
  left: 5px;
  top: 5px;
  width: calc(50% - 5px);
  height: calc(100% - 10px);
  background: linear-gradient(135deg, #007BFF, #5AAFB9);
  border-radius: 50px;
  transition: transform 0.3s ease;
  z-index: 0;
}

input#combo:checked ~ .price-toggle-slider {
  transform: translateX(100%);
}

input#single:checked ~ label[for="single"],
input#combo:checked ~ label[for="combo"] {
  color: white;
}

.price-info {
  text-align: center;
  min-height: 30px;
  position: relative;
  margin-top: 15px;
  width: 100%;
}

.price-info-text {
  margin: 0;
  font-size: 16px;
  color: #364167;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  transform: translateY(10px);
}

.price-info-text span {
  font-weight: 700;
  color: #FD7E14;
}

input#single:checked ~ .price-info .price-info-single {
  opacity: 1;
  position: relative;
  transform: translateY(0);
}

input#combo:checked ~ .price-info .price-info-combo {
  opacity: 1;
  position: relative;
  transform: translateY(0);
}

/* Enhanced Selection Progress Bar */
.selection-progress-wrapper {
  display: none;
  max-width: 600px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.single-mode .selection-progress-wrapper,
.combo-mode .selection-progress-wrapper {
  display: block;
}

.combo-mode .selection-progress-wrapper {
  opacity: 1;
  transform: translateY(0);
}

.selection-progress {
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.progress-bar {
  height: 8px;
  background: #e8eafd;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, #007BFF, #5AAFB9);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.progress-text {
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.progress-text span {
  font-weight: 700;
  color: #007BFF;
}

/* Enhanced Price Cards */
.price-cards-wrapper {
  position: relative;
  margin-bottom: 40px;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.price-card {
  position: relative;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              box-shadow 0.5s ease;
  perspective: 1000px;
  border-radius: 20px;

}

.price-card:hover {
  transform: translateY(-8px);
  z-index: 2;
}

.price-card-inner {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card:hover .price-card-inner {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Selection Indicators */
.selection-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.price-card.selected .selection-indicator {
  opacity: 1;
}

.checkmark {
  display: none !important;
}

.price-card.selected .checkmark {
  transform: scale(1);
}

.checkmark:after {
  content: "✓";
  color: white;
  font-size: 18px;
  font-weight: bold;
}

.selection-badge,
.addon-badge {
  position: absolute;
  top: 65px;
  right: -15px;
  background: linear-gradient(135deg, #007BFF, #5AAFB9);
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 30px;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
  opacity: 0;
}

.addon-badge {
  background: linear-gradient(135deg, #FD7E14, #FF9A4D);
  top: 110px;
  font-size: 13px;
}

.price-card.primary-selected .selection-badge {
  transform: scale(1);
  opacity: 1;
}

.price-card.addon-selected .addon-badge {
  transform: scale(1);
  opacity: 1;
}

/* Featured card overrides */
.price-featured {
  transform: translateY(-10px) scale(1.03);
}

.price-featured .price-card-inner {
  border: 2px solid transparent;
  background: 
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #007BFF, #5AAFB9) border-box;
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
  }
  50% {
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.3);
  }
  100% {
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
  }
}

.price-featured:hover {
  transform: translateY(-18px) scale(1.03);
}

.price-featured:hover .price-card-inner {
  box-shadow: 0 20px 50px rgba(0, 123, 255, 0.2);
}

.price-spotlight {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.5) 50%, 
    rgba(255, 255, 255, 0) 100%);
  z-index: 3;
  pointer-events: none;
  animation: shimmer 3s infinite;
  transform: skew(-20deg);
  opacity: 0.8;
}

@keyframes shimmer {
  0% {
    transform: translateX(-150%) skew(-20deg);
  }
  100% {
    transform: translateX(150%) skew(-20deg);
  }
}

.price-popular {
  position: absolute;
  top: -2px;
  right: 25px;
  background: linear-gradient(135deg, #FD7E14, #FF9A4D);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 15px 8px 15px;
  border-radius: 0 0 15px 15px;
  z-index: 4;
  box-shadow: 0 5px 15px rgba(253, 126, 20, 0.3);
  display: flex;
  align-items: center;
  gap: 5px;
}

.price-popular svg {
  width: 14px;
  height: 14px;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.price-card-header {
  padding: 30px 25px 15px;
  border-bottom: 1px solid #f1f5f9;
  text-align: center;
  position: relative;
}

.price-card-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 15px 0;
  position: relative;
  display: inline-block;
}

.price-featured .price-card-title {
  color: #007BFF;
}

.price-card:not(.price-featured) .price-card-title {
  color: #364167;
}

.price-service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 15px;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.price-card:hover .price-service-icon {
  transform: scale(1.1) rotate(5deg);
}

.laser-icon {
  background: rgba(0, 123, 255, 0.1);
  color: #007BFF;
}

.gaming-icon {
  background: rgba(0, 123, 255, 0.15);
  color: #007BFF;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.15);
  animation: float 3s ease-in-out infinite;
}

.bumper-icon {
  background: rgba(253, 126, 20, 0.1);
  color: #FD7E14;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

.price-service-icon img {
  width: 35px;
  height: 35px;
}

.price-card-price-container {
  position: relative;
  height: 60px;
  margin-bottom: 5px;
  transition: height 0.3s ease;
}

.price-single, .price-combo {
  position: absolute;
  width: 100%;
  transition: opacity 0.3s ease, transform 0.3s ease;
  left: 0;
  top: 0;
}

.price-combo {
  opacity: 0;
  transform: translateY(10px);
}

input#combo:checked ~ .price-cards-wrapper .price-single {
  opacity: 0;
  transform: translateY(-10px);
}

input#combo:checked ~ .price-cards-wrapper .price-combo {
  opacity: 1;
  transform: translateY(0);
}

.price-amount {
  font-size: 44px;
  font-weight: 800;
  color: #FD7E14;
  line-height: 1;
  display: inline-block;
  background: linear-gradient(90deg, #FD7E14, #FF9A4D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-duration {
  font-size: 16px;
  color: #777;
}

.price-combo-primary {
  font-size: 38px;
  font-weight: 800;
  background: linear-gradient(90deg, #FD7E14, #FF9A4D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.1;
}

.price-combo-secondary {
  font-size: 15px;
  color: #5AAFB9;
  display: block;
  font-weight: 600;
  margin-top: 5px;
}

.price-tax {
  font-size: 14px;
  color: #999;
  margin: 5px 0 0 0;
}

.price-card-content {
  padding: 20px 25px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.price-feature {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #555;
  font-size: 15px;
}

.price-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300bb77'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.price-featured .price-feature::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230077ff'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}

.price-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 14px 10px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #364167, #5A617A);
  color: white;
  box-shadow: 0 5px 15px rgba(54, 65, 103, 0.2);
}

.price-featured .price-btn {
  background: linear-gradient(135deg, #007BFF, #5AAFB9);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
}

.price-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(255, 255, 255, 0) 100%);
  transition: left 0.7s ease;
}

.price-btn:hover {
  transform: translateY(-3px);
}

.price-btn:hover::after {
  left: 100%;
}

.price-card:not(.price-featured) .price-btn:hover {
  box-shadow: 0 8px 25px rgba(54, 65, 103, 0.3);
  background: linear-gradient(135deg, #404b75, #666f8b);
}

.price-featured .price-btn:hover {
  box-shadow: 0 12px 30px rgba(0, 123, 255, 0.35);
  background: linear-gradient(135deg, #0e8aff, #6bbac3);
}

/* Selection States and Transitions */
.price-card.selected .price-card-inner {
  border: 3px solid;
  border-image: linear-gradient(135deg, #007BFF, #5AAFB9) 1;
  animation: none;
  border-radius: 20px;

}

.price-card.primary-selected .price-card-inner {
  border-image: linear-gradient(135deg, #007BFF, #5AAFB9) 1;
}

.price-card.addon-selected .price-card-inner {
  border-image: linear-gradient(135deg, #FD7E14, #FF9A4D) 1;
}

.price-card.primary-selected .price-btn {
  background: linear-gradient(135deg, #007BFF, #5AAFB9);
  color: white;
}

.price-card.addon-selected .price-btn {
  background: linear-gradient(135deg, #FD7E14, #FF9A4D);
  color: white;
}

.price-card.disabled {
  opacity: 0.5;
  transform: scale(0.98);
  pointer-events: none;
}

.price-card.selected:hover {
  transform: translateY(-5px);
}

/* Package Summary Styles */
.package-summary {
  max-width: 800px;
  margin: 0 auto 40px;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  overflow: hidden;
  position: relative;
}

.combo-mode .package-summary {
  opacity: 1;
  transform: translateY(0);
}

.single-mode .package-summary {
  display: none;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f1f5f9;
}

.summary-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #364167;
}

.summary-savings {
  font-size: 16px;
  color: #FD7E14;
  font-weight: 700;
  padding: 5px 12px;
  background: rgba(253, 126, 20, 0.1);
  border-radius: 30px;
  display: inline-block;
}

.summary-content {
  margin-bottom: 25px;
}

.summary-empty {
  text-align: center;
  color: #888;
  font-size: 16px;
  margin: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 10px;
}

.summary-services {
  list-style: none;
  padding: 0;
  margin: 0;
}

.summary-service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.summary-service:last-child {
  border-bottom: none;
}

.summary-service-info {
  display: flex;
  align-items: center;
}

.summary-service-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.summary-service.primary .summary-service-icon {
  background: rgba(0, 123, 255, 0.1);
  color: #007BFF;
}

.summary-service.addon .summary-service-icon {
  background: rgba(253, 126, 20, 0.1);
  color: #FD7E14;
}

.summary-service-icon svg {
  width: 20px;
  height: 20px;
}

.summary-service-details {
  flex-grow: 1;
}

.summary-service-name {
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 3px;
  color: #364167;
}

.summary-service-type {
  font-size: 12px;
  color: #888;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 20px;
  display: inline-block;
}

.summary-service-price {
  font-weight: 700;
  font-size: 18px;
  color: #FD7E14;
}

.summary-action {
  text-align: center;
  margin-top: 20px;
}

.summary-suggestion {
  text-align: center;
  background: rgba(0, 123, 255, 0.05);
  padding: 12px;
  border-radius: 10px;
  margin: 0 0 20px;
  color: #007BFF;
  font-weight: 500;
  font-size: 15px;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 2px dashed #f1f5f9;
}

.total-label {
  font-size: 20px;
  font-weight: 600;
  color: #364167;
}

.total-price {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(90deg, #FD7E14, #FF9A4D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.summary-cta {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 16px 10px;
  border-radius: 50px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FD7E14, #FF9A4D);
  color: white;
  box-shadow: 0 8px 20px rgba(253, 126, 20, 0.3);
}

.summary-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(253, 126, 20, 0.4);
  color: white;
}

.summary-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(255, 255, 255, 0) 100%);
  transition: left 0.7s ease;
}

.summary-cta:hover::after {
  left: 100%;
}

/* Connecting lines between selected services */
.service-connection {
  display: none !important;

}

.combo-mode .service-connection.active {
  opacity: 1;
}

/* Additional Customization */
.price-custom {
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
}

.price-custom-text {
  font-size: 16px;
  color: #364167;
  margin: 0;
}

.price-custom-link {
  color: #007BFF;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.price-custom-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, #007BFF, #5AAFB9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.price-custom-link:hover {
  color: #FD7E14;
}

.price-custom-link:hover::after {
  transform: scaleX(1);
  background: linear-gradient(90deg, #FD7E14, #FF9A4D);
}

/* Responsive Styles */
@media (min-width: 992px) and (max-width: 1199px) {
  .price-cards {
    gap: 25px;
  }
  
  .price-service-icon {
    width: 65px;
    height: 65px;
  }
  
  .price-amount {
    font-size: 40px;
  }
  
  .price-combo-primary {
    font-size: 34px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .price-cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .price-card-header {
    padding: 25px 20px 15px;
  }
  
  .price-card-content {
    padding: 20px 20px 25px;
  }
  
  .price-card-price-container {
    height: 70px;
  }
  
  .price-amount, .price-combo-primary {
    font-size: 36px;
  }
  
  .price-service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .price-card-title {
    font-size: 22px;
  }
  
  .price-featured {
    transform: translateY(-5px) scale(1.02);
  }
  
  .price-featured:hover {
    transform: translateY(-13px) scale(1.02);
  }
  
  .price-popular {
    right: 20px;
    font-size: 12px;
    padding: 7px 12px 7px 12px;
  }
}

@media (max-width: 767px) {
  .price-section {
    padding: 50px 0;
  }
  
  .price-title {
    font-size: 28px;
  }
  
  .price-description {
    font-size: 16px;
  }
  
  .price-toggle-label {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .price-toggle-container {
    margin-bottom: 30px;
  }
  
  .price-cards {
    grid-template-columns: minmax(280px, 1fr);
    gap: 25px;
  }
  
  /* Center all cards and adjust featured card */
  .price-card, .price-featured {
    margin-left: auto;
    margin-right: auto;
    max-width: 370px;
    transform: translateY(0) !important;
  }
  
  .price-card:hover {
    transform: translateY(-5px) !important;
  }
  
  .price-featured .price-card-inner {
    border-width: 3px;
  }
  
  .price-featured:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(90, 175, 185, 0.1));
    border-radius: 25px;
    z-index: -1;
  }
  
  .price-card-header {
    padding: 25px 20px 15px;
  }
  
  .price-service-icon {
    width: 60px;
    height: 60px;
  }
  
  .price-card-title {
    font-size: 22px;
  }
  
  .price-popular {
    right: 15px;
    font-size: 12px;
    padding: 7px 12px 7px 12px;
  }
  
  .package-summary {
    padding: 20px;
  }
  
  .price-custom {
    padding: 15px;
  }
  
  .price-custom-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .price-section {
    padding: 40px 0;
  }
  
  .price-container {
    padding: 0 15px;
  }
  
  .price-title {
    font-size: 24px;
  }
  
  .price-header {
    margin-bottom: 30px;
  }
  
  .price-toggle {
    max-width: 280px;
  }
  
  .price-toggle-label {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .price-toggle-save {
    font-size: 10px;
    padding: 2px 5px;
  }
  
  .price-info-text {
    font-size: 14px;
  }
  
  .price-cards-wrapper {
    margin-bottom: 30px;
  }
  
  .price-card {
    max-width: 100%;
  }
  
  .price-amount {
    font-size: 34px;
  }
  
  .price-combo-primary {
    font-size: 30px;
  }
  
  .price-combo-secondary {
    font-size: 13px;
  }
  
  .price-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .price-feature {
    font-size: 14px;
  }
  
  .summary-header h3 {
    font-size: 20px;
  }
  
  .summary-savings {
    font-size: 14px;
    padding: 4px 10px;
  }
  
  .summary-service-name {
    font-size: 15px;
  }
  
  .summary-service-price {
    font-size: 16px;
  }
  
  .total-price {
    font-size: 24px;
  }
  
  .summary-cta {
    font-size: 16px;
    padding: 14px 10px;
  }
}
/*--------------------------------------------------------------
End Pricing Section - Index page
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
/* Contact Section Styles */


        /* Contact Section Styles */
        .contact-section {
          padding: 80px 0;
          background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-1.2.1&auto=format&fit=crop&w=2000&q=80') no-repeat center center;
          background-size: cover;
          position: relative;
      }

      .contact-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(135deg, rgba(34, 40, 50, 0.9) 0%, rgba(34, 40, 50, 0.7) 100%);
      }

      .container {
          width: 100%;
          max-width: 1200px;
          margin: 0 auto;
          padding: 0px 20px;
          position: relative;
          z-index: 2;
      }

      .section-header {
          text-align: center;
          margin-bottom: 50px;
          color: var(--light);
      }

      .section-header h2 {
          font-size: 16px;
          color: var(--secondary);
          text-transform: uppercase;
          letter-spacing: 4px;
          margin-bottom: 15px;
          font-weight: 600;
      }

      .section-header h1 {
          font-size: 42px;
          font-weight: 700;
          margin-bottom: 15px;
      }

      .section-header p {
          font-size: 18px;
          max-width: 600px;
          margin: 0 auto;
          opacity: 0.8;
      }

      .contact-container {
          display: grid;
          grid-template-columns: 1fr 2fr;
          gap: 30px;
          background: var(--light);
          border-radius: 20px;
          overflow: hidden;
          box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
      }

      /* Contact Details Styles */
      .contact-details {
          background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
          color: white;
          padding: 40px;
          position: relative;
          overflow: hidden;
      }

      .contact-details::before {
          content: '';
          position: absolute;
          top: -50%;
          right: -50%;
          width: 200px;
          height: 200px;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.1);
          z-index: 0;
      }

      .contact-details::after {
          content: '';
          position: absolute;
          bottom: -30%;
          left: -30%;
          width: 300px;
          height: 300px;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.1);
          z-index: 0;
      }

      .contact-details-content {
          position: relative;
          z-index: 1;
      }

      .contact-logo {
          font-size: 32px;
          font-weight: 700;
          margin-bottom: 30px;
          display: inline-block;
      }

      .contact-info-list {
          list-style: none;
          margin-bottom: 40px;
      }

      .contact-info-item {
          display: flex;
          align-items: flex-start;
          margin-bottom: 25px;
      }

      .contact-icon {
          width: 50px;
          height: 50px;
          background: rgba(255, 255, 255, 0.2);
          border-radius: 12px;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-right: 15px;
          font-size: 20px;
          flex-shrink: 0;
          transition: var(--transition);
      }

      .contact-info-item:hover .contact-icon {
          background: rgba(255, 255, 255, 0.3);
          transform: scale(1.1);
      }

      .contact-text h3 {
          font-size: 18px;
          font-weight: 600;
          margin-bottom: 5px;
      }

      .contact-text p {
          font-size: 16px;
          color: rgba(255, 255, 255, 0.9);
          text-decoration: none;
          transition: var(--transition);
      }

      .contact-text a:hover {
          color: white;
          text-decoration: underline;
      }

      .social-media {
          display: flex;
          gap: 15px;
          margin-top: 40px;
      }

      .social-icon {
          width: 40px;
          height: 40px;
          background: rgba(255, 255, 255, 0.2);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 18px;
          color: white;
          text-decoration: none;
          transition: var(--transition);
      }

      .social-icon:hover {
          background: rgba(255, 255, 255, 0.3);
          transform: translateY(-5px);
        
      }

      .social-icon2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

      .map-container {
          width: 100%;
          height: 200px;
          border-radius: 12px;
          overflow: hidden;
          margin-top: 30px;
      }

      .map-container iframe {
          width: 100%;
          height: 100%;
          border: none;
      }

      /* Contact Form Styles */
      .contact-form-wrapper {
          padding: 40px;
          background: white;
      }

      .form-title {
          font-size: 28px;
          font-weight: 700;
          color: var(--dark);
          margin-bottom: 30px;
          padding-bottom: 15px;
          border-bottom: 2px solid #f0f0f0;
      }

      .contact-form .form-group {
          margin-bottom: 20px;
      }

      .form-label {
          display: block;
          margin-bottom: 8px;
          font-weight: 500;
          color: var(--dark);
          font-size: 15px;
      }

      .required:after {
          content: ' *';
          color: var(--secondary);
      }

      .form-control {
          width: 100%;
          padding: 12px 15px;
          background: #f8f9fa;
          border: 2px solid #e9ecef;
          border-radius: 10px;
          font-size: 15px;
          color: var(--dark);
          transition: var(--transition);
      }

      .form-control:focus {
          border-color: var(--primary);
          box-shadow: 0 0 0 4px rgba(125, 60, 248, 0.1);
          outline: none;
      }

      .form-control::placeholder {
          color: #adb5bd;
      }

      textarea.form-control {
          min-height: 120px;
          resize: vertical;
      }

      /* Services Grid */
      .services-selection {
          margin-bottom: 25px;
      }

      .services-grid {
          display: grid;
          grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
          gap: 15px;
          margin-top: 15px;
      }

      .service-option {
          position: relative;
          border: 2px solid #e9ecef;
          border-radius: 10px;
          padding: 15px;
          cursor: pointer;
          transition: var(--transition);
          overflow: hidden;
      }

      .service-option:hover {
          border-color: #d0d0d0;
          transform: translateY(-3px);
      }

      .service-option.selected {
          border-color: var(--primary);
          background-color: rgba(125, 60, 248, 0.05);
      }

      .service-option.selected:before {
          content: '';
          position: absolute;
          top: 0;
          right: 0;
          width: 30px;
          height: 30px;
          background: var(--primary);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
      }

      .service-option.selected:after {
          content: "✓";
          position: absolute;
          top: 3px;
          right: 7px;
          color: white;
          font-size: 12px;
          font-weight: bold;
      }

      .service-option h4 {
          font-size: 16px;
          margin-bottom: 8px;
          color: var(--dark);
          transition: var(--transition);
      }

      .service-option.selected h4 {
          color: var(--primary);
      }

      .service-option p {
          font-size: 14px;
          color: var(--gray);
          margin: 0;
      }

      .service-counter {
          font-size: 14px;
          color: var(--gray);
          text-align: right;
          margin-top: 10px;
      }

      /* Submit Button */
      .submit-button {
          background: linear-gradient(to right, var(--secondary), #FF9671);
          color: white;
          border: none;
          border-radius: 30px;
          padding: 14px 30px;
          font-size: 16px;
          font-weight: 600;
          cursor: pointer;
          transition: var(--transition);
          display: inline-flex;
          align-items: center;
          justify-content: center;
          position: relative;
          overflow: hidden;
      }

      .submit-button:hover {
          transform: translateY(-3px);
          box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
      }

      .submit-button:before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
          transition: 0.5s;
      }

      .submit-button:hover:before {
          left: 100%;
      }

      .submit-button .spinner {
          display: none;
          width: 20px;
          height: 20px;
          border: 2px solid rgba(255, 255, 255, 0.3);
          border-radius: 50%;
          border-top-color: white;
          animation: spin 0.8s linear infinite;
          margin-left: 10px;
      }

      @keyframes spin {
          to {
              transform: rotate(360deg);
          }
      }

      .submit-button.loading .spinner {
          display: inline-block;
      }

      .form-status {
          margin-top: 20px;
          padding: 15px;
          border-radius: 10px;
          font-size: 15px;
          display: none;
      }

      .form-status.success {
          background-color: rgba(76, 175, 80, 0.1);
          border: 1px solid var(--success);
          color: var(--success);
          display: block;
      }

      .form-status.error {
          background-color: rgba(244, 67, 54, 0.1);
          border: 1px solid var(--error);
          color: var(--error);
          display: block;
      }

      /* Animations */
      @keyframes fadeIn {
          from {
              opacity: 0;
              transform: translateY(20px);
          }
          to {
              opacity: 1;
              transform: translateY(0);
          }
      }

      .fade-in {
          animation: fadeIn 0.5s ease forwards;
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
          .contact-container {
              grid-template-columns: 1fr;
          }

          .contact-details::before,
          .contact-details::after {
              display: none;
          }
      }

      @media (max-width: 768px) {
          .section-header h1 {
              font-size: 32px;
          }

          .section-header p {
              font-size: 16px;
          }

          .contact-form-wrapper,
          .contact-details {
              padding: 30px;
          }

          .services-grid {
              grid-template-columns: 1fr 1fr;
          }
      }

      @media (max-width: 576px) {
          .section-header h1 {
              font-size: 28px;
          }

          .services-grid {
              grid-template-columns: 1fr;
          }

          .contact-form-wrapper,
          .contact-details {
              padding: 20px;
          }
      }

/*--------------------------------------------------------------
End Contact Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
FAQ Section
--------------------------------------------------------------*/
/* MGR FAQ Section Styles */
.faq-section {
  padding: 60px 0;
  background: linear-gradient(145deg, #f6faff 0%, #eef1ff 100%);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  position: relative;
  color: #364167;
}

.faq-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(0, 123, 255, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 90% 90%, rgba(90, 175, 185, 0.03) 0%, transparent 30%);
  z-index: 0;
}

.faq-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.faq-header-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #007BFF, #5AAFB9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.2);
}

.faq-header-icon svg {
  width: 30px;
  height: 30px;
}

.faq-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 15px;
  color: #364167;
}

.faq-description {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.faq-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border-bottom: 4px solid transparent;
  position: relative;
  height: 100%;
}

.faq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #007BFF, #5AAFB9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.1);
  border-bottom-color: #5AAFB9;
}

.faq-card:hover::before {
  transform: scaleX(1);
}

.faq-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 123, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007BFF;
  margin: 30px auto 10px;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-card:hover .faq-card-icon {
  transform: scale(1.1) rotate(10deg);
  background: rgba(0, 123, 255, 0.15);
  color: #0062cc;
}

.faq-card-icon svg {
  width: 30px;
  height: 30px;
}

.faq-card-content {
  padding: 20px 30px 40px;
  flex-grow: 1;
  text-align: center;
}

.faq-card-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 20px;
  color: #364167;
}

.faq-card-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

.faq-more {
  text-align: center;
  margin-top: 20px;
}

.faq-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #007BFF, #5AAFB9);
  color: white;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.2);
}

.faq-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 123, 255, 0.3);
  background: linear-gradient(135deg, #0062cc, #4a9aa3);
}

.faq-button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.faq-button:hover svg {
  transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .faq-card-content {
    padding: 20px 25px 35px;
  }
  
  .faq-card-content h3 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .faq-section {
    padding: 50px 0;
  }
  
  .faq-title {
    font-size: 30px;
  }
  
  .faq-description {
    font-size: 16px;
  }
  
  .faq-header {
    margin-bottom: 40px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    gap: 25px;
  }
  
  .faq-card {
    margin-bottom: 0;
  }
  
  .faq-card-icon {
    width: 55px;
    height: 55px;
  }
  
  .faq-card-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .faq-card-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 40px 0;
  }
  
  .faq-title {
    font-size: 26px;
  }
  
  .faq-header-icon {
    width: 50px;
    height: 50px;
  }
  
  .faq-header-icon svg {
    width: 25px;
    height: 25px;
  }
  
  .faq-card {
    border-radius: 12px;
  }
  
  .faq-card-icon {
    width: 50px;
    height: 50px;
    margin-top: 20px;
  }
  
  .faq-card-content {
    padding: 15px 20px 30px;
  }
  
  .faq-button {
    padding: 12px 25px;
    font-size: 15px;
  }
}




/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
        /* Main Footer Styles */
        .footer {
          position: relative;
          background-color: var(--light);
          overflow: hidden;
      }

      .footer-curve {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          overflow: hidden;
          line-height: 0;
          z-index: 1;
      }

      .footer-curve svg {
          position: relative;
          display: block;
          width: calc(100% + 1.3px);
          height: 70px;
          transform: rotateY(180deg);
      }

      .footer-curve .shape-fill {
          fill: #f0f3f8;
      }

      .footer-top {
          background-color: var(--primary);
          padding: 80px 0 50px;
          position: relative;
          z-index: 2;
      }

      .footer-top::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
          z-index: -1;
      }

      .container {
          width: 100%;
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 20px;
      }

      .footer-content {
          display: grid;
          grid-template-columns: repeat(12, 1fr);
          gap: 30px;
          color: white;
      }

      .footer-intro {
          grid-column: span 4;
      }

      .footer-links-container {
          grid-column: span 8;
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 30px;
      }

      .footer-logo {
          display: block;
          max-width: 180px;
          margin-bottom: 20px;
      }

      .footer-tagline {
          margin-bottom: 20px;
          font-size: 15px;
          opacity: 0.9;
      }

      .contact-info {
          margin-top: 25px;
      }

      .contact-item {
          display: flex;
          align-items: center;
          margin-bottom: 15px;
          transition: var(--transition);
      }

      .contact-item:hover {
          transform: translateX(5px);
      }

      .contact-icon {
          width: 36px;
          height: 36px;
          background-color: rgba(255, 255, 255, 0.1);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-right: 12px;
          transition: var(--transition);
          flex-shrink: 0;
      }

      .contact-item:hover .contact-icon {
          background-color: var(--secondary);
          transform: rotate(10deg);
      }

      .contact-text {
          font-size: 14px;
          line-height: 1.4;
      }

      .contact-text a {
          color: white;
          text-decoration: none;
          transition: var(--transition);
      }

      .contact-text a:hover {
          color: var(--secondary);
      }

      .footer-links-group h3 {
          font-size: 18px;
          font-weight: 600;
          margin-bottom: 20px;
          position: relative;
          display: inline-block;
      }

      .footer-links-group h3::after {
          content: '';
          position: absolute;
          bottom: -8px;
          left: 0;
          width: 40px;
          height: 3px;
          background-color: var(--secondary);
          transition: var(--transition);
      }

      .footer-links-group:hover h3::after {
          width: 100%;
      }

      .footer-links {
          list-style: none;
      }

      .footer-links li {
          margin-bottom: 12px;
          transition: var(--transition);
          position: relative;
      }

      .footer-links li::before {
          content: "›";
          position: absolute;
          left: -15px;
          opacity: 0;
          color: var(--secondary);
          transition: var(--transition);
      }

      .footer-links li:hover {
          padding-left: 10px;
      }

      .footer-links li:hover::before {
          opacity: 1;
          left: 0;
      }

      .footer-links a {
          color: rgba(255, 255, 255, 0.85);
          text-decoration: none;
          font-size: 14px;
          transition: var(--transition);
      }

      .footer-links a:hover {
          color: var(--secondary);
      }

      .footer-divider {
          margin: 0;
          border: none;
          height: 1px;
          background-color: rgba(255, 255, 255, 0.1);
      }

      /* Newsletter & Social Section */
      .footer-mid {
          background-color: var(--primary-light);
          padding: 40px 0;
          color: white;
          position: relative;
      }

      .footer-mid-content {
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          justify-content: space-between;
          gap: 30px;
      }

      .newsletter-container {
          flex: 1 1 400px;
      }

      .newsletter-heading {
          font-size: 24px;
          margin-bottom: 10px;
      }

      .newsletter-text {
          font-size: 15px;
          opacity: 0.9;
          margin-bottom: 20px;
      }

      .newsletter-form {
          display: flex;
          flex-wrap: wrap;
          gap: 10px;
          max-width: 500px;
      }

      .newsletter-input {
          flex-grow: 1;
          min-width: 200px;
          padding: 12px 15px;
          border: none;
          border-radius: var(--border-radius);
          font-size: 14px;
      }

      .newsletter-input:focus {
          outline: none;
          box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
      }

      .newsletter-button {
          background-color: var(--secondary);
          color: white;
          border: none;
          border-radius: var(--border-radius);
          padding: 12px 20px;
          font-weight: 600;
          cursor: pointer;
          transition: var(--transition);
          display: inline-flex;
          align-items: center;
      }

      .newsletter-button i {
          margin-left: 8px;
      }

      .newsletter-button:hover {
          background-color: var(--secondary-light);
          transform: translateY(-3px);
          box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
      }

      .social-container {
          flex: 0 1 auto;
      }

      .social-text {
          margin-bottom: 15px;
          font-size: 16px;
          text-align: center;
      }

      .social-icons {
          display: flex;
          gap: 15px;
          justify-content: center;
      }

      .social-icon {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 40px;
          height: 40px;
          background-color: rgba(255, 255, 255, 0.1);
          color: white;
          border-radius: 50%;
          text-decoration: none;
          font-size: 18px;
          transition: var(--transition);
          position: relative;
          overflow: hidden;
          z-index: 1;
      }

      .social-icon::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background-color: var(--secondary);
          border-radius: 50%;
          transform: scale(0);
          transition: var(--transition);
          z-index: -1;
      }

      .social-icon:hover {
          transform: translateY(-5px);
          color: white;
      }

      .social-icon:hover::before {
          transform: scale(1);
      }

      /* Bottom Footer */
      .footer-bottom {
          background-color: var(--dark);
          padding: 20px 0;
          color: rgba(255, 255, 255, 0.7);
          font-size: 14px;
          text-align: center;
      }

      .footer-bottom-content {
          display: flex;
          flex-wrap: wrap;
          justify-content: space-between;
          align-items: center;
          gap: 20px;
      }

      .footer-bottom a {
          color: var(--secondary);
          text-decoration: none;
          transition: var(--transition);
      }

      .footer-bottom a:hover {
          color: var(--secondary-light);
          text-decoration: underline;
      }

      .footer-bottom-links {
          display: flex;
          flex-wrap: wrap;
          gap: 20px;
      }

      /* Back to top button */
      .back-to-top {
          position: fixed;
          bottom: 30px;
          right: 30px;
          width: 44px;
          height: 44px;
          background-color: var(--secondary);
          color: white;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          text-decoration: none;
          font-size: 20px;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
          opacity: 0;
          visibility: hidden;
          transform: translateY(20px);
          transition: var(--transition);
          z-index: 99;
      }

      .back-to-top.visible {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
      }

      .back-to-top:hover {
          background-color: var(--primary);
          transform: translateY(-5px);
      }

      /* Animation */
      @keyframes fadeInUp {
          from {
              opacity: 0;
              transform: translateY(20px);
          }
          to {
              opacity: 1;
              transform: translateY(0);
          }
      }

      .animate {
          animation: fadeInUp 0.6s ease forwards;
      }

      /* Responsive */
      @media (max-width: 992px) {
          .footer-content {
              grid-template-columns: 1fr;
          }
          
          .footer-intro, .footer-links-container {
              grid-column: span 12;
          }
          
          .footer-links-container {
              grid-template-columns: repeat(3, 1fr);
          }
          
          .footer-mid-content {
              flex-direction: column;
              align-items: stretch;
          }
          
          .social-container {
              width: 100%;
          }
      }

      @media (max-width: 768px) {
          .footer-links-container {
              grid-template-columns: repeat(2, 1fr);
              gap: 20px;
          }
          
          .footer-mid {
              padding: 30px 0;
          }
          
          .newsletter-heading {
              font-size: 20px;
          }
          
          .footer-bottom-content {
              flex-direction: column;
              text-align: center;
          }
          
          .footer-bottom-links {
              justify-content: center;
          }
      }

      @media (max-width: 576px) {
          .footer-links-container {
              grid-template-columns: 1fr;
          }
          
          .footer-top {
              padding: 60px 0 30px;
          }
          
          .newsletter-form {
              flex-direction: column;
          }
          
          .newsletter-button {
              width: 100%;
              justify-content: center;
          }
          
          .footer-bottom-links {
              flex-direction: column;
              gap: 10px;
          }
      }
      /*--------------------------------------------------------------
      End of Global Footer
      --------------------------------------------------------------*/


/*--------------------------------------------------------------
Pages Hero Section
--------------------------------------------------------------*/
/*Pages Hero section
/* Page Hero Section - Reusable Component */
.page-hero {
    background: linear-gradient(135deg, rgba(0, 93, 185, 0.92) 0%, rgba(12, 42, 71, 0.95) 100%);                                                                                                                                                                                                                                                                                                                                                               
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px; /* Extra top padding for fixed navbar */
    color: white;
    display: flex;
    align-items: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
}

/* Background variations for different pages */
.page-hero.services-bg::before {
    background-image: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
}

.page-hero.testimonials-bg::before {
    background-image: url('assets/img/hero-bg-2.jpg');
}

.page-hero.faq-bg::before {
    background-image: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
}

.page-hero.contact-bg::before {
    background-image: url('https://images.unsplash.com/photo-1516062423079-7ca13cdc7f5a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
}

.page-hero.about-bg::before {
    background-image: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
}

.page-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-badge {
    display: inline-block;
    background: rgba(123, 211, 221, 0.2);
    color: #7BD3DD;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
    border: 1px solid rgba(123, 211, 221, 0.3);
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-hero-title span {
    color: #FF6B35;
    position: relative;
}

.page-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 30px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.page-hero-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
    font-size: 15px;
}

.page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-hero-breadcrumb a:hover {
    color: #FF6B35;
}

.page-hero-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.6);
}

.page-hero-breadcrumb .current {
    color: #FF6B35;
    font-weight: 600;
}

.page-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.9s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.page-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    white-space: nowrap;
}

.page-hero-btn-primary {
    background: #FF6B35;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.page-hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
    color: white;
}

.page-hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.page-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    color: white;
}

/* Decorative elements */
.page-hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.page-hero-shape {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
    font-size: 2rem;
}

.page-hero-shape:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.page-hero-shape:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.page-hero-shape:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

/* Wave separator */
.page-hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 3;
}

.page-hero-waves svg {
    width: 100%;
    height: 100%;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 80px;
        min-height: 60vh;
    }

    .page-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .page-hero-breadcrumb {
        flex-wrap: wrap;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
}


/*--------------------------------------------------------------
Pricing section - Services
-------------------------------------------------------------*/
/* MGR Pricing Section Styles - Improved */
.mgr-pricing-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #f4f9fb 0%, #e8eafd 100%);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #364167;
  position: relative;
  overflow: hidden;
}

.mgr-pricing-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(rgba(0, 123, 255, 0.1), transparent);
  top: -150px;
  right: -150px;
  z-index: 0;
}

.mgr-pricing-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(rgba(253, 126, 20, 0.05), transparent);
  bottom: -200px;
  left: -200px;
  z-index: 0;
}

.mgr-pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes highlight {
  0% {
    background-color: transparent;
  }
  30% {
    background-color: rgba(253, 126, 20, 0.2);
  }
  100% {
    background-color: rgba(253, 126, 20, 0.1);
  }
}

@keyframes pricePulse {
  0% {
    transform: scale(1);
    color: inherit;
  }
  50% {
    transform: scale(1.1);
    color: #FD7E14;
  }
  100% {
    transform: scale(1);
    color: inherit;
  }
}

@keyframes progressPulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

@keyframes digitFlip {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px);
    opacity: 0;
  }
  51% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 0.5;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

.mgr-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.mgr-fade-out {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mgr-price-pulse {
  animation: pricePulse 0.6s ease;
}

.mgr-progress-pulse {
  animation: progressPulse 0.6s ease;
}

.mgr-highlight {
  animation: highlight 1s ease;
}

.mgr-digit-flip {
  animation: digitFlip 0.3s ease;
}

.mgr-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  animation: ripple 0.6s linear;
}

/* Card visibility animation */
.mgr-price-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.mgr-price-card.mgr-card-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section Header - Improved */
.mgr-pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.mgr-pricing-subtitle {
  color: #007BFF;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
  padding: 0 15px;
}

.mgr-pricing-subtitle::before,
.mgr-pricing-subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #007BFF, transparent);
}

.mgr-pricing-subtitle::before {
  left: -20px;
}

.mgr-pricing-subtitle::after {
  right: -20px;
  background: linear-gradient(90deg, transparent, #007BFF);
}

.mgr-pricing-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #364167 0%, #007BFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.mgr-pricing-description {
  font-size: 1.1rem;
  color: #555555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Urgency Banner - Improved */
.mgr-urgency-banner {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff9671 100%);
  color: white;
  padding: 18px 25px;
  border-radius: 15px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.25);
  position: relative;
  overflow: hidden;
  justify-content: space-between;
}

.mgr-urgency-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0) 60%);
}

.mgr-urgency-content-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
}

.mgr-urgency-icon {
  font-size: 24px;
  margin-right: 15px;
  animation: pulse 2s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}

.mgr-urgency-content {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

.mgr-urgency-countdown {
  display: flex;
  gap: 10px;
  margin-left: 15px;
}

.mgr-countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 10px;
  min-width: 60px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.mgr-countdown-number {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.mgr-countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-top: 3px;
  opacity: 0.9;
}

/* Toggle Styling - Improved */
.mgr-toggle-wrapper {
  margin-bottom: 40px;
  text-align: center;
}

.mgr-toggle-heading {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #364167;
}

.mgr-modern-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.mgr-toggle-slider {
  display: flex;
  background: #f5f5f7;
  border-radius: 50px;
  padding: 5px;
  position: relative;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.mgr-toggle-option {
  flex: 1;
  text-align: center;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #555;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mgr-toggle-option i {
  font-size: 0.9em;
}

.mgr-toggle-option.mgr-active {
  background: #007BFF;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.25);
}

.mgr-single-option.mgr-active {
  background: linear-gradient(135deg, #007BFF, #00A3FF);
}

.mgr-combo-option.mgr-active {
  background: linear-gradient(135deg, #5A617A, #364167);
}

.mgr-save-tag {
  background: #FF7F2A;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 40px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(255, 127, 42, 0.3);
}

.mgr-bundle-info {
  background: rgba(0, 123, 255, 0.05);
  border-radius: 15px;
  padding: 20px;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: none;
  border: 1px solid rgba(0, 123, 255, 0.1);
  box-shadow: 0 5px 20px rgba(0, 123, 255, 0.08);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mgr-bundle-info-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mgr-bundle-info-title {
  font-weight: 700;
  color: #007BFF;
  margin-bottom: 10px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mgr-bundle-info-title i {
  color: #007BFF;
  background: rgba(0, 123, 255, 0.1);
  padding: 8px;
  border-radius: 50%;
  font-size: 0.9rem;
}

.mgr-bundle-info-text {
  color: #555;
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mgr-bundle-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mgr-bundle-item i {
  color: #007BFF;
  font-size: 0.9rem;
}

/* Progress Bar - Improved */
.mgr-progress-container {
  max-width: 800px;
  margin: 0 auto 40px;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.03);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mgr-progress-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: #364167;
  font-weight: 600;
  align-items: center;
}

.mgr-services-count {
  color: #007BFF;
  background: rgba(0, 123, 255, 0.1);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.9rem;
}

.mgr-progress-bar {
  height: 10px;
  background: #e8eafd;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.mgr-progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.2) 0%, 
    rgba(255, 255, 255, 0) 20%, 
    rgba(255, 255, 255, 0) 80%, 
    rgba(255, 255, 255, 0.2) 100%);
}

.mgr-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, #007BFF, #5AAFB9);
  border-radius: 5px;
  transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

/* Price Cards - Improved */
.mgr-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.mgr-price-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  will-change: transform;
}

.mgr-price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.mgr-featured-card {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 123, 255, 0.12);
  border: 2px solid rgba(0, 123, 255, 0.1);
}

.mgr-featured-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 123, 255, 0.15);
}

.mgr-popular-tag {
  position: absolute;
  top: 0;
  right: 20px;
  background: linear-gradient(135deg, #FD7E14, #FF9A4D);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 0 0 15px 15px;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(253, 126, 20, 0.3);
}

.mgr-popular-tag i {
  margin-right: 5px;
  animation: spin 10s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.mgr-selection-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.mgr-checkmark {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 28px;
  height: 28px;
  background: #007BFF;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 3px 10px rgba(0, 123, 255, 0.3);
}

.mgr-price-card.mgr-selected .mgr-checkmark {
  transform: scale(1);
}

.mgr-primary-badge,
.mgr-addon-badge {
  position: absolute;
  top: 55px;
  right: -35px;
  padding: 6px 30px;
  transform: rotate(45deg);
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.5s ease;
  width: 150px;
  text-align: center;
}

.mgr-primary-badge {
  background: linear-gradient(135deg, #007BFF, #5AAFB9);
  color: white;
  top: 25px;
}

.mgr-addon-badge {
  background: linear-gradient(135deg, #FD7E14, #FF9A4D);
  color: white;
  top: 25px;
}

.mgr-price-card.mgr-primary .mgr-primary-badge {
  opacity: 1;
}

.mgr-price-card.mgr-addon .mgr-addon-badge {
  opacity: 1;
}

.mgr-card-header {
  padding: 35px 25px 20px;
  text-align: center;
  border-bottom: 1px solid #f1f5f9;
  position: relative;
}

.mgr-card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(0, 123, 255, 0.2), 
    transparent);
}

.mgr-card-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 123, 255, 0.1);
  color: #007BFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 32px;
  margin: 0 auto 25px;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
  border: 1px solid rgba(0, 123, 255, 0.2);
}

.mgr-price-card:hover .mgr-card-icon {
  transform: scale(1.1) rotate(10deg);
  background: rgba(0, 123, 255, 0.15);
}

.mgr-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #364167;
  margin-bottom: 15px;
  line-height: 1.2;
}

.mgr-price-container {
  position: relative;
  min-height: 70px;
}

.mgr-price-single {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  transition: all 0.3s ease;
}

.mgr-price-combo {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

/* Price display control for combo mode */
.mgr-combo-mode .mgr-price-combo .mgr-price-discount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FD7E14;
  line-height: 1;
}

/* Hide discount elements by default to show only $439 */
.mgr-combo-mode .mgr-price-combo .mgr-price-label,
.mgr-combo-mode .mgr-price-combo .mgr-price-strike,
.mgr-combo-mode .mgr-price-combo .mgr-save-label {
  display: none;
}

/* When showing discount ($149), display all discount elements */
.mgr-combo-mode .mgr-price-combo.mgr-show-discount .mgr-price-label,
.mgr-combo-mode .mgr-price-combo.mgr-show-discount .mgr-price-strike,
.mgr-combo-mode .mgr-price-combo.mgr-show-discount .mgr-save-label {
  display: block;
}

/* Style for discounted price */
.mgr-combo-mode .mgr-price-combo.mgr-show-discount .mgr-price-discount {
  font-size: 1.8rem;
}

/* Toggle between single and combo price displays */
.mgr-combo-mode .mgr-price-single {
  opacity: 0;
  transform: translateY(-10px);
}

.mgr-combo-mode .mgr-price-combo {
  opacity: 1;
  transform: translateY(0);
}

/* Regular price for all cards initially and for selected cards */
.mgr-combo-mode .mgr-price-combo:not(.mgr-show-discount) .mgr-price-discount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FD7E14;
}

.mgr-combo-mode .mgr-price-combo:not(.mgr-show-discount) .mgr-price-label,
.mgr-combo-mode .mgr-price-combo:not(.mgr-show-discount) .mgr-price-strike,
.mgr-combo-mode .mgr-price-combo:not(.mgr-show-discount) .mgr-save-label {
  display: none;
}

/* Discount price only for unselected cards after a primary is selected */
.mgr-combo-mode .mgr-price-combo.mgr-show-discount .mgr-price-label,
.mgr-combo-mode .mgr-price-combo.mgr-show-discount .mgr-price-strike,
.mgr-combo-mode .mgr-price-combo.mgr-show-discount .mgr-price-discount,
.mgr-combo-mode .mgr-price-combo.mgr-show-discount .mgr-save-label {
  display: block;
}

.mgr-price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FD7E14;
  line-height: 1;
  text-shadow: 0 2px 5px rgba(253, 126, 20, 0.2);
}

.mgr-price-period {
  font-size: 0.9rem;
  color: #777;
  font-weight: 500;
}

.mgr-price-label {
  display: block;
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 2px;
  font-weight: 500;
}

.mgr-price-strike {
  font-size: 1.1rem;
  color: #777;
  text-decoration: line-through;
  margin-right: 10px;
  font-weight: 500;
}

.mgr-price-discount {
  font-size: 1.8rem;
  font-weight: 800;
  color: #FD7E14;
  text-shadow: 0 2px 5px rgba(253, 126, 20, 0.2);
}

.mgr-save-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #FF6B6B;
  margin-top: 5px;
  padding: 3px 8px;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 4px;
  display: inline-block;
}

.mgr-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.mgr-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  flex-grow: 1;
}

.mgr-features-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  color: #555;
  font-size: 0.95rem;
}

.mgr-features-list li i {
  color: #007BFF;
  margin-right: 10px;
  font-size: 0.9rem;
  margin-top: 3px;
}

.mgr-select-btn {
  padding: 16px 10px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #364167, #5A617A);
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(54, 65, 103, 0.2);
}

.mgr-featured-card .mgr-select-btn {
  background: linear-gradient(135deg, #007BFF, #5AAFB9);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

.mgr-select-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.mgr-featured-card .mgr-select-btn:hover {
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
}

.mgr-select-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(255, 255, 255, 0) 100%);
  transition: all 0.7s ease;
}

.mgr-select-btn:hover::before {
  left: 100%;
}

.mgr-btn-default,
.mgr-btn-selected,
.mgr-btn-primary,
.mgr-btn-addon {
  display: none;
}

.mgr-btn-default {
  display: block;
}

.mgr-price-card.mgr-selected .mgr-btn-selected,
.mgr-price-card.mgr-primary .mgr-btn-primary,
.mgr-price-card.mgr-addon .mgr-btn-addon {
  display: block;
}

.mgr-price-card.mgr-selected .mgr-btn-default,
.mgr-price-card.mgr-primary .mgr-btn-default,
.mgr-price-card.mgr-addon .mgr-btn-default {
  display: none;
}

.mgr-price-card.mgr-selected,
.mgr-price-card.mgr-primary,
.mgr-price-card.mgr-addon {
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
}

.mgr-price-card.mgr-primary {
  border: 2px solid #007BFF;
}

.mgr-price-card.mgr-addon {
  border: 2px solid #FD7E14;
}

.mgr-price-card.mgr-disabled {
  opacity: 0.5;
  transform: scale(0.98);
  pointer-events: none;
  filter: grayscale(0.5);
}

/* Package Summary - Improved */
.mgr-summary-container {
  max-width: 800px;
  margin: 0 auto 40px;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.03);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mgr-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f1f5f9;
}

.mgr-summary-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: #364167;
}

.mgr-summary-savings {
  font-size: 1rem;
  color: #FD7E14;
  font-weight: 700;
  padding: 5px 12px;
  background: rgba(253, 126, 20, 0.1);
  border-radius: 30px;
}

.mgr-summary-content {
  margin-bottom: 25px;
}

.mgr-summary-empty {
  text-align: center;
  color: #888;
  font-size: 1rem;
  margin: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 10px;
}

.mgr-summary-services {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mgr-summary-service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid #f1f5f9;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 12px;
  margin-bottom: 10px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.5s ease;
}

.mgr-summary-service.mgr-fade-in {
  transform: translateY(0);
  opacity: 1;
}

.mgr-summary-service:last-child {
  margin-bottom: 0;
}

.mgr-service-details {
  display: flex;
  align-items: center;
}

.mgr-service-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.mgr-service-primary .mgr-service-icon {
  background: rgba(0, 123, 255, 0.1);
  color: #007BFF;
  border: 1px solid rgba(0, 123, 255, 0.2);
}

.mgr-service-addon .mgr-service-icon {
  background: rgba(253, 126, 20, 0.1);
  color: #FD7E14;
  border: 1px solid rgba(253, 126, 20, 0.2);
}

.mgr-service-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 5px;
  color: #364167;
}

.mgr-service-type {
  font-size: 0.8rem;
  padding: 3px 8px;
  border-radius: 20px;
  color: white;
  font-weight: 600;
}

.mgr-service-primary .mgr-service-type {
  background: linear-gradient(135deg, #007BFF, #5AAFB9);
}

.mgr-service-addon .mgr-service-type {
  background: linear-gradient(135deg, #FD7E14, #FF9A4D);
}

.mgr-service-price {
  font-weight: 700;
  font-size: 1.2rem;
  color: #FD7E14;
}

.mgr-summary-total {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 12px;
  padding: 20px;
}

.mgr-total-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 1.1rem;
  color: #364167;
}

.mgr-savings-row {
  border-top: 2px dashed #f1f5f9;
  padding-top: 15px;
  margin-top: 5px;
  color: #FF6B6B;
  font-weight: 700;
}

.mgr-regular-price {
  text-decoration: line-through;
  color: #777;
}

.mgr-final-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #FD7E14;
  text-shadow: 0 2px 5px rgba(253, 126, 20, 0.2);
}

.mgr-savings-amount {
  font-size: 1.2rem;
}

.mgr-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  border-radius: 50px;
  background: linear-gradient(135deg, #FD7E14, #FF9A4D);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(253, 126, 20, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 25px;
}

.mgr-book-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(253, 126, 20, 0.4);
}

.mgr-book-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(255, 255, 255, 0) 100%);
  transition: all 0.7s ease;
}

.mgr-book-btn:hover::before {
  left: 100%;
}

.mgr-book-btn.mgr-disabled {
  opacity: 0.5;
  pointer-events: none;
  animation: none;
}

/* Single Service CTA - Improved */
.mgr-single-cta {
  max-width: 800px;
  margin: 0 auto 40px;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.03);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mgr-selected-service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f1f5f9;
}

.mgr-selected-service-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: #364167;
}

.mgr-single-prompt {
  text-align: center;
  color: #888;
  font-size: 1.1rem;
  margin: 10px 0;
  padding: 25px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 12px;
}

.mgr-service-list {
  margin-bottom: 15px;
  display: none;
}

.mgr-service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 12px;
  margin-bottom: 15px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.5s ease;
}

.mgr-service-item.mgr-fade-in {
  transform: translateY(0);
  opacity: 1;
}

.mgr-service-item-details {
  display: flex;
  align-items: center;
}

.mgr-service-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 123, 255, 0.1);
  color: #007BFF;
  font-size: 20px;
  border: 1px solid rgba(0, 123, 255, 0.2);
  flex-shrink: 0;
}

.mgr-service-item-info {
  display: flex;
  flex-direction: column;
}

.mgr-service-item-name {
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0 0 5px;
  color: #364167;
}

.mgr-service-item-desc {
  font-size: 0.9rem;
  color: #777;
}

.mgr-service-item-price {
  font-weight: 700;
  font-size: 1.5rem;
  color: #FD7E14;
  text-shadow: 0 2px 5px rgba(253, 126, 20, 0.1);
}

.mgr-single-total {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  display: none;
}

.mgr-single-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 1.1rem;
  color: #364167;
}

.mgr-service-name-display {
  font-weight: 600;
}

.mgr-service-price-display {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FD7E14;
  text-shadow: 0 2px 5px rgba(253, 126, 20, 0.1);
}

.mgr-addon-row {
  border-top: 1px dashed #ddd;
  padding-top: 15px;
  margin-top: 5px;
  font-size: 0.95rem;
  color: #777;
}

.mgr-addon-price {
  font-weight: 600;
}

.mgr-single-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 18px 25px;
  border-radius: 50px;
  background: linear-gradient(135deg, #FD7E14, #FF9A4D);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(253, 126, 20, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: pulse-shadow 2s infinite;
}

.mgr-single-book-btn:hover {
  transform: translateY(-5px) scale(1.03);
}

.mgr-single-book-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(255, 255, 255, 0) 100%);
  transition: all 0.7s ease;
}

.mgr-single-book-btn:hover::before {
  left: 100%;
}

.mgr-single-book-btn.mgr-disabled {
  opacity: 0.5;
  pointer-events: none;
  animation: none;
}

@keyframes pulse-shadow {
  0% {
    box-shadow: 0 10px 30px rgba(253, 126, 20, 0.3);
  }
  50% {
    box-shadow: 0 15px 40px rgba(253, 126, 20, 0.5);
  }
  100% {
    box-shadow: 0 10px 30px rgba(253, 126, 20, 0.3);
  }
}

/* Custom Package CTA - Improved */
.mgr-custom-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 25px;
  background: rgba(0, 123, 255, 0.05);
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.1);
  border: 1px solid rgba(0, 123, 255, 0.1);
}

.mgr-custom-cta-icon {
  font-size: 24px;
  color: #007BFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.15);
}

.mgr-custom-cta p {
  margin: 0 0 15px;
  color: #555;
  font-size: 1.1rem;
  font-weight: 500;
}

.mgr-contact-link {
  color: #007BFF;
  font-weight: 600;
  position: relative;
  text-decoration: none;
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid #007BFF;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.mgr-contact-link:hover {
  color: white;
  background: #007BFF;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

/* Responsive Styles - Improved */
@media (max-width: 991px) {
  .mgr-pricing-title {
    font-size: 2rem;
  }
  
  .mgr-cards-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .mgr-urgency-banner {
    flex-direction: column;
    padding: 20px;
  }
  
  .mgr-urgency-content-wrapper {
    margin-bottom: 15px;
    width: 100%;
    justify-content: center;
  }
  
  .mgr-urgency-countdown {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
  
  .mgr-toggle-slider {
    max-width: 90%;
  }
}

@media (max-width: 767px) {
  .mgr-pricing-section {
    padding: 50px 0;
  }
  
  .mgr-pricing-title {
    font-size: 1.8rem;
  }
  
  .mgr-pricing-description {
    font-size: 1rem;
  }
  
  .mgr-cards-container {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .mgr-featured-card {
    transform: none;
    scale: 1.03;
  }
  
  .mgr-featured-card:hover {
    transform: translateY(-10px);
  }
  
  .mgr-summary-header {
    flex-direction: column;
    text-align: center;
  }
  
  .mgr-summary-savings {
    margin-top: 10px;
  }
  
  .mgr-toggle-slider {
    max-width: 100%;
  }
  
  .mgr-toggle-option {
    font-size: 0.9rem;
    padding: 12px 15px;
  }
  
  .mgr-bundle-info-content {
    align-items: center;
    text-align: center;
  }
  
  .mgr-bundle-item {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .mgr-pricing-title {
    font-size: 1.5rem;
  }
  
  .mgr-toggle-heading {
    font-size: 1.1rem;
  }
  
  .mgr-toggle-option {
    padding: 10px;
    font-size: 0.85rem;
  }
  
  .mgr-popular-tag {
    font-size: 0.7rem;
    padding: 5px 10px;
  }
  
  .mgr-card-title {
    font-size: 1.3rem;
  }
  
  .mgr-price-amount {
    font-size: 2rem;
  }
  
  .mgr-countdown-item {
    min-width: 50px;
    padding: 5px 8px;
  }
  
  .mgr-countdown-number {
    font-size: 1.2rem;
  }
  
  .mgr-summary-service {
    flex-direction: column;
    text-align: center;
  }
  
  .mgr-service-details {
    flex-direction: column;
    margin-bottom: 15px;
  }
  
  .mgr-service-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .mgr-service-item {
    flex-direction: column;
    text-align: center;
  }
  
  .mgr-service-item-details {
    flex-direction: column;
    margin-bottom: 15px;
  }
  
  .mgr-service-item-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .mgr-service-item-price {
    font-size: 1.3rem;
  }
}

/* Accessibility Improvements */
.mgr-price-card:focus-within {
  outline: 2px solid #007BFF;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

.mgr-select-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
}

.mgr-toggle-option:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

.mgr-book-btn:focus,
.mgr-single-book-btn:focus,
.mgr-contact-link:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}
/*-----------------------------------------------------
End of MGR Pricing Styles
-----------------------------------------------------*/

/*-----------------------------------------------------
Testimonials Section - Testimonial Page 
-----------------------------------------------------*/
 /*Testimonial page*/
    /* Review Showcase Section - Using existing styles where possible */
    .review-showcase {
      padding: 80px 0;
      background: linear-gradient(135deg, #f4f9fb 0%, #e8eafd 100%);
      position: relative;
      overflow: hidden;
      font-family: var(--default-font); /* Ensure this variable is defined */
      color: var(--default-color); /* Ensure this variable is defined */
    }

    .review-showcase::before {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: rgba(0, 123, 255, 0.03);
      top: -150px;
      right: -150px;
      z-index: 0;
    }

    .review-showcase::after {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: rgba(253, 126, 20, 0.05); /* Uses an orange-like color */
      bottom: -200px;
      left: -200px;
      z-index: 0;
    }

    .review-controls {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-bottom: 40px;
      position: relative; /* To ensure it's above ::before/::after pseudo-elements */
      z-index: 1;
    }

    .feedback-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .feedback-btn {
      padding: 10px 20px;
      background-color: var(--surface-color); /* Ensure this variable is defined */
      border: 1px solid color-mix(in srgb, var(--default-color, #333), transparent 90%); /* Added fallback for --default-color */
      border-radius: 50px;
      cursor: pointer;
      font-family: var(--default-font);
      font-size: 15px;
      transition: var(--transition); /* Ensure this variable is defined */
    }

    .feedback-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      border-color: var(--accent-color); /* Ensure this variable is defined */
    }

    .feedback-btn.active {
      background: var(--accent-color);
      color: var(--contrast-color); /* Ensure this variable is defined */
      border: none;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .feedback-search {
      position: relative;
      max-width: 300px;
      width: 100%;
    }

    .search-input {
      width: 100%;
      padding: 12px 15px 12px 40px;
      border: 1px solid color-mix(in srgb, var(--default-color, #333), transparent 90%);
      border-radius: 50px;
      font-size: 15px;
      transition: all 0.3s ease;
      background-color: var(--surface-color);
    }

    .search-input:focus {
      outline: none;
      border-color: var(--accent-color);
      box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1);
    }

    .search-icon {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--gray); /* Ensure this variable is defined */
    }

    .testimony-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
      position: relative; /* For z-index stacking context if needed */
      z-index: 1;
    }

    .testimony-card {
      background-color: var(--surface-color);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      padding: 25px;
      position: relative;
      opacity: 0; /* Initial state for JS animation */
      transform: translateY(30px); /* Initial state for JS animation */
      /* animation: testimony-fade-in 0.5s forwards; /* Controlled by JS now */
    }

    @keyframes testimony-fade-in {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .testimony-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 123, 255, 0.12);
    }

    .event-badge {
      position: absolute;
      top: 25px;
      right: 25px;
      background: var(--accent-color);
      color: var(--contrast-color);
      padding: 6px 15px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2); /* Example shadow for orange accent */
    }

    .rating {
      display: flex;
      margin-bottom: 15px;
    }

    .star {
      color: #FFD700; /* Gold color for stars */
      margin-right: 5px;
      font-size: 18px;
    }

    .client-words {
      font-size: 16px;
      color: var(--default-color);
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .client-info {
      display: flex;
      flex-direction: column; /* Aligns items vertically */
      margin-top: 20px; /* Was auto, changed for consistent spacing */
      border-top: 1px solid color-mix(in srgb, var(--default-color, #333), transparent 90%);
      padding-top: 15px;
    }
    
    .client-details h4 {
      font-size: 18px;
      font-weight: 600;
      color: var(--heading-color); /* Ensure this variable is defined */
      margin: 0 0 5px 0;
    }

    .client-details p {
      font-size: 14px;
      color: var(--default-color); /* Used default-color for consistency, can be --text-muted */
      opacity: 0.8;
      margin: 0;
    }

    .review-date { /* Added for consistency if you use this class */
      font-size: 14px;
      margin-top: 5px;
      color: var(--gray);
    }

    .review-pagination {
      background-color: #f0f4ff;
      padding: 14px 20px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      margin: 20px auto;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      position: relative; /* For z-index */
      z-index: 1;
    }

    .display-counter {
      color: var(--default-color);
      font-size: 16px;
      font-weight: 500;
    }

    .current-count, .total-count {
      font-weight: 700;
      color: var(--accent-color);
    }

    .load-more-btn {
      background-color: #ff5231; /* Specific orange */
      color: white;
      border: none;
      border-radius: 24px;
      padding: 10px 20px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      min-width: 140px;
      text-align: center;
      box-shadow: 0 2px 6px rgba(255, 82, 49, 0.3);
    }

    .load-more-btn:hover {
      background-color: #e63e1c;
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(255, 82, 49, 0.3); /* Adjusted hover shadow */
    }

    .testimony-card::after { /* Shimmer effect */
      content: '';
      position: absolute;
      top: 0;
      left: -150%;
      width: 150%;
      height: 100%;
      background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0) 100%);
      transform: skewX(-25deg);
      transition: all 0.75s ease;
      pointer-events: none; /* So it doesn't interfere with card hover */
    }

    .testimony-card:hover::after {
      left: 150%;
    }

    @media (max-width: 992px) {
      .review-controls { flex-direction: column; align-items: flex-start; }
      .feedback-search { max-width: 100%; }
      .testimony-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
    }

    @media (max-width: 768px) {
      .testimony-grid { grid-template-columns: 1fr; }
      .feedback-filters { width: 100%; justify-content: center; }
    }

    @media (max-width: 480px) {
      .feedback-btn { font-size: 14px; padding: 8px 16px; }
    }

    /* Enhanced decorative elements from CSS file */
    /* These are general and might be intended for various sections or page backgrounds */
    /* If they are specific to testimonials, scope them with .review-showcase */
    .shape-decorator {
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 62% 47% 82% 35% / 45% 45% 80% 66%;
      will-change: border-radius, transform, opacity;
      animation: shapes 5s linear infinite;
      display: block;
      background: rgba(255, 255, 255, 0.08);
      z-index: 1; /* Ensure it's above pseudo elements but below content */
    }

    .shape-1 { top: -100px; right: -80px; }
    .shape-2 { bottom: -80px; left: -80px; width: 300px; height: 300px; animation-direction: reverse; }
    .shape-3 { top: 30%; left: 30%; width: 150px; height: 150px; animation-duration: 7s; }

    @keyframes shapes {
      0%, 100% { border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; transform: translate(0, 0) rotate(0.01deg); }
      34% { border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%; transform: translate(20px, 20px) rotate(0.01deg); }
      50% { transform: translate(0, 0) rotate(0.01deg); }
      67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; transform: translate(-20px, 10px) rotate(0.01deg); }
    }

    /* Clear Button Styles (If used on this page) */
    .mgr-clear-btn {
      background: transparent; border: 2px solid #e74c3c; color: #e74c3c;
      padding: 8px 15px; border-radius: 50px; font-size: 14px; font-weight: 600;
      cursor: pointer; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 5px;
      margin-left: auto; /* If used inside a flex container */
    }
    .mgr-clear-btn:hover { background: #e74c3c; color: white; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3); }
    .mgr-clear-btn i { font-size: 12px; }

    /* Make headers flex containers to accommodate the button */
    .mgr-selected-service-header, /* Example usage */
    .mgr-summary-header { /* Example usage */
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 15px;
    }
    @media (max-width: 480px) {
      .mgr-clear-btn { font-size: 13px; padding: 6px 12px; }
      .mgr-selected-service-header, .mgr-summary-header { flex-direction: column; align-items: flex-start; }
      .mgr-clear-btn { margin-left: 0; align-self: flex-end; }
    }

    /* Testimonials section specific styles from a different block (ensure they don't conflict or merge) */
    /* Note: Some of these styles might duplicate or override the .review-showcase styles above. */
    /* You'll need to decide which set of styles for testimonials is the definitive one. */
    /* For instance, .testimonials-section also uses .bg-bubble. */
    .testimonials-section {
        padding: 5rem 0;
        background: linear-gradient(135deg, #1E78FF 0%, #0046B8 100%); /* Different background */
        position: relative;
        overflow: hidden;
        color: white; /* Text color for this section */
    }
    .bg-bubble { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.05); z-index: 0; }
    .bg-bubble:nth-of-type(1) { width: 300px; height: 300px; top: 10%; left: 5%;}
    .bg-bubble:nth-of-type(2) { width: 200px; height: 200px; top: 60%; left: 15%;}
    .bg-bubble:nth-of-type(3) { width: 250px; height: 250px; top: 30%; right: 10%;}
    .bg-bubble:nth-of-type(4) { width: 180px; height: 180px; bottom: 10%; right: 20%;}

    .testimonials-container { max-width: 1400px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; overflow: hidden; }
    .testimonials-header { text-align: center; margin-bottom: 3rem; }
    .testimonials-header h2 { font-size: 2.5rem; margin-bottom: 1rem; font-weight: 600; }
    .testimonials-header p { max-width: 800px; margin: 0 auto; font-size: 1.1rem; line-height: 1.6; opacity: 0.95; }
    .testimonials-carousel { position: relative; margin: 0 auto; max-width: 100%; padding: 0 60px; box-sizing: border-box; }
    .testimonials-track { display: flex; transition: transform 0.5s ease; padding: 1rem 0; width: 100%; margin: 0; position: relative; }
    
    /* Card style for .testimonials-section (potentially conflicting with .testimony-card from .review-showcase) */
    .testimonials-section .testimonial-card { /* Scoped for clarity */
        background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px);
        border-radius: 16px; padding: 1.8rem; margin: 0 15px; position: relative;
        transition: all 0.3s ease; display: flex; flex-direction: column;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); min-height: 300px;
        flex: 0 0 auto; width: calc(33.33% - 30px); box-sizing: border-box;
        color: white; /* Ensure text is readable on dark background */
    }
     .testimonials-section .testimonial-card .event-type { /* Scoped */
        background: #FF6B35; /* This uses a specific color, ensure it's intended or use var(--accent-color) */
     }
     .testimonials-section .testimonial-card .client-details h4,
     .testimonials-section .testimonial-card .client-details p {
        color: white; /* Ensure text is readable */
     }
     .testimonials-section .testimonial-card .client-details p {
        opacity: 0.8;
     }


    .nav-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; font-size: 1.2rem; color: #1E78FF; border: none; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; }
    .nav-btn:hover { background: #f5f5f5; transform: translateY(-50%) scale(1.05); }
    .prev-btn { left: 0; }
    .next-btn { right: 0; }
    .carousel-indicators { display: flex; justify-content: center; gap: 8px; margin-top: 2rem; }
    .indicator { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); cursor: pointer; transition: all 0.3s ease; }
    .indicator.active { width: 24px; border-radius: 4px; background: white; }
    .view-all { text-align: center; margin-top: 2.5rem; }
    .view-all a { display: inline-block; background: white; color: #1E78FF; padding: 0.8rem 2.5rem; border-radius: 50px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); font-size: 1rem; }
    .view-all a:hover { background: #f8f8f8; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15); }

    @media (max-width: 1200px) {
        .testimonials-section .testimonial-card { width: calc(50% - 30px); min-height: 320px; }
        .testimonials-header h2 { font-size: 2.2rem; } .nav-btn { width: 36px; height: 36px; }
    }
    @media (max-width: 768px) {
        .testimonials-section .testimonial-card { width: calc(100% - 30px); min-height: 300px; }
        .testimonials-carousel { padding: 0 40px; } .testimonials-header h2 { font-size: 2rem; }
        .testimonials-header p { font-size: 1rem; padding: 0 15px; }
        .testimonials-section { padding: 3rem 0; } .nav-btn { width: 32px; height: 32px; }
    }
    @media (max-width: 480px) {
        .testimonials-section .testimonial-card { padding: 1.2rem; margin: 0 10px; min-height: 280px; }
        .testimonials-header h2 { font-size: 1.7rem; } .testimonials-carousel { padding: 0 30px; }
        .testimonials-section .event-badge { font-size: 0.75rem; padding: 0.3rem 0.7rem; }
        .testimonials-section .testimonial-text { font-size: 0.95rem; }
        .nav-btn { width: 28px; height: 28px; font-size: 1rem; }
    }

    /*------------------------------------------------------
    Testimonial Page Specific Styles
    ------------------------------------------------------*/
    /* Styles specific to Testimonial.html content (review showcase) */
/* Ensure these variables are defined globally or map them to your existing global variables */
:root { /* Placeholder: Replace with your actual global :root or ensure these are available */
    --default-font: 'Poppins', sans-serif;
    --heading-font: 'Poppins', sans-serif;
    --default-color: #364167; 
    --heading-color: #005DB9; 
    --accent-color: #F1481D; 
    --surface-color: #ffffff; 
    --contrast-color: #ffffff; 
    --gray: #6B7280;          
    --transition: all 0.3s ease;
}

/* Wrapper for Testimonial Page specific styles, if you want to scope them further */
/* .testimonial-page-content { */
    /* You can define page-specific variables here if needed */
/* } */

.review-showcase {
  padding: 60px 0; /* Adjusted padding from 80px if hero takes more space */
  background: linear-gradient(135deg, #f4f9fb 0%, #e8eafd 100%);
  position: relative;
  overflow: hidden;
  font-family: var(--default-font);
  color: var(--default-color);
}

.review-showcase::before, 
.review-showcase::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 0; /* Behind content */
}

.review-showcase::before {
  width: 300px;
  height: 300px;
  background: rgba(0, 123, 255, 0.03); /* Soft blue accent */
  top: -100px; /* Adjusted position */
  left: -100px;
  animation: floatShapes 18s ease-in-out infinite alternate;
}

.review-showcase::after {
  width: 400px;
  height: 400px;
  background: rgba(253, 126, 20, 0.05); /* Soft orange accent */
  bottom: -150px; /* Adjusted position */
  right: -150px;
  animation: floatShapes 22s ease-in-out infinite alternate-reverse;
}

/* Header for the review showcase section */
.review-showcase .mgr-pricing-header { /* Reusing this class, ensure it fits or create a new one */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.review-showcase .mgr-pricing-subtitle { /* Reusing this class */
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.review-showcase .mgr-pricing-title { /* Reusing this class */
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.review-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between; /* Changed for better layout */
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feedback-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* Slightly reduced gap */
}

.feedback-btn {
  padding: 10px 20px;
  background-color: var(--surface-color);
  border: 1px solid #e0e0e0; /* Softer border */
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--default-font);
  font-size: 14px; /* Slightly smaller */
  font-weight: 500;
  color: var(--default-color);
  transition: var(--transition);
}

.feedback-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.feedback-btn.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feedback-search {
  position: relative;
  max-width: 280px; /* Slightly smaller max-width */
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 11px 15px 11px 40px; /* Adjusted padding */
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: var(--surface-color);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  font-size: 14px; /* Adjusted icon size */
}

.testimony-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); /* Min card width adjustment */
  gap: 25px; /* Slightly reduced gap */
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.testimony-card {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 25px;
  position: relative;
  display: flex; /* Added for better internal alignment if needed */
  flex-direction: column; /* Added for flex context */
  opacity: 0; 
  transform: translateY(30px); 
  /* animation property applied by JS for initial load and filtering */
}

@keyframes testimony-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimony-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 93, 185, 0.1); /* Using primary color for shadow */
}

.event-badge {
  position: absolute;
  top: 20px; /* Adjusted position */
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 5px 12px; /* Adjusted padding */
  border-radius: 30px;
  font-size: 13px; /* Adjusted font size */
  font-weight: 600;
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.rating {
  display: flex;
  margin-bottom: 12px; /* Adjusted margin */
}

.star {
  color: #FFD700; 
  margin-right: 4px; /* Adjusted margin */
  font-size: 16px; /* Adjusted size */
}

.client-words {
  font-size: 15px; /* Slightly smaller for balance */
  color: var(--default-color);
  margin-bottom: 18px; /* Adjusted margin */
  line-height: 1.7; /* Good line height */
  flex-grow: 1; /* Allows this to take available space */
}

.client-info {
  display: flex;
  flex-direction: column; 
  margin-top: auto; /* Pushes to bottom if card is flex column */
  border-top: 1px solid #eee; /* Softer border */
  padding-top: 15px;
}

.client-details h4 {
  font-size: 17px; /* Adjusted size */
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 4px 0; /* Adjusted margin */
}

.client-details p {
  font-size: 13px; /* Adjusted size */
  color: var(--gray); /* Using gray for less emphasis */
  margin: 0;
}

.review-date { 
  font-size: 13px; /* Consistent with location */
  margin-top: 4px;
  color: var(--gray);
}

.review-pagination {
  background-color: #f0f4ff;
  padding: 12px 18px; /* Adjusted padding */
  border-radius: 10px; /* Softer radius */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  margin: 30px auto 0; /* Adjusted margin */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px; /* Increased gap */
  position: relative;
  z-index: 1;
}

.display-counter {
  color: var(--default-color);
  font-size: 15px; /* Adjusted size */
  font-weight: 500;
}

.current-count, .total-count {
  font-weight: 700;
  color: var(--accent-color);
}

.load-more-btn {
  background-color: var(--accent-color); /* Consistent with accent */
  color: var(--contrast-color);
  border: none;
  border-radius: 24px;
  padding: 10px 22px; /* Adjusted padding */
  font-size: 14px; /* Adjusted size */
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.load-more-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color) 90%, black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimony-card::after { /* Optional Shimmer effect */
  content: ''; position: absolute; top: 0; left: -150%; width: 150%; height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.15) 50%, /* Reduced opacity for subtlety */
    rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg); transition: left 0.85s ease; /* Slightly slower */
  pointer-events: none; 
}

.testimony-card:hover::after {
  left: 150%;
}

@media (max-width: 992px) {
  .review-controls { flex-direction: column; align-items: stretch; /* Stretch items for better mobile layout */ }
  .feedback-search { max-width: none; } /* Allow search to take full width if needed */
  .testimony-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}

@media (max-width: 768px) {
  .testimony-grid { grid-template-columns: 1fr; }
  .feedback-filters { justify-content: flex-start; /* Align filters to start on mobile */ }
}

@media (max-width: 480px) {
  .feedback-btn { font-size: 13px; padding: 8px 14px; }
  .review-showcase .mgr-pricing-title { font-size: 1.8rem; } /* Example adjustment */
  .review-pagination { flex-direction: column; gap: 10px; }
}

/* Decorative shapes if specific to this page and not in main2.css */
/* These were from a Testimonial.html example provided previously, ensure they are unique if used */
.testimonial-page-content .shape-decorator { 
    position: absolute; width: 400px; height: 400px;
    border-radius: 62% 47% 82% 35% / 45% 45% 80% 66%;
    will-change: border-radius, transform, opacity;
    animation: shapes 15s linear infinite alternate; /* Slower, smoother animation */
    display: block; background: rgba(0, 93, 185, 0.05); /* Theme color */
    z-index: 0; /* Ensure behind content */
}
.testimonial-page-content .shape-1 { top: -150px; right: -120px; animation-delay: -2s;}
.testimonial-page-content .shape-2 { bottom: -120px; left: -150px; width: 300px; height: 300px; animation-direction: alternate-reverse; animation-delay: -5s;}
.testimonial-page-content .shape-3 { display: none; } /* Hiding the third one for cleaner look, can be re-enabled */

@keyframes shapes {
    0%, 100% { border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%; transform: translate(0px, 0px) rotate(0deg); }
    33% { border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%; transform: translate(15px, -10px) rotate(15deg); }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; transform: translate(-10px, 15px) rotate(-10deg); }
}

@keyframes floatShapes { /* Used by review-showcase::before/::after */
    0% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-10px) translateX(5px) rotate(15deg); }
    50% { transform: translateY(5px) translateX(-10px) rotate(-10deg); }
    75% { transform: translateY(-5px) translateX(10px) rotate(5deg); }
    100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
}


/* === INICIO: ESTILOS EXCLUSIVOS PARA PÁGINA DE CONTACTO (VERSIÓN 2) === */

/* Banner de la página de contacto */
.page-hero-contact {
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    background: linear-gradient(135deg, #005DB9 0%, #287dd1 100%);
}
.page-hero-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none" fill="rgba(255,255,255,0.05)"><path d="M0 100 L100 0 L100 100 Z" /><path d="M0 0 L0 100 L100 0 Z" opacity="0.5"/></svg>');
    background-size: cover;
    opacity: 0.5;
}
.page-hero-contact .page-hero-container { /* Anidado para especificidad */
    position: relative;
    z-index: 2;
}
.page-hero-contact .page-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.page-hero-contact .page-hero-title {
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.page-hero-contact .page-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px auto;
}
.page-hero-contact .page-hero-breadcrumb {
    font-size: 1rem;
    font-weight: 500;
}
.page-hero-contact .page-hero-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}
.page-hero-contact .page-hero-breadcrumb a:hover {
    text-decoration: underline;
}
.page-hero-contact .page-hero-breadcrumb .separator {
    margin: 0 10px;
    opacity: 0.7;
}
.page-hero-contact .page-hero-breadcrumb .current {
    opacity: 0.7;
}

/* Sección de Contacto versión 2 */
.contact-section-v2 {
    padding: 80px 0;
    background: #f4f9fb;
}
.contact-wrapper-v2 {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 60px;
    align-items: flex-start;
}
.contact-info-v2 {
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 93, 185, 0.1);
    background: #ffffff;
}
.contact-info-v2 h2 {
    font-family: "Poppins", sans-serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #005DB9;
}
.contact-info-v2 .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}
.contact-info-v2 .info-item:hover {
    transform: translateX(5px);
}
.contact-info-v2 .info-item i {
    color: #FF6B6B;
    background: rgba(255, 107, 107, 0.1);
    font-size: 20px;
    width: 44px; height: 44px; min-width: 44px;
    display: flex; justify-content: center; align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}
.contact-info-v2 .info-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 5px; color: #005DB9; }
.contact-info-v2 .info-item p { font-size: 14px; margin: 0; }
.contact-info-v2 .info-item:hover i { background: #FF6B6B; color: #ffffff; }
.contact-info-v2 .info-item a { color: #364167; text-decoration: none; transition: color 0.3s ease; }
.contact-info-v2 .info-item a:hover { color: #FF6B6B; }

/* Social Media en Info Box v2 */
.contact-info-v2 .social-media {
    margin-top: 40px; padding-top: 30px; border-top: 1px solid #e9ecef;
}
.contact-info-v2 .social-media h3 { margin-bottom: 20px; font-size: 1.1rem; color: #005DB9; }
.contact-info-v2 .social-icons { display: flex; gap: 15px; }
.contact-info-v2 .social-icon:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4); }

/* Formulario v2 */
.form-container-v2 {
    background: #ffffff; padding: 40px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 93, 185, 0.1);
}
.form-container-v2 h2 {
    font-family: "Poppins", sans-serif; font-size: 2rem; margin-bottom: 30px; color: #005DB9;
}
.form-container-v2 .form-group { margin-bottom: 25px; }
.form-container-v2 .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-container-v2 .form-label { display: block; margin-bottom: 8px; font-weight: 600; color: #005DB9; }
.form-container-v2 input, .form-container-v2 select, .form-container-v2 textarea {
    width: 100%; font-size: 14px; padding: 15px; border-radius: 8px; border: 1px solid #ced4da; transition: all 0.3s ease;
}
.form-container-v2 input:focus, .form-container-v2 select:focus, .form-container-v2 textarea:focus {
    border-color: #005DB9; outline: none; box-shadow: 0 0 0 3px rgba(0, 93, 185, 0.15);
}
.form-container-v2 textarea { min-height: 120px; resize: vertical; }

/* Selección de Servicios en Formulario v2 */
.form-container-v2 .services-selection { margin-bottom: 25px; }
.form-container-v2 .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-bottom: 15px; }
.form-container-v2 .service-option {
    border: 2px solid #e9ecef; border-radius: 12px; padding: 20px; cursor: pointer; transition: all 0.3s ease; text-align: left;
}
.form-container-v2 .service-option i { font-size: 1.5rem; color: #FF6B6B; margin-bottom: 10px; }
.form-container-v2 .service-option:hover { border-color: #FF6B6B; transform: translateY(-2px); }
.form-container-v2 .service-option.selected { border-color: #005DB9; background: rgba(0, 93, 185, 0.05); box-shadow: 0 5px 15px rgba(0, 93, 185, 0.1); }
.form-container-v2 .service-option h4 { font-family: "Poppins", sans-serif; font-size: 1rem; font-weight: 600; margin: 0; margin-bottom: 8px; color: #005DB9; }
.form-container-v2 .service-counter { text-align: right; font-weight: 600; color: #364167; }
.form-container-v2 .service-option p {
    font-family: "Open Sans", sans-serif; /* Asegura la fuente correcta */
    font-size: 0.9rem;
    color: #6c757d; 
    margin: 0;
    line-height: 1.4;
    padding: 0 5px; 
    
}

/* Botón de envío y mensajes de estado v2 */
.form-container-v2 .submit-button {
    color: #ffffff; background: #FF6B6B; border: 0; padding: 15px 40px; transition: all 0.3s ease;
    border-radius: 50px; font-size: 16px; font-weight: 600; cursor: pointer;
    display: inline-flex; align-items: center; gap: 10px;
}
.form-container-v2 .submit-button:hover { background: #f1481d; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4); }
.form-container-v2 .spinner { display: none; }
.form-container-v2 .loading .spinner { display: block; }
.form-container-v2 .loading .btn-text { display: none; }
.form-container-v2 .form-status { margin-top: 20px; padding: 15px; border-radius: 8px; font-weight: 500; display: none; }
.form-container-v2 .form-status.success { background-color: rgba(76, 175, 80, 0.1); color: #4CAF50; border: 1px solid #4CAF50; display: block; }
.form-container-v2 .form-status.error { background-color: rgba(244, 67, 54, 0.1); color: #F44336; border: 1px solid #F44336; display: block; }

/* Responsive para v2 */
@media (max-width: 992px) { .contact-wrapper-v2 { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .page-hero-contact .page-hero-title { font-size: 2.5rem; } .form-container-v2 .form-row { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
    .form-container-v2 .submit-button {
        width: 100%;
        justify-content: center; 
    }
}

/* === FIN: ESTILOS EXCLUSIVOS PARA PÁGINA DE CONTACTO (VERSIÓN 2) === */

/*------------------------------------------------------
End of Testimonial Page Specific Styles\
