/* ========================= */
/* GLOBAL */
/* ========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#071A2E;
overflow-x:hidden;
}

/* ========================= */
/* CONTACT HERO */
/* ========================= */

.contact-hero{

height:100vh;

position:relative;

display:flex;
justify-content:center;
align-items:center;

text-align:center;

padding:0 20px;

overflow:hidden;

background:
linear-gradient(
rgba(0,0,0,.55),
rgba(0,0,0,.75)
),

url('../img/Pride\ lions.jpeg');

background-size:cover;
background-position:center;
background-attachment:fixed;
}

.hero-content{

max-width:900px;

position:relative;

z-index:5;

opacity:0;

transform:translateY(60px);

transition:1.2s;
}

.hero-badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:14px 28px;

background:
rgba(255,255,255,.08);

backdrop-filter:blur(20px);

border:
1px solid rgba(255,255,255,.1);

border-radius:50px;

color:#D4A537;

font-weight:600;

margin-bottom:30px;
}

.hero-content h1{

font-size:5rem;

font-family:'Montserrat',sans-serif;

font-weight:800;

line-height:1.1;

color:white;

margin-bottom:25px;
}

.hero-content h1 span{

display:block;

color:#D4A537;
}

.hero-content p{

max-width:700px;

margin:auto;

font-size:1.15rem;

line-height:1.9;

color:
rgba(255,255,255,.85);

margin-bottom:45px;
}

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;
}

.primary-btn{

padding:18px 40px;

border-radius:50px;

text-decoration:none;

background:
linear-gradient(
135deg,
#D4A537,
#f5c85d
);

color:white;

font-weight:600;

transition:.4s;
}

.primary-btn:hover{

transform:translateY(-5px);
}

.secondary-btn{

padding:18px 40px;

border-radius:50px;

text-decoration:none;

border:2px solid white;

color:white;

font-weight:600;

transition:.4s;
}

.secondary-btn:hover{

background:white;

color:#071A2E;
}

/* ========================= */
/* SCROLL INDICATOR */
/* ========================= */

.scroll-indicator{

position:absolute;

bottom:40px;

left:50%;

transform:translateX(-50%);
}

.scroll-indicator span{

display:block;

width:30px;

height:50px;

border:2px solid white;

border-radius:50px;

position:relative;
}

.scroll-indicator span::before{

content:'';

position:absolute;

width:6px;

height:6px;

background:white;

border-radius:50%;

left:50%;

transform:translateX(-50%);

top:10px;

animation:scroll 2s infinite;
}

@keyframes scroll{

0%{
opacity:1;
top:10px;
}

100%{
opacity:0;
top:30px;
}

}

/* ========================= */
/* GLOW EFFECTS */
/* ========================= */

.hero-glow{

position:absolute;

border-radius:50%;

filter:blur(140px);

opacity:.15;
}

.glow-one{

width:350px;

height:350px;

background:#D4A537;

left:-100px;

top:100px;
}

.glow-two{

width:400px;

height:400px;

background:#00A9A5;

right:-100px;

bottom:50px;
}

.show-hero{

opacity:1;

transform:translateY(0);
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:768px){

.hero-content h1{

font-size:3rem;
}

.hero-content p{

font-size:1rem;
}

}

/* ========================= */
/* PREMIUM NAVBAR */
/* ========================= */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;
transition:.4s ease;
padding:20px 0;
}

.navbar.scrolled{
background:rgba(255,255,255,0.08);
backdrop-filter:blur(20px);
-webkit-backdrop-filter:blur(20px);
border-bottom:1px solid rgba(255,255,255,0.1);
padding:12px 0;
}

