/* genereal */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  
  }
  

 :root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333333;
    --light-color: #f8f9fa;
    --border-color: #e9ecef;
    --header-height: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

/* ================= Top Bar ================= */
.top-bar {
    background-color: #666660;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}


.top-bar-info li {
    display: inline-flex;
    align-items: center;
}


.top-bar-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar-info a:hover {
    color: var(--primary-color);
}


.top-bar-social a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar-social a:hover {
    color: var(--primary-color);
}



.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
    /* Altura mínima para mantener consistencia */
    min-height: 110px;
    display: flex;
    align-items: center;
}

.site-header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    animation: slideDown 0.5s;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}



/* Servicios ofrecidos  */

#servicios {
    padding: 70px;
}
@media (max-width: 768px) {
  #servicios .h1-Preguntasfrecuentes {
    font-size: 1.8rem;
    letter-spacing: 1.5px;
    text-align: center;
    margin-bottom: 30px;
  }

  #servicios .p-4 {
    padding: 20px !important; /* reduce el padding interno en tarjetas */
  }

  #servicios h5 {
    font-size: 1rem;
  }

  #servicios p {
    font-size: 0.95rem;
  }
}


/* Logo container - SOLUCIÓN IDEAL */
.site-logo {
    max-width: 180px;
    height: 80px;/* Altura fija del contenedor */
    display: flex;
    align-items: center;
}

/* Imagen del logo - Control directo */    
.site-logo img {
    max-height: 130%; /* Usa toda la altura disponible del contenedor */
    max-width: 130%;  /* No se salga del ancho del contenedor */
    width: auto;      /* Mantiene proporciones */
    height: auto;     /* Mantiene proporciones */
    object-fit: contain; /* Ajusta sin distorsionar */
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .site-header {
        min-height: 70px;
    }
    
    .site-logo {
        height: 40px;
    }
}

/* ================= Navigation ================= */
.main-navigation {
    display: flex;
    justify-content: center;
}

.main-menu {
    display: flex;
    margin: 0;
    padding: 0;
}

.main-menu .menu-item {
    position: relative;
    margin: 0 8px;
}

.main-menu .menu-item a {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 0;
    text-decoration: none;
    position: relative;
    display: block;
    transition: color 0.3s;
    font-size: 18px;
}

.main-menu .menu-item a:hover,
.main-menu .menu-item.active a {
    color: var(--primary-color);
}

.main-menu .menu-item.active a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 15px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
}

.dropdown-item {
    padding: 8px 20px;
    font-size: 14px;
    transition: all 0.3s;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* ================= Header Actions ================= */
.header-actions {
    display: flex;
    align-items: center;
}

.btn-search,
.cart-toggle {
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--text-color);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
    position: relative;
}

.btn-search:hover,
.cart-toggle:hover {
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: var(--accent-color);
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler {
    border: none;
    padding: 0;
    font-size: 24px;
}

/* ================= Mobile Menu ================= */


/* ================= Search Overlay ================= */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1001;
    display: none;
    overflow-y: auto;
}

.search-overlay.active {
    display: block;
}

.search-header {
    padding: 20px;
}

.close-search {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.search-body {
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80%;
}

.search-form {
    width: 100%;
    max-width: 600px;
}

.search-form .form-control {
    height: 60px;
    border-radius: 30px 0 0 30px;
    border: none;
    padding: 0 30px;
    font-size: 18px;
}

.search-form .btn {
    height: 60px;
    border-radius: 0 30px 30px 0;
    padding: 0 30px;
    font-size: 20px;
}

/* ================= Page Title Bar ================= */
.page-title-bar {
    background-color: var(--light-color);
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--text-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-color);
}


/* ================= Responsive Styles ================= */
@media (max-width: 991px) {
    .site-header {
        padding: 10px 0;
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: 24px;
    }
}
/* ================= imagenen grande ================= */

.image-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* más contraste */
  z-index: 2;
}

.text-overlay {
  position: relative; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: white;
  text-align: center;
}

.hero-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 90px;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  margin: 0;
  line-height: 1.2;
}

.hero-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 48px;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
}

.btn-welcome {
  padding: 12px 30px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
  position: absolute;
  top: 120%; 
  left: 50%;
  transform: translateX(-50%); 
}

.btn-welcome:hover {
  background-color: #0056b3;
}

