:root {
    --primary-blue: #002066;
    --accent-gold: #DFAC2A;
    --light-gold: #DFAC2A;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --text-dark: #1F2937;
}

/* Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.stagger-item.active {
    opacity: 1;
    transform: translateY(0);
}

.bm_img img,
.about img {
    aspect-ratio: 4/3;
    object-fit: cover;

    height: 100%;
}


#about {
    background-color: #F8F7F6;
}

@font-face {
    font-family: Degular-Regular;
    src: url(../fonts/Degular-Regular.ttf);
}

@font-face {
    font-family: AeonikPro;
    src: url(../fonts/AeonikPro-Medium.ttf);
}

body {
    font-family: 'Degular-Regular', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden !important;
}

h1,
h2,
h3,
h4 {
    font-family: 'AeonikPro', sans-serif;
    /* font-weight: 600; */
    color: var(--primary-blue);
}

/* Navigation */
.navbar {
    /* background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px); */
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}


.navbar-brand img {
    width: 80px;
}

.nav-link {
    font-size: 1.3rem;
    color: var(--white);
}

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.why_us .service-icon {
    margin-bottom: 0;
    width: 50px;
    height: 50px;
    background-color:
        color-mix(in srgb, var(--accent-gold), transparent 90%);
    color: var(--primary-blue);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.badge-premium {
    background-color: rgba(201, 162, 77, 0.15);
    color: var(--light-gold);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.btn-gold:hover {
    background-color: var(--light-gold);
    color: var(--primary-blue);
    /* transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3); */
}

.btn-gold:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.why_us {
    background: #EAEAEA;
}

/* Hero Section */
.hero {
    background: linear-gradient(280deg, rgba(0, 0, 0, 0.36) 14.77%, rgba(0, 0, 0, 0.9) 84.05%), url(../img/home-banner.png) center center/cover no-repeat;
    /* background: linear-gradient(270deg, rgba(0, 0, 0, 0) 20%, #000000 80%), url(../img/business-owners.jpg) no-repeat center center/cover; */
    min-height: 100dvh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;

    /* background: linear-gradient(180deg, #301F29 0%, #000000 100%); */
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 1.2rem + 3vw, 3.5rem);

    line-height: clamp(1.15, 1.22, 1.3);


    margin-bottom: 1.5rem;
}

.hero .subheadline {
    font-size: 1.25rem;
    color: var(--light-gray);
    border-left: 4px solid var(--accent-gold);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

/* Sections */
section {
    padding: 100px 0;
}

.yellow,
.bg-gold {
    color: var(--accent-gold);
}

/* Liquid Glass Card */
.liquid-glass-card {
    position: relative;

    border-radius: 28px;
    isolation: isolate;
    box-shadow: 0px 6px 21px -8px rgba(255, 255, 255, 0.2);
    /* cursor: pointer; */
}


/* Tint and inner shadow layer */
.liquid-glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 28px;
    box-shadow: inset 0 0 12px -4px rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0);
    pointer-events: none;
}

/* Backdrop blur and distortion layer */
.liquid-glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 28px;
    backdrop-filter: blur(19px);
    -webkit-backdrop-filter: blur(19px);
    filter: url(#glass-distortion);
    -webkit-filter: url(#glass-distortion);
    isolation: isolate;
    pointer-events: none;
}

/* Content styling */
.card-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    /* display: flex;
  flex-direction: column;
  align-items: center; */
    justify-content: center;
    text-align: center;
    padding: 32px;
    color: white;
}

#contact {
    background: linear-gradient(280deg, rgba(0, 0, 0, 0.36) 14.77%, rgba(0, 0, 0, 0.9) 84.05%), url(../img/contact-bg.jpeg) center center / cover no-repeat;
}

.section-title {
    margin-bottom: 2rem;
    position: relative;
    font-size: 2.5rem;
    text-transform: capitalize;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-gold);
    margin-top: 15px;
}

.bg-navy {
    background-color: var(--primary-blue);
    color: var(--white);
}

.bg-navy h2 {
    color: var(--white);
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* border: 1px solid var(--bs-black); */
    cursor: pointer;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
}

.service-card:hover {
    /* transform: translateY(-10px); */
    border-color: var(--accent-gold);
    background-color: var(--light-gray);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    width: 50px;
    height: 50px;
    background-color:
        color-mix(in srgb, var(--accent-gold), transparent 90%);
    padding: 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

}


/* .service-card:hover .service-icon {
    background-color: var(--primary-blue);
    transition: all 0.3s ease 0.2s;

} */

.services {
    background: radial-gradient(ellipse at center,
            color-mix(in srgb, var(--accent-gold), transparent 96%) 10%, var(--white) 70%);
}

.service-icon svg path {
    fill: var(--accent-gold);
    stroke: var(--accent-gold);
    stroke-width: 2px;
}

/* Stats Section */
.stat-box {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-gold);
    display: block;
}

/* Forms */
/* .contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
} */

.form-control {
    padding: 0.8rem;
    border: 0;
    margin-bottom: 1rem;
    background: transparent;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    color: #fff;

}

.form-control::placeholder {
    color: #fff;
}

.form-select {
    background-color: transparent;
    color: #ffffff;

    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M1.5 5.5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}



.form-control:focus {
    border-color: var(--accent-gold);
    background: transparent;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    color: #fff;
    box-shadow: none;
}

.form-select option {
    background-color: var(--primary-blue);
    color: #ffffff;
}

/* Anti-spam honeypot */
.hpot {
    display: none;
    visibility: hidden;
}

/*  whatsapp btn css*/
.whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: breathe 2s ease-in-out infinite;
}

/*Estilos solo al icono whatsapp*/
.whatsapp-btn i {
    color: #fff;
    font-size: 40px;
    animation: beat 2s ease-in-out infinite;
    text-decoration: none;
}

/*Estilos con animation contorno respirando*/
@keyframes breathe {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

/*Estilos de animacion del icono latiendo*/
@keyframes beat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}


.glass-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.2);
}


.btn-gold::after {
    content: '';
    position: absolute;
    height: 350%;
    width: 200%;
    top: 0;
    left: -100%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    z-index: 20;
    -webkit-animation-name: ripple;
    animation-name: ripple;
    -webkit-animation-duration: 6s;
    animation-duration: 6s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes ripple {
    20% {
        opacity: 0;
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
    }
}

@keyframes ripple {
    20% {
        opacity: 0;
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(2.5);
        transform: scale(2.5);
    }
}

.btn-gold:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}


footer {
    background-color: #050c18;
    color: #94a3b8;
    padding: 60px 0 30px;
}

.social-links a {
    color: var(--white);
    margin-right: 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-gold);
}

@media (max-width: 768px) {

    .hero {
        background-position: 0% 100%;
        min-height: 80dvh;
    }

    .section-title {
        margin-bottom: 2rem;
        position: relative;
        font-size: 2rem;
        text-transform: capitalize;
        text-align: start;
    }

    .no-animations *,
    .reveal,
    .reveal-left,
    .reveal-right,
    .stagger-item {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .hero {
        text-align: center;
        padding-top: 8rem;
    }

    body {
        overflow-x: hidden !important;
    }

    .hero .subheadline {
        border-left: none;
        padding-left: 0;
        margin-left: auto;
        margin-right: auto;
    }

    section {
        padding: 60px 1rem;
    }

    .service-card {
        padding: 2rem;
    }
}