.nav-container{
width:90%;
max-width:1400px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo img{
height:65px;
transition:.3s;
}

.navbar.scrolled .logo img{
height:55px;
}

.nav-links{
display:flex;
gap:35px;
list-style:none;
}

.nav-links a{
text-decoration:none;
color:white;
font-size:15px;
font-weight:500;
position:relative;
transition:.3s;
}

.nav-links a::after{
content:'';
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:#D4A537;
transition:.3s;
}

.nav-links a:hover::after{
width:100%;
}

.nav-links a:hover{
color:#D4A537;
}

.nav-btn{
background:linear-gradient(
135deg,
#D4A537,
#f5c85d
);
padding:13px 30px;
border-radius:50px;
text-decoration:none;
font-weight:600;
color:#fff;
transition:.4s;
}

.nav-btn:hover{
transform:translateY(-4px);
box-shadow:
0 10px 30px rgba(212,165,55,.4);
}

.menu-toggle{
display:none;
font-size:28px;
color:white;
cursor:pointer;
}

/* MOBILE */

@media(max-width:991px){

.nav-links{
position:fixed;
top:0;
right:-100%;
width:280px;
height:100vh;
background:rgba(7,26,46,0.95);
backdrop-filter:blur(20px);
flex-direction:column;
justify-content:center;
align-items:center;
gap:30px;
transition:.5s;
}

.nav-links.active{
right:0;
}

.nav-btn{
display:none;
}

.menu-toggle{
display:block;
}

.logo img{
height:55px;
}

}

/* ========================= */
/* CONTACT INFO SECTION */
/* ========================= */

.contact-info{

    padding:120px 8%;

    background:
    linear-gradient(
    180deg,
    #071A2E,
    #0A2238
    );
}

.section-title{

    text-align:center;

    max-width:800px;

    margin:0 auto 70px;
}

.section-title span{

    color:#D4A537;

    letter-spacing:3px;

    font-size:.9rem;

    font-weight:600;
}

.section-title h2{

    font-size:3.5rem;

    color:white;

    margin:20px 0;
}

.section-title h2 span{

    display:block;

    color:#D4A537;
}

.section-title p{

    color:rgba(255,255,255,.75);

    line-height:1.9;
}

.contact-cards{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.contact-card{

    background:
    rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:45px 30px;

    text-align:center;

    transition:.4s;
}

.contact-card:hover{

    transform:
    translateY(-10px);

    border-color:#D4A537;

    box-shadow:
    0 20px 40px rgba(0,0,0,.25);
}

.contact-icon{

    width:80px;
    height:80px;

    margin:0 auto 25px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #D4A537,
    #f5c85d
    );
}

.contact-icon i{

    color:white;

    font-size:30px;
}

.contact-card h3{

    color:white;

    margin-bottom:15px;

    font-size:1.4rem;
}

.contact-card p,
.contact-card a{

    color:
    rgba(255,255,255,.8);

    text-decoration:none;

    line-height:1.8;
}

.contact-card a:hover{

    color:#D4A537;
}

/* ========================= */
/* CONTACT FORM SECTION */
/* ========================= */

.contact-form-section{

padding:120px 8%;

background:
linear-gradient(
180deg,
#0A2238,
#071A2E
);
}

.form-container{

display:grid;

grid-template-columns:
1fr 1fr;

gap:60px;

align-items:center;
}

.form-info span{

color:#D4A537;

font-weight:600;

letter-spacing:3px;
}

.form-info h2{

font-size:3.5rem;

color:white;

margin:20px 0;
}

.form-info h2 span{

display:block;

color:#D4A537;
}

.form-info p{

color:
rgba(255,255,255,.75);

line-height:1.9;

margin-bottom:35px;
}

.feature-item{

display:flex;

align-items:center;

gap:15px;

margin-bottom:18px;

color:white;
}

.feature-item i{

color:#D4A537;
}

.contact-form-wrapper{

background:
rgba(255,255,255,.06);

backdrop-filter:blur(20px);

border:
1px solid rgba(255,255,255,.08);

border-radius:35px;

padding:40px;
}

.input-group{

position:relative;

margin-bottom:25px;
}

.input-group input,
.input-group textarea,
.input-group select{

width:100%;

padding:18px;

background:
rgba(255,255,255,.05);

border:
1px solid rgba(255,255,255,.08);

border-radius:15px;

outline:none;

color:white;

font-size:1rem;
}

.input-group textarea{

height:150px;

resize:none;
}

.input-group label{

position:absolute;

left:18px;

top:18px;

color:
rgba(255,255,255,.6);

pointer-events:none;

transition:.3s;
}

.input-group input:focus~label,
.input-group input:valid~label,
.input-group textarea:focus~label,
.input-group textarea:valid~label{

top:-12px;

left:15px;

padding:0 8px;

background:#071A2E;

color:#D4A537;

font-size:.8rem;
}

.submit-btn{

width:100%;

padding:18px;

border:none;

cursor:pointer;

border-radius:50px;

background:
linear-gradient(
135deg,
#D4A537,
#f5c85d
);

color:white;

font-size:1rem;

font-weight:600;

transition:.4s;
}

.submit-btn:hover{

transform:translateY(-5px);
}

.success-message{

display:none;

margin-top:25px;

text-align:center;

color:#D4A537;

font-weight:600;
}

@media(max-width:992px){

.form-container{

grid-template-columns:1fr;
}

.form-info{

text-align:center;
}

.feature-item{

justify-content:center;
}

}

@media(max-width:768px){

.form-info h2{

font-size:2.5rem;
}

.contact-form-wrapper{

padding:25px;
}

}

/* ========================= */
/* WHATSAPP CTA SECTION */
/* ========================= */

.whatsapp-section{

    position:relative;

    padding:120px 8%;

    background:
    linear-gradient(
    180deg,
    #071A2E,
    #0A2238
    );

    overflow:hidden;
}

.whatsapp-container{

    max-width:1000px;

    margin:auto;
}

.whatsapp-content{

    text-align:center;

    padding:70px 50px;

    border-radius:40px;

    background:
    rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.08);

    position:relative;

    z-index:2;
}