/* Responsividad */
@media (max-width: 768px) {
  .image-container {
    height: 60vh; /* altura reducida solo en móvil */
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-text {
    font-size: 20px;
  }

  .text-overlay h1 {
    font-size: 28px;
    padding: 0 20px;
  }
}



/* main index */ 

/* imagenes en el medio */ 
 .legal-panels .row {
            display: flex;
            justify-content: center;
            gap: 16px;
        }

        .legal-panel {
            position: relative;
            max-width: 300px;
            height: 400px;
            overflow: hidden;
            border-radius: 0;
            color: white;
            margin: 2px;
            flex: 1;
        }

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

        .legal-panel::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        /* Línea blanca en el medio */
        .legal-panel::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            width: 100%;
            height: 3px;
            background-color: white;
            z-index: 3;
        }

        .legal-panel-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between; /* Volver a space-between */
            align-items: center;
            padding: 20px;
        }

        .legal-panel-comment {
            font-size: 2.2rem;
            font-weight: bold;
            color: white;
            text-align: center;
            z-index: 4;
            position: relative;
            flex: 1;
            display: flex;
            align-items: center; /* Centrar en su contenedor superior */
            justify-content: center;
        }

        .legal-panel-description {
            flex: 1;
            display: flex;
            align-items: center; /* Centrar en su contenedor inferior */
            justify-content: center;
        }

        .legal-panel-description p {
            font-size: 2.2rem;
            color: white;
            text-align: center;
            margin: 0;
            z-index: 4;
            position: relative;
            font-weight: bold;
        }

        /* Asegurar que el h1 vacío no ocupe espacio */
        .legal-panel-content h1 {
            margin: 0;
            padding: 0;
            font-size: 0;
            line-height: 0;
        }
        @media (max-width: 768px) {
  .legal-panels .row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .legal-panel {
    max-width: 90%;
    width: 100%;
    height: auto; /* Deja que crezca con el contenido */
    margin: 10px 0;
  }

  .panel-image {
    height: 100%;
    object-fit: cover;
  }

  .legal-panel-content {
    padding: 15px;
  }

  .legal-panel-comment {
    font-size: 1.5rem;
    padding: 10px 0;
  }

  .legal-panel-description p {
    font-size: 1.3rem;
    padding: 10px 0;
  }
}

/* peguntas y respuestas */

.faq-section {
    padding: 60px 20px;
    min-height: 100vh;
}

.h1-Preguntasfrecuentes {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #2c3e50;
    position: relative;
    text-transform: uppercase;
}

.h1-Preguntasfrecuentes::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #333, transparent);
}

.faq {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
    text-align: left;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: #7f8c8d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 24px;
    text-align: center;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
    color: #1a252f;
}

.faq-question:hover::after {
    color: #2c3e50;
    transform: rotate(90deg);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    color: #2c3e50;
}

.faq-answer {
    display: none;
    padding: 0 30px 30px;
    color: #5a6c7d;
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(248, 249, 250, 0.5);
    animation: fadeIn 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .h1-Preguntasfrecuentes {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .faq {
        margin: 40px auto 0;
        padding: 0 15px;
    }

    .faq-question {
        padding: 20px 20px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px 25px;
        font-size: 0.95rem;
    }

    .faq-section {
        padding: 40px 15px;
    }
}


/* Animaciones de entrada */
.faq-item {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease-out forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }
.faq-item:nth-child(9) { animation-delay: 0.9s; }
.faq-item:nth-child(10) { animation-delay: 1.0s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Imagen Grande 2 */
.SolucionDeInmuebles-legal {
    margin: 40px 0;
}

.SolucionDeInmuebles-legal img {
    width: 100%;
    height: 300px; 
    object-fit: cover;
    object-position: top;  
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Librate de tu casa formulario */
#formulario {
    margin-top: 28px;
}

.section-promo {
  padding: 50px 20px;
  background-color: #fff;
  font-family: sans-serif;
}

.promo-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  flex-wrap: wrap;
}

.promo-text {
  flex: 1;
  min-width: 300px;
  order: 1; /* Asegura que el texto esté a la izquierda */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centrar verticalmente */
  align-items: center; /* Centrar horizontalmente */
  text-align: center; /* Centrar el texto */
}

.promo-text h2 {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.promo-text hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 20px 0;
  width: 100%; /* Para que la línea se vea bien centrada */
}

.promo-text ul {
  list-style: none;
  padding-left: 0;
  text-align: left; /* Mantener las listas alineadas a la izquierda para mejor lectura */
}

.promo-text ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.promo-text ul li::before {
  content: "●";
  color: #666660;
  position: absolute;
  left: 0;
  top: 0;
}

.promo-btn {
  display: inline-block;
  background: #fff;         /* Fondo blanco */
  color: #000;              /* Texto negro */
  padding: 15px 25px;
  margin-top: 20px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  border: 2px solid #666660; /* Borde gris para que resalte */
  border-radius: 5px;
  transition: all 0.3s ease;
}

.promo-btn:hover {
  background-color: #666660; /* Fondo gris al pasar mouse */
  color: #fff;               /* Texto blanco al pasar mouse */
}


.promo-image {
  flex: 1;
  min-width: 450px;        /* Aumentado de 400px */
  max-width: 700px;        /* Aumentado de 600px */
  height: 500px;           /* Aumentado de 450px */
  order: 2;                
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;      
  overflow: hidden;
}

.promo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;     /* Muestra la imagen completa sin recortar */
  object-position: center; /* Centra la imagen */
  display: block;
}

