@import url("font-awesome.min.css");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================================
   VARIABLES - PALETA CORPORATIVA OSS
   ============================================ */
:root {
    /* Azul corporativo principal */
    --primary-dark: #0F3D73;        /* Azul principal del escudo */
    --primary-medium: #1E5AA6;       /* Azul secundario para fondos suaves */
    --primary-light: #2E73C5;        /* Azul claro de apoyo */
    
    /* Dorado institucional (color de prestigio) */
    --gold-primary: #C9A227;         /* Dorado principal de las hojas de laurel */
    --gold-soft: #E0B84C;            /* Dorado suave para hovers */
    --gold-dark: #A8841E;             /* Dorado oscuro para detalles */
    
    /* Blanco y grises - Limpieza visual */
    --white: #FFFFFF;
    --gray-light: #F4F6F9;            /* Gris muy claro para fondos */
    --gray-medium: #6B7280;            /* Gris para texto secundario */
    
    /* Negro / Gris oscuro para textos */
    --text-dark: #1A1A1A;              /* Negro suave para títulos */
    --text-medium: #2C2C2C;             /* Gris oscuro para textos principales */
    
    /* Sombras - sutiles, institucionales */
    --shadow-sm: 0 5px 20px rgba(15, 61, 115, 0.08);
    --shadow-md: 0 20px 40px -10px rgba(15, 61, 115, 0.15);
    --shadow-lg: 0 30px 60px -10px rgba(15, 61, 115, 0.2);
    
    /* Bordes - ligeramente redondeados, no modernos */
    --border-radius: 8px;              /* Bordes sutiles, no muy redondeados */
    --border-radius-sm: 4px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text-medium);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   TIPOGRAFÍA - FUERTE E INSTITUCIONAL
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* ============================================
   UTILIDADES Y LAYOUT
   ============================================ */
.layout_padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.layout_padding-top {
    padding-top: 100px;
}

.layout_padding-bottom {
    padding-bottom: 100px;
}

.heading_container {
    margin-bottom: 3rem;
}

.heading_container h2 {
    position: relative;
    padding-bottom: 15px;
}

.heading_container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 2px;
}

.heading_container.heading_center {
    text-align: center;
}

.heading_container.heading_center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ============================================
   HEADER - AZUL CORPORATIVO
   ============================================ */
.hero_area {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: var(--primary-dark);
}

/* Estilo para subpáginas */
.sub_page .hero_area {
    min-height: auto;
    height: auto;
}

.sub_page .hero_bg_box {
    height: 400px;
    position: relative;
}

.sub_page .slider_section {
    display: none !important;
}

.sub_page .header_section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.sub_page .header_bottom {
    background: linear-gradient(to bottom, var(--primary-dark), transparent);
}

.hero_bg_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero_bg_box .img-box {
    width: 100%;
    height: 100%;
}

.hero_bg_box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.2;
}

.hero_bg_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, var(--primary-dark) 0%, rgba(15, 61, 115, 0.9) 70%, rgba(30, 90, 166, 0.8) 100%);
    z-index: 1;
}