.whatsapp-icon{

    width:120px;

    height:120px;

    margin:0 auto 30px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
    135deg,
    #25D366,
    #128C7E
    );

    animation:pulse 2s infinite;
}

.whatsapp-icon i{

    color:white;

    font-size:55px;
}

.whatsapp-content span{

    color:#D4A537;

    letter-spacing:3px;

    font-weight:600;
}

.whatsapp-content h2{

    color:white;

    font-size:3.2rem;

    margin:20px 0;
}

.whatsapp-content p{

    max-width:700px;

    margin:auto;

    color:
    rgba(255,255,255,.8);

    line-height:1.9;

    margin-bottom:40px;
}

.whatsapp-features{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

    margin-bottom:40px;
}

.whatsapp-feature{

    color:white;

    display:flex;

    align-items:center;

    gap:10px;
}

.whatsapp-feature i{

    color:#25D366;
}

.whatsapp-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

    padding:18px 40px;

    border-radius:60px;

    background:
    linear-gradient(
    135deg,
    #25D366,
    #128C7E
    );

    color:white;

    font-weight:600;

    transition:.4s;
}

.whatsapp-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 15px 40px rgba(37,211,102,.35);
}

/* ========================= */
/* ANIMATIONS */
/* ========================= */

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.08);

}

100%{

transform:scale(1);

}

}

/* ========================= */
/* GLOW EFFECTS */
/* ========================= */

.whatsapp-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(140px);

    opacity:.15;
}

.glow-left{

    width:350px;

    height:350px;

    background:#25D366;

    left:-120px;

    top:100px;
}

