html{
    scroll-behavior:smooth;
}

/* ROOT COLORS */
:root {
    --primary-blue: #0b5091;
    --accent-yellow: #f9d955;
    --white: #ffffff;
}

/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: var(--primary-blue);
    color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
header { 
    padding: 30px 0; 
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.logo-text { 
    line-height: 1.1; 
    font-size: 1.2rem; 
}

/* NAVIGATION */
nav ul { 
    display: flex; 
    list-style: none; 
    gap: 35px; 
    align-items: center; 
}

nav a{
    text-decoration:none;
    color:white;
    font-size:15px;
    position:relative;
}

nav a::after{
    content:"";
    position:absolute;
    width:0;
    height:2px;
    background:#f9d955;
    left:0;
    bottom:-5px;
    transition:0.3s;
}

nav a:hover::after{
    width:100%;
}

.login-link { 
    font-weight: 900; 
}

/* HERO SECTION */

.hero{
    padding:40px 0 120px 0;
    position:relative;
    overflow:hidden;
    background-image: url("../image/wave.png");
    background-repeat:no-repeat;
    background-position:left 10px bottom 5px;
    background-size:450px;
}

.hero::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:400px;
    height:200px;
    background: radial-gradient(circle at bottom left, rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size:20px 20px;
    opacity:0.5;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -100px;
}

.hero-text { 
    flex: 1; 
    z-index: 2; 
}

.hero-text h1 {
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
}

.sub-text {
    max-width: 500px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
    margin-top: 50px;
}

/* BUTTON */

.cta-btn{
    background: var(--accent-yellow);
    border:none;
    padding:18px 35px;
    font-weight:900;
    color:var(--primary-blue);
    cursor:pointer;
    border-radius:6px;
    transition:all 0.3s ease;
}

.cta-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 6px 18px rgba(0,0,0,0.25);
}

/* HERO IMAGE + GRAPHICS */

.hero-image-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* BIG YELLOW CIRCLE */

.yellow-big{
    position:absolute;
    width:800px;
    height:700px;
    background:#f9d955;
    border-radius:50%;
    right:-350px;
    bottom:-350px;
    z-index:1;
}

/* SMALL CIRCLE */

.yellow-small{
    position:absolute;
    width:80px;
    height:80px;
    background:#f7df5a;
    border-radius:50%;
    top:90px;
    right:-80px;
}

/* PERSON IMAGE */

.person-img{
    width:500px;
    position:relative;
    z-index:2;
    margin-bottom:-130px;
}

/* FOOTER */

footer { 
    padding: 40px 0; 
    background: transparent;
    margin-top:-100px; 
}

.footer-links { 
    display: flex; 
    gap: 20px; 
}

.footer-links a { 
    color: white; 
    text-decoration: none; 
    font-size: 16px; 
    opacity: 0.8; 
}

/* FORM POPUP OVERLAY */

/* FORM POPUP OVERLAY */

.contact-form,
.login-form{
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}


/* FORM BOX */

.form-box{
    background: white;
    color: #333;
    padding: 35px;
    width: 380px;
    border-radius: 10px;
    position: relative;
}


/* FORM LAYOUT */

.form-box form{
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}


/* CLOSE BUTTON */

.close-btn{
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
}


/* INPUT FIELDS */

.form-box input{
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
}


/* FORM BUTTON */

.form-box button{
    padding: 12px;
    background: #1e5b8d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}


.form-box button:hover{
    background: #0b5091;
}
/* FLOATING ICONS */

.floating-icons{
    position:fixed;
    right:20px;
    bottom:40px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:999;
}

.floating-icons a{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 10px rgba(0,0,0,0.3);
    transition:0.3s;
}

.floating-icons a:hover{
    transform:scale(1.1);
}

.floating-icons img{
    width:28px;
    height:28px;
}

/* WHATSAPP */

.whatsapp{
    background:#25D366;
}

/* CALL */

.call{
    background:#4a6cf7;
}

/* MENU TOGGLE */

.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:28px;
    color:white;
    cursor:pointer;
}

/* MOBILE RESPONSIVE */

@media (max-width: 900px){

.menu-toggle{
    display:block;
}

header{
    position: relative;
    z-index: 1000;
}

nav{
    position:absolute;
    top:90px;
    right:0;
    width:70%;
    display:none;
    z-index:1001;
}

nav.active{
    display:block;
    background:#083c6d;
    padding:20px 0;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

nav ul{
    flex-direction:column;
    gap:20px;
    padding:20px;
    text-align:center;
}

.hero-container{
    flex-direction:column;
    text-align:center;
}

.hero-image-wrapper{
    display:none;
}

.yellow-big{
    display:none;
}

.hero-text h1{
    font-size:30px;
    width:70%;
    text-align:center;
    margin:20px auto;
}

.sub-text{
    margin:auto;
}

.footer-links{
    justify-content:center;
}

}

.success-popup{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    justify-content:center;
    align-items:center;
    z-index:2000;
}

.success-box{
    background:white;
    padding:30px;
    border-radius:8px;
    text-align:center;
    color:#333;
}

.success-box button{
    margin-top:15px;
    padding:10px 20px;
    background:#0b5091;
    color:white;
    border:none;
    border-radius:4px;
    cursor:pointer;
}