.header_section {
    position: relative;
    z-index: 10;
    padding: 20px 0;
    background: var(--primary-dark);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header_top {
    background-color: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 12px 0;
}

.contact_link-container {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.contact_link-container a {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.contact_link-container a:hover {
    color: var(--gold-primary);
}

.contact_link-container a i {
    font-size: 1rem;
    color: var(--gold-primary);
    margin-right: 8px;
}

.custom_nav-container {
    padding: 10px 0;
}

.navbar-brand span {
    font-family: "Montserrat", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

.custom_nav-container .navbar-nav {
    margin-left: auto;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 10px 18px !important;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s;
}

.custom_nav-container .navbar-nav .nav-item .nav-link:hover,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
    background-color: transparent;
    color: var(--gold-primary);
}

/* Header scroll effect */
.header_section.header-scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* ============================================
   SLIDER SECTION - AZUL CORPORATIVO CON DETALLES DORADOS
   ============================================ */
.slider_section {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
    padding: 50px 0;
    width: 100%;
}

.slider_section .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.slider_section .row {
    width: 100%;
    margin: 0;
}

.slider_section .col-md-7 {
    flex: 0 0 100%;
    max-width: 900px;
    padding: 0 30px;
}

.slider_section .detail-box {
    color: white;
    max-width: 800px;
    margin: 0;
}

.slider_section .detail-box h1 {
    color: white;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: none;
    margin-bottom: 20px;
}

.slider_section .detail-box h1 span {
    color: var(--gold-primary);
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    margin-top: 10px;
}

.slider_section .detail-box p {
    font-size: 1.2rem;
    margin: 30px 0 40px;
    opacity: 0.9;
    max-width: 700px;
    line-height: 1.8;
}

/* Indicadores del slider */
#carouselExampleIndicators {
    width: 100%;
}

.idicator_container {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.idicator_container .carousel-indicators {
    position: relative;
    bottom: 0;
    justify-content: flex-start;
    margin: 0;
    pointer-events: auto;
    padding-left: 30px;
}

.idicator_container .carousel-indicators li {
    width: 50px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255,255,255,0.4);
    border: none;
    margin: 0 6px;
    transition: all 0.3s;
    cursor: pointer;
}

.idicator_container .carousel-indicators li.active {
    background-color: var(--gold-primary);
    width: 70px;
}

/* ============================================
   BOTONES - AZUL CORPORATIVO CON HOVER DORADO
   ============================================ */
.btn-box {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-box a {
    padding: 14px 35px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius);
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-1 {
    background-color: transparent;
    border: 2px solid white !important;
    color: white;
}

.btn-1:hover {
    background-color: var(--gold-primary);
    border-color: var(--gold-primary) !important;
    color: var(--primary-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 162, 39, 0.3);
}

.btn-2 {
    background-color: var(--gold-primary);
    color: var(--primary-dark) !important;
    border: 2px solid white !important;
}

.btn-2:hover {
    background-color: transparent;
    color: white !important;
    border-color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

/* ============================================
   ABOUT SECTION - FONDO BLANCO, AZUL EN DETALLES
   ============================================ */
.about_section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about_section .img_container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(15, 61, 115, 0.1);
}

.about_section .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about_section .detail-box {
    background-color: var(--white);
    padding: 50px 45px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin-left: -60px;
    position: relative;
    z-index: 2;
    border-top: 4px solid var(--gold-primary);
}

.about_section .detail-box p {
    margin: 25px 0 30px;
    font-size: 1rem;
    color: var(--gray-medium);
}

.about_section .detail-box a {
    display: inline-block;
    padding: 12px 40px;
    background-color: var(--primary-dark);
    color: white;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-dark);
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.about_section .detail-box a:hover {
    background-color: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 162, 39, 0.3);
}

/* ============================================
   SERVICE SECTION - FONDO AZUL CORPORATIVO
   ============================================ */
.service_section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
    position: relative;
    overflow: hidden;
}

.service_section .heading_container h2 {
    color: white;
}

.service_section .heading_container h2::after {
    background: var(--gold-primary);
}

.service_section .box {
    background-color: white;
    padding: 40px 25px 35px;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin-top: 30px;
    transition: all 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-bottom: 4px solid transparent;
}

.service_section .box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--gold-primary);
}

.service_section .box .img-box {
    margin-bottom: 25px;
}

.service_section .box .img-box svg {
    width: 80px;
    height: 80px;
    fill: var(--primary-dark);
    transition: fill 0.3s;
}

.service_section .box:hover .img-box svg {
    fill: var(--gold-primary);
}

.service_section .box .detail-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service_section .box .detail-box h6 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service_section .box .detail-box p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex: 1;
}

.service_section .box .detail-box a {
    display: inline-block;
    padding: 8px 30px;
    background-color: var(--primary-dark);
    color: white;
    font-weight: 600;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    text-transform: uppercase;
    align-self: center;
    transition: all 0.3s;
    border: 2px solid var(--primary-dark);
}

.service_section .box .detail-box a:hover {
    background-color: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--primary-dark);
    transform: scale(1.05);
}