.glow-right{

    width:350px;

    height:350px;

    background:#D4A537;

    right:-120px;

    bottom:50px;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer{

background:#030d17;

padding-top:100px;

color:white;
}

.footer-container{

width:90%;

max-width:1400px;

margin:auto;

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:50px;

padding-bottom:60px;
}

.footer-logo{

width:140px;

margin-bottom:20px;
}

.footer-column p{

line-height:1.9;

color:
rgba(255,255,255,.75);
}

.footer-column h3{

margin-bottom:25px;

color:#D4A537;
}

.footer-column ul{

list-style:none;
}

.footer-column ul li{

margin-bottom:12px;
}

.footer-column ul li a{

text-decoration:none;

color:
rgba(255,255,255,.75);

transition:.3s;
}

.footer-column ul li a:hover{

color:#D4A537;

padding-left:5px;
}

.footer-column i{

color:#D4A537;

margin-right:10px;
}

/* MAP */

.footer-map{

width:90%;

max-width:1400px;

margin:0 auto 50px;
}

.footer-map iframe{

width:100%;

height:300px;

border:none;

border-radius:25px;
}

/* SOCIALS */

.footer-social{

display:flex;

justify-content:center;

gap:20px;

margin-bottom:40px;
}

.footer-social a{

width:55px;
height:55px;

display:flex;

justify-content:center;
align-items:center;

border-radius:50%;

background:
rgba(255,255,255,.05);

color:white;

font-size:20px;

transition:.4s;
}

.footer-social a:hover{

background:#D4A537;

transform:translateY(-5px);
}

/* COPYRIGHT */

.footer-bottom{

text-align:center;

padding:30px;

border-top:
1px solid rgba(255,255,255,.08);

color:
rgba(255,255,255,.6);
}

/* BACK TO TOP */

.back-to-top{

position:fixed;

bottom:110px;
right:25px;

width:55px;
height:55px;

display:flex;

justify-content:center;
align-items:center;

border-radius:50%;

background:#D4A537;

color:white;

text-decoration:none;

font-size:18px;

z-index:999;

opacity:0;

visibility:hidden;

transition:.4s;
}

.back-to-top.show{

opacity:1;

visibility:visible;
}

.back-to-top:hover{

transform:translateY(-5px);
}

/* ===================================== */
/* GLOBAL RESPONSIVE SYSTEM */
/* ===================================== */

img{
    max-width:100%;
    height:auto;
    display:block;
}

.container,
.hero-content,
.form-container,
.contact-cards,
.whatsapp-container{
    width:100%;
}

/* ========================= */
/* LARGE TABLETS */
/* ========================= */

@media screen and (max-width: 992px){

    .form-container{
        grid-template-columns:1fr;
        gap:50px;
    }

    .contact-cards{
        grid-template-columns:
        repeat(2,1fr);
    }

    .hero-content h1{
        font-size:4rem;
    }

    .section-title h2{
        font-size:2.8rem;
    }

    .whatsapp-content h2{
        font-size:2.5rem;
    }
}

/* ========================= */
/* TABLETS */
/* ========================= */

@media screen and (max-width: 768px){

    section{
        padding:80px 5%;
    }

    .hero-content h1{
        font-size:3rem;
    }

    .hero-content p{
        font-size:1rem;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        max-width:320px;
        text-align:center;
    }

    .contact-cards{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:2.3rem;
    }

    .form-info h2{
        font-size:2.3rem;
    }

    .whatsapp-content{
        padding:50px 25px;
    }

    .whatsapp-content h2{
        font-size:2rem;
    }

    .whatsapp-features{
        flex-direction:column;
        gap:15px;
    }
}

/* ========================= */
/* MOBILE PHONES */
/* ========================= */

@media screen and (max-width: 576px){

    .hero-content h1{
        font-size:2.3rem;
        line-height:1.2;
    }

    .hero-badge{
        padding:12px 20px;
        font-size:.85rem;
    }

    .section-title h2{
        font-size:1.9rem;
    }

    .form-info h2{
        font-size:1.9rem;
    }

    .contact-form-wrapper{
        padding:20px;
    }

    .input-group input,
    .input-group textarea,
    .input-group select{
        padding:15px;
    }

    .whatsapp-icon{
        width:90px;
        height:90px;
    }

    .whatsapp-icon i{
        font-size:40px;
    }

    .whatsapp-content h2{
        font-size:1.8rem;
    }

    .whatsapp-btn{
        width:100%;
        justify-content:center;
    }
}