/* Media query para pantallas pequeñas */
@media (max-width: 768px) {
  .promo-content {
    flex-direction: column;
  }
  
  .promo-text {
    order: 1;
  }
  
  .promo-image {
    order: 2;
    width: 100%;
    max-width: 100%;
    height: 300px;        /* Aumentado para móviles también */
  }
}

/* Contenedor principal con layout de dos columnas */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    margin: 0 auto;
}

/* Lado izquierdo - Presentación */
.presentation-side {
    background: #f8f9fa;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #e9ecef;
}

.presentation-content {
    max-width: 400px;
}

.presentation-side h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #2c3e50;
}

.presentation-side h2 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: #34495e;
}

.presentation-side p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #5a6c7d;
}

/* Lado derecho - Formulario */
.form-side {
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tus estilos originales del formulario */
.form-container {
    width: 100%;
    max-width: 450px;
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h1 {
    color: #333;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: #666660;;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: #666;
    font-size: 1rem;
}

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

.form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fff;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

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

.form-group input:valid,
.form-group textarea:valid {
    border-color: #4caf50;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #f44336;
}

.btn-submit {
    width: 100%;
    padding: 14px;
   background: linear-gradient(135deg, #666660 0%, #7a7a74 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.success-message {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    display: none;
    animation: slideIn 0.5s ease;
}

.error-message {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    margin-top: 10px;
    font-weight: 600;
    display: none;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-group:focus-within::before {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        margin: 20px 10px;
        width: 100%;
    }

    .presentation-side {
        padding: 20px;
        text-align: center;
        border-right: none;
        border-bottom: none;
        background: transparent; /* unificamos fondo */
        align-items: center;
    }

    .presentation-content {
        margin: 0 auto;
    }

    .form-side {
        padding: 20px;
        background: transparent; /* igual fondo que la presentación */
    }

    .form-container {
        max-width: 100%;
    }

    .form-header {
        display: none; /* Oculta título y subtítulo en mobile */
    }

    .form-header h1 {
        font-size: 1.6rem;
    }

    .presentation-side h1 {
        font-size: 1.6rem;
    }

    .presentation-side h2 {
        font-size: 1.1rem;
    }

    .presentation-side p {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .form-group textarea {
        min-height: 80px;
    }

    .btn-submit {
        font-size: 0.95rem;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .presentation-side,
    .form-side {
        padding: 15px;
    }

    .presentation-side h1 {
        font-size: 1.4rem;
    }

    .presentation-side h2 {
        font-size: 1rem;
    }

    .presentation-side p {
        font-size: 0.9rem;
    }
}


/* footer */
.footer {
  background: #666660;
  color: #fff;
  padding: 20px 0 15px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-size: 14px;
  margin-top: 20px;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: -1;
}

.footer .row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.footer-col {
  max-width: 320px;
  text-align: center;
}

.footer-logo {
  max-width: 140px;
  margin-bottom: 10px;
}

.footer h5 {
  color: #fdbb2d;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.footer p {
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-social a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  margin: 0 5px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-social a:hover {
  background: #fdbb2d;
  color: #1a2a6c;
  transform: translateY(-2px);
}

.footer-bottom {
  background: rgba(0,0,0,0.3);
  margin-top: 15px;
  padding: 10px 0;
  text-align: center;
  font-size: 12px;
}

@media (max-width: 768px) {
  .footer .row {
    flex-direction: column;
    gap: 30px;
  }

  .footer-social-container {
    text-align: center;
  }

  .social-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .footer-social a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 22px;
    margin: 0 10px;
  }
}