/* ============================================
   SECTORES QUE ATENDEMOS
   ============================================ */
.sectores_section {
    background-color: var(--gray-light);
}

.sectores_section .box {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid rgba(15, 61, 115, 0.1);
}

.sectores_section .box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-primary);
}

.sectores_section .box h6 {
    color: var(--primary-dark);
    font-weight: 600;
}

/* ============================================
   DIFERENCIACIÓN SECTION - FONDO AZUL CORPORATIVO
   ============================================ */
.diferenciacion_section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
    color: white;
}

.diferenciacion_section h2 {
    color: white;
}

.diferenciacion_section ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95);
}

.diferenciacion_section ul li span {
    color: var(--gold-primary);
    margin-right: 10px;
    font-weight: bold;
}

/* ============================================
   CLIENT SECTION
   ============================================ */
.client_section {
    background-color: var(--white);
}

.client_section .box {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(15, 61, 115, 0.1);
    border-top: 4px solid var(--gold-primary);
}

.client_section .box .img-box {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    border: 4px solid var(--primary-dark);
    padding: 5px;
}

.client_section .box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.client_section .box .detail-box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.client_section .box .detail-box p {
    color: var(--gray-medium);
    font-style: italic;
    line-height: 1.8;
}

.carousel_btn-box {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.carousel-control-prev,
.carousel-control-next {
    position: static;
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    color: var(--primary-dark);
    font-size: 1.5rem;
    opacity: 1;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 1px solid rgba(15, 61, 115, 0.1);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--gold-primary);
    color: var(--primary-dark);
    transform: scale(1.1);
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team_section {
    background-color: var(--gray-light);
}

.team_section .box {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s;
    margin-top: 30px;
    position: relative;
    border: 1px solid rgba(15, 61, 115, 0.1);
}

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

.team_section .img-box {
    overflow: hidden;
}

.team_section .img-box img {
    width: 100%;
    transition: transform 0.6s;
}

.team_section .box:hover .img-box img {
    transform: scale(1.1);
}

.team_section .detail-box {
    background: white;
    padding: 25px 20px 20px;
    text-align: center;
    position: relative;
    border-bottom: 4px solid transparent;
    transition: all 0.3s;
}

.team_section .box:hover .detail-box {
    border-bottom-color: var(--gold-primary);
}

.team_section .detail-box h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.team_section .detail-box h6 {
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta_section {
    background-color: var(--gray-light);
}

.cta_section h2 {
    color: var(--primary-dark);
}

.cta_section .btn-box a {
    background-color: var(--primary-dark);
    color: white;
    border: 2px solid var(--primary-dark);
}

.cta_section .btn-box a:hover {
    background-color: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--primary-dark);
}

/* ============================================
   CONTACT SECTION - FONDO AZUL CON OVERLAY
   ============================================ */
.contact_section {
    position: relative;
    color: white;
}

.contact_bg_box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.contact_bg_box .img-box {
    width: 100%;
    height: 100%;
}

.contact_bg_box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.contact_bg_box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg, var(--primary-dark) 0%, rgba(15, 61, 115, 0.9) 70%, rgba(30, 90, 166, 0.8) 100%);
    z-index: 1;
}

.contact_section .container {
    position: relative;
    z-index: 2;
}

.contact_section .heading_container h2 {
    color: white;
}

.contact_section .heading_container h2::after {
    background: var(--gold-primary);
}

.contact_form-container {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

.contact_form-container input {
    width: 100%;
    padding: 15px 20px;
    margin: 10px 0;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    color: var(--text-medium);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.contact_form-container input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.contact_form-container input::placeholder {
    color: var(--gray-medium);
    text-transform: none;
    font-size: 0.95rem;
}

.contact_form-container .message_input {
    min-height: 120px;
    resize: vertical;
}

.contact_form-container .btn-box {
    justify-content: center;
    margin-top: 25px;
}

.contact_form-container button {
    padding: 14px 50px;
    background: var(--gold-primary);
    color: var(--primary-dark);
    font-weight: 700;
    border: none;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid var(--gold-primary);
    font-size: 1rem;
}

.contact_form-container button:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

/* ============================================
   INFO SECTION (FOOTER SUPERIOR) - AZUL CORPORATIVO
   ============================================ */
.info_section {
    background: var(--primary-dark);
    color: white;
    padding: 70px 0 30px;
    border-top: 4px solid var(--gold-primary);
}

.info_section h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.info_section h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 2px;
}

.info_logo .navbar-brand {
    padding: 0;
    margin-bottom: 20px;
}

.info_logo .navbar-brand span {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.info_logo p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.info_links ul {
    list-style: none;
    padding: 0;
}

.info_links ul li {
    margin-bottom: 12px;
}

.info_links ul li a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s, padding-left 0.3s;
}

.info_links ul li a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.info_contact a {
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
    transition: color 0.3s;
}

.info_contact a:hover {
    color: var(--gold-primary);
}

.info_contact a i {
    font-size: 1.2rem;
    margin-right: 12px;
    color: var(--gold-primary);
}

.info_form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info_form input {
    padding: 12px 20px;
    border: none;
    border-radius: var(--border-radius);
    background: rgba(255,255,255,0.15);
    color: white;
    outline: none;
    border: 2px solid transparent;
}

.info_form input:focus {
    border-color: var(--gold-primary);
}

.info_form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.info_form button {
    padding: 12px 25px;
    background: var(--gold-primary);
    color: var(--primary-dark);
    font-weight: 700;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: 2px solid var(--gold-primary);
}

.info_form button:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
}

.social_box {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social_box a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
}

.social_box a:hover {
    background: var(--gold-primary);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================
   FOOTER SECTION (COPYRIGHT)
   ============================================ */
.footer_section {
    background-color: var(--primary-dark);
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer_section p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 0.95rem;
}

.footer_section a {
    color: var(--gold-primary);
    font-weight: 600;
    transition: color 0.3s;
}

.footer_section a:hover {
    color: white;
    text-decoration: underline;
}

/* ============================================
   ANIMACIONES DE SCROLL (REVEAL)
   ============================================ */
.reveal {
    position: relative;
    opacity: 0;
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
}

.reveal.fade-bottom {
    transform: translateY(50px);
}

.reveal.fade-bottom.active {
    transform: translateY(0);
}

.reveal.fade-left {
    transform: translateX(-100px);
}

.reveal.fade-left.active {
    transform: translateX(0);
}

.reveal.fade-right {
    transform: translateX(100px);
}

.reveal.fade-right.active {
    transform: translateX(0);
}

.reveal.fade-scale {
    transform: scale(0.9);
}

.reveal.fade-scale.active {
    transform: scale(1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.2rem; }
    .slider_section .detail-box h1 { font-size: 4rem; }
    .slider_section .detail-box h1 span { font-size: 3rem; }
}

@media (max-width: 991px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    
    .slider_section .detail-box h1 { font-size: 3.5rem; }
    .slider_section .detail-box h1 span { font-size: 2.5rem; }
    .slider_section .col-md-7 {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .about_section .detail-box { 
        margin-left: 0; 
        margin-top: -40px; 
    }
    
    .custom_nav-container .navbar-nav { 
        background: var(--primary-dark); 
        padding: 20px; 
        border-radius: var(--border-radius); 
        margin-top: 20px;
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    .sub_page .hero_bg_box {
        height: 300px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }
    
    .layout_padding { 
        padding-top: 70px; 
        padding-bottom: 70px; 
    }
    
    .contact_link-container { 
        justify-content: center; 
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .contact_form-container { 
        padding: 30px 20px; 
    }
    
    .slider_section .detail-box h1 {
        font-size: 2.8rem;
    }
    .slider_section .detail-box h1 span {
        font-size: 2rem;
    }
    .slider_section .detail-box p {
        font-size: 1rem;
    }
    
    .btn-box a {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    .idicator_container .carousel-indicators {
        padding-left: 15px;
    }
    
    .sub_page .hero_bg_box {
        height: 250px;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .slider_section .detail-box h1 {
        font-size: 2.2rem;
    }
    .slider_section .detail-box h1 span {
        font-size: 1.6rem;
    }
}