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

body{
font-family:Poppins,sans-serif;
background:#f4f7fa;
}

.top-bar{
background:#083847;
color:white;
padding:12px 0;
font-size:14px;
}

.container{
width:90%;
margin:auto;
display:flex;
justify-content:space-between;
flex-wrap:wrap;
}

.container i{
color:#d8a12b;
margin-right:8px;
}

header{
position:sticky;
top:0;
z-index:1000;
background:#fff;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 70px;
box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.logo h1{
color:#083847;
font-size:42px;
}

.logo p{
color:#d8a12b;
letter-spacing:3px;
font-size:13px;
}

nav ul{
display:flex;
list-style:none;
gap:35px;
}

nav a{
text-decoration:none;
color:#083847;
font-weight:600;
}

nav a:hover{
color:#d8a12b;
}

.quote-btn{
background:#d8a12b;
color:white;
padding:15px 35px;
border-radius:40px;
text-decoration:none;
font-weight:600;
}

.hero{
height:750px;
background:
linear-gradient(rgba(8,56,71,.75),rgba(8,56,71,.75)),
url(images/hero.jpg);
background-size:cover;
background-position:center;
display:flex;
align-items:center;
padding-left:90px;
}

.hero-overlay{
max-width:700px;
color:white;
}

.hero-overlay h4{
color:#d8a12b;
font-size:20px;
margin-bottom:15px;
}

.hero-overlay h1{
font-size:72px;
line-height:1.2;
margin-bottom:25px;
}

.hero-overlay p{
font-size:21px;
line-height:1.8;
margin-bottom:40px;
}

.hero-buttons{
display:flex;
gap:20px;
}

.btn-gold{
background:#d8a12b;
padding:18px 38px;
color:white;
text-decoration:none;
border-radius:40px;
font-weight:600;
}

.btn-white{
background:white;
padding:18px 38px;
color:#083847;
text-decoration:none;
border-radius:40px;
font-weight:600;
}
.about{

display:flex;

align-items:center;

gap:70px;

padding:100px 8%;

background:white;

}

.about-left img{

width:100%;

max-width:550px;

border-radius:15px;

box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.about-right h5{

color:#d8a12b;

letter-spacing:2px;

margin-bottom:10px;

}

.about-right h2{

font-size:46px;

color:#083847;

margin-bottom:25px;

}

.about-right p{

font-size:18px;

line-height:1.9;

margin-bottom:20px;

color:#555;

}

.experience{

display:flex;

gap:60px;

margin:35px 0;

}

.experience h1{

color:#d8a12b;

font-size:50px;

}

.experience span{

font-weight:600;

color:#083847;

}
.services{
    padding:100px 8%;
    background:#f7f9fb;
    text-align:center;
}

.services h5{
    color:#d8a12b;
}

.services h2{
    font-size:48px;
    color:#083847;
    margin:20px 0 50px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.service-card h3{
    margin:20px 0 10px;
    color:#083847;
}

.service-card p{
    padding:0 20px;
    line-height:1.8;
    color:#666;
}

.service-card a{
    display:inline-block;
    margin:20px;
    text-decoration:none;
    color:#d8a12b;
    font-weight:bold;
}
/* SERVICES PAGE */

.services-page{
    padding:100px 8%;
    background:#f7f9fb;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-box{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
    text-align:center;
}

.service-box:hover{
    transform:translateY(-10px);
}

.service-box img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.service-box h2{
    color:#083847;
    margin:20px 0 10px;
}

.service-box p{
    color:#666;
    line-height:1.8;
    padding:0 20px 30px;
}

@media(max-width:992px){
    .services-page{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .services-page{
        grid-template-columns:1fr;
    }
}
.why{

padding:100px 8%;

text-align:center;

background:white;

}

.why h5{

color:#d8a12b;

}

.why h2{

font-size:46px;

margin:20px 0 50px;

color:#083847;

}

.why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.why-grid div{

background:#f7f9fb;

padding:35px;

border-radius:15px;

}

.why-grid i{

font-size:50px;

color:#d8a12b;

margin-bottom:20px;

}

.why-grid h3{

margin-bottom:15px;

color:#083847;

}

.why-grid p{

line-height:1.7;

color:#666;

}
.tracking{

padding:120px 8%;

background:url(images/tracking-bg.jpg);

background-size:cover;

background-position:center;

position:relative;

}

.tracking::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:100%;

background:rgba(8,56,71,.80);

}

.tracking-content{

position:relative;

z-index:2;

text-align:center;

color:white;

}

.tracking h5{

color:#d8a12b;

letter-spacing:2px;

margin-bottom:15px;

}

.tracking h2{

font-size:48px;

margin-bottom:20px;

}

.tracking p{

font-size:20px;

margin-bottom:40px;

}

.tracking-form{

display:flex;

justify-content:center;

gap:15px;

flex-wrap:wrap;

}

.tracking-form input{

width:420px;

padding:18px;

border:none;

border-radius:50px;

font-size:18px;

}

.tracking-form button{

padding:18px 35px;

background:#d8a12b;

color:white;

border:none;

border-radius:50px;

font-size:18px;

cursor:pointer;

}
/* statistics*/
.statistics{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    background:#083847;
    padding:80px 8%;
    color:white;
    text-align:center;
    gap:30px;
}

.stat-box{
    padding:20px;
}

.stat-box h1{
    font-size:70px;
    color:#d8a12b;
    margin-bottom:10px;
}

.stat-box p{
    font-size:18px;
    color:white;
}
.testimonial{

padding:100px 8%;

background:#f7f9fb;

text-align:center;

}

.testimonial h5{

color:#d8a12b;

}

.testimonial h2{

font-size:46px;

margin:20px 0 50px;

color:#083847;

}

.testimonial-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.review{

background:white;

padding:35px;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

font-size:18px;

line-height:1.8;

}

.review h3{

margin-top:20px;

color:#083847;

}

.cta{

padding:100px 8%;

background:#d8a12b;

text-align:center;

color:white;

}

.cta h2{

font-size:52px;

margin-bottom:20px;

}

.cta p{

font-size:22px;

margin-bottom:40px;

}
.contact-section{

padding:100px 8%;

background:#ffffff;

}

.contact-box{

text-align:center;

}

.contact-box h5{

color:#d8a12b;

margin-bottom:15px;

}

.contact-box h2{

font-size:48px;

color:#083847;

margin-bottom:20px;

}

.contact-box p{

font-size:20px;

color:#666;

margin-bottom:50px;

}

.contact-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.contact-grid div{

background:#f7f9fb;

padding:35px;

border-radius:15px;

box-shadow:0 6px 15px rgba(0,0,0,.08);

}

.contact-grid i{

font-size:45px;

color:#d8a12b;

margin-bottom:20px;

}

.contact-grid h3{

color:#083847;

margin-bottom:10px;

}

footer{

background:#062d36;

color:white;

padding:80px 8% 20px;

}

.footer-container{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:40px;

}

.footer-container h2,
.footer-container h3{

color:#d8a12b;

margin-bottom:20px;

}

.footer-container p,
.footer-container li{

line-height:30px;

list-style:none;

}

.footer-container a{

color:white;

text-decoration:none;

}

.social-icons a{

display:inline-block;

margin-right:12px;

font-size:22px;

color:white;

transition:.3s;

}

.social-icons a:hover{

color:#d8a12b;

}

.copyright{

margin-top:50px;

padding-top:25px;

border-top:1px solid rgba(255,255,255,.2);

text-align:center;

font-size:15px;

}
@media(max-width:992px){

.about,
.container{
    flex-direction:column;
}

.service-grid,
.why-grid,
.testimonial-grid,
.contact-grid,
.footer-container{
    grid-template-columns:1fr;
}

.experience-grid,
.statistics{
    grid-template-columns:repeat(2,1fr);
}

.hero{
    padding:40px;
    height:auto;
}

.hero-overlay h1{
    font-size:42px;
}

}


@media(max-width:768px){

.experience-grid,
.statistics{
    grid-template-columns:1fr;
}

}


/* ==========================
ABOUT PAGE BANNER
========================== */

.page-banner{
    height:500px;
    background:
    linear-gradient(rgba(8,56,71,.75),rgba(8,56,71,.75)),
    url(images/about-banner.jpg);
    background-size:cover;
    background-position:center;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
}

.page-banner h1{
    font-size:60px;
    margin-bottom:15px;
}

.page-banner p{
    font-size:22px;
    max-width:700px;
}

.page-banner .hero-buttons{
    margin-top:35px;
}

@media(max-width:768px){

    .page-banner{
        height:320px;
        padding:20px;
    }

    .page-banner h1{
        font-size:40px;
    }

    .page-banner p{
        font-size:18px;
    }

}

.about-company{
    display:flex;
    align-items:center;
    gap:70px;
    padding:100px 8%;
    background:white;
}

.about-image img{
    width:100%;
    max-width:550px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.about-text h5{
    color:#d8a12b;
    letter-spacing:2px;
    margin-bottom:10px;
}

.about-text h2{
    font-size:46px;
    color:#083847;
    margin-bottom:25px;
}

.about-text p{
    font-size:18px;
    line-height:1.9;
    margin-bottom:20px;
    color:#555;
}

/* Mission */

.mission{
    padding:100px 8%;
    background:#f7f9fb;
}

.mission-title{
    text-align:center;
    margin-bottom:60px;
}

.mission-title h5{
    color:#d8a12b;
    letter-spacing:2px;
}

.mission-title h2{
    color:#083847;
    font-size:46px;
    margin-top:15px;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.mission-card{
    background:white;
    padding:40px 30px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
    text-align:center;
}
.mission-card:hover{
    transform:translateY(-10px);
}

.mission-card i{
    font-size:55px;
    color:#d8a12b;
    margin-bottom:20px;
}

.mission-card h3{
    color:#083847;
    margin-bottom:15px;
}

.mission-card p{
    color:#666;
    line-height:1.8;
}

/* Experience */

.experience-section{
    padding:80px 8%;
    background:#083847;
    color:#d8a12b;
    text-align:center;
}

.experience-section h2{
    font-size:46px;
    margin-bottom:60px;
}

.experience-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.experience-box{
    padding:20px;
}

.experience-box h1{
    color:#fff;
    font-size:70px;
    margin-bottom:10px;
}

.experience-box p{
    font-size:18px;
    color:white;
}

/* Mobile */

@media(max-width:992px){

    .about-company{
        flex-direction:column;
    }

    .mission-grid{
        grid-template-columns:1fr;
    }

    .experience-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .page-banner h1{
        font-size:42px;
    }

}

.experience-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

@media (max-width:768px){

    .experience-grid{
        grid-template-columns:1fr;
    }

    .about-text h2{
        font-size:36px;
    }

    .page-banner{
        height:300px;
    }

}
.quote-section{

background:#083847;

color:white;

padding:100px 8%;

text-align:center;

}

.quote-section h2{

font-size:48px;

margin-bottom:20px;

}

.quote-section p{

font-size:20px;

margin-bottom:35px;

}

.quote-btn{

display:inline-block;

background:#d8a12b;

padding:18px 40px;

border-radius:40px;

color:white;

text-decoration:none;

font-weight:600;

}
.tracking-page{

padding:100px 8%;

background:#f7f9fb;

}

.tracking-card{

background:white;

padding:50px;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

text-align:center;

}

.tracking-card h2{

color:#083847;

margin-bottom:15px;

}

.tracking-card p{

margin-bottom:30px;

color:#666;

}

.tracking-search{

display:flex;

justify-content:center;

gap:15px;

flex-wrap:wrap;

}

.tracking-search input{

width:420px;

padding:18px;

border:1px solid #ddd;

border-radius:40px;

font-size:18px;

}

.tracking-search button{

padding:18px 40px;

background:#d8a12b;

color:white;

border:none;

border-radius:40px;

cursor:pointer;

font-size:18px;

}

.tracking-result{

margin-top:50px;

background:white;

padding:40px;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.tracking-result table{

width:100%;

border-collapse:collapse;

margin:25px 0;

}

.tracking-result td{

padding:15px;

border-bottom:1px solid #eee;

}

.status{

background:#28a745;

color:white;

padding:8px 18px;

border-radius:20px;

}

.progress{

background:#ddd;

border-radius:30px;

height:30px;

overflow:hidden;

margin-top:20px;

}

.progress-bar{

width:75%;

height:100%;

background:#d8a12b;

color:white;

text-align:center;

line-height:30px;

font-weight:bold;

}

.contact-page{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

padding:100px 8%;

background:#f7f9fb;

}

.contact-info,
.contact-form{

background:white;

padding:40px;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.contact-info h2,
.contact-form h2{

color:#083847;

margin-bottom:20px;

}

.info-box{

display:flex;

gap:20px;

margin-top:30px;

align-items:flex-start;

}

.info-box i{

font-size:30px;

color:#d8a12b;

margin-top:5px;

}

.contact-form input,
.contact-form textarea{

width:100%;

padding:16px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:8px;

font-size:16px;

font-family:Poppins,sans-serif;

}

.contact-form textarea{

resize:vertical;

}

.contact-form button{

background:#d8a12b;

color:white;

border:none;

padding:16px 35px;

border-radius:40px;

font-size:17px;

cursor:pointer;

transition:.3s;

}

.contact-form button:hover{

background:#083847;

}

.social-contact{

background:#083847;

color:white;

padding:70px 8%;

text-align:center;

}

.social-contact h2{

margin-bottom:25px;

}

.social-contact .social-icons a{

display:inline-block;

margin:0 12px;

font-size:26px;

color:white;

transition:.3s;

}

.social-contact .social-icons a:hover{

color:#d8a12b;

}

@media(max-width:992px){

.contact-page{

grid-template-columns:1fr;

}

}


.booking-form{

padding:100px 8%;

background:#f7f9fb;

}

.booking-form h2{

text-align:center;

color:#083847;

margin-bottom:40px;

font-size:42px;

}

.booking-form form{

max-width:900px;

margin:auto;

background:white;

padding:40px;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.booking-form input,
.booking-form select,
.booking-form textarea{

width:100%;

padding:16px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:8px;

font-size:16px;

font-family:Poppins,sans-serif;

}

.booking-form textarea{

resize:vertical;

}

.booking-form button{

width:100%;

background:#d8a12b;

color:white;

padding:18px;

border:none;

border-radius:40px;

font-size:18px;

cursor:pointer;

transition:.3s;

}

.booking-form button:hover{

background:#083847;

}
.quote-form{

padding:100px 8%;

background:#f7f9fb;

}

.quote-form h2{

text-align:center;

font-size:42px;

color:#083847;

margin-bottom:40px;

}

.quote-form form{

max-width:900px;

margin:auto;

background:white;

padding:40px;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.quote-form input,
.quote-form select,
.quote-form textarea{

width:100%;

padding:16px;

margin-bottom:20px;

border:1px solid #ddd;

border-radius:8px;

font-size:16px;

font-family:Poppins,sans-serif;

}

.quote-form textarea{

resize:vertical;

}

.quote-form button{

width:100%;

background:#d8a12b;

color:white;

padding:18px;

border:none;

border-radius:40px;

font-size:18px;

cursor:pointer;

transition:.3s;

}

.quote-form button:hover{

background:#083847;

}

.quote-info{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

padding:80px 8%;

background:white;

text-align:center;

}

.quote-info div{

padding:35px;

border-radius:15px;

background:#f7f9fb;

box-shadow:0 6px 15px rgba(0,0,0,.08);

}

.quote-info i{

font-size:48px;

color:#d8a12b;

margin-bottom:20px;

}

.quote-info h3{

color:#083847;

margin-bottom:15px;

}

@media(max-width:992px){

.quote-info{

grid-template-columns:1fr;

}

}
.logo img{
    width: 130px;
    height: auto;
}
.gold{
    display:inline-block;
    margin-top:20px;
    padding:12px 28px;
    background:#d48b3a;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    transition:0.3s;
}

.gold:hover{
    background:#b9752d;
}
.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
}

/* Mobile */
@media (max-width:768px){

    .menu-toggle{
        display:block;
    }

    #navbar{
        display:none;
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#fff;
        box-shadow:0 5px 15px rgba(0,0,0,.1);
        z-index:999;
    }

    #navbar.active{
        display:block;
    }

    #navbar ul{
        display:flex;
        flex-direction:column;
        text-align:center;
        padding:20px 0;
    }

    #navbar ul li{
        margin:15px 0;
    }

}
/*
header{
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);*/
}
@media (max-width:768px){

    .quote-btn{
        display:none;
    }

}
@media (max-width:768px){

    .top-bar{
        display:none;
    }

    header{
        padding:15px 20px;
        justify-content:space-between;
        position:relative;
    }

    .logo img{
        width:90px;
    }

    .menu-toggle{
        display:block;
        font-size:32px;
        color:#083847;
        cursor:pointer;
    }
#navbar{
    display:none;
    animation:slideDown .3s ease;
}

@keyframes slideDown{

    from{
        opacity:0;
        transform:translateY(-20px);
    }

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

}

    #navbar.active{
        display:block;
    }

    #navbar ul{
        display:flex;
        flex-direction:column;
        padding:20px 0;
        gap:0;
    }

    #navbar ul li{
        text-align:center;
        padding:15px 0;
        border-bottom:1px solid #eee;
    }
}
  
@media (max-width:768px){

    .hero{
        padding:60px 20px;
    }

    .hero-overlay{
        width:100%;
        text-align:center;
    }

    .hero h1{
        font-size:40px;
    }

}
@media (max-width:768px){

    .service-grid{
        grid-template-columns:1fr;
    }

}

@media (max-width:768px){

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

}
/* ===========================
   REGISTRATION PAGE
=========================== */

/*.register-section{
    background:#f4f7fb;
    padding:70px 20px;
}

.register-container{
    max-width:1000px;
    margin:auto;
}

.register-card{
    background:#ffffff;
    border-radius:12px;
    padding:45px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.register-card h1{
    text-align:center;
    color:#06234d;
    font-size:36px;
    margin-bottom:10px;
}

.subtitle{
    text-align:center;
    color:#666;
    line-height:1.8;
    margin-bottom:40px;
}
*/
/* ===========================
   ACCOUNT TYPE
=========================== */

.account-selection{
    margin-bottom:40px;
}

.account-selection h2{
    color:#06234d;
    margin-bottom:20px;
}

.account-box{
    display:block;
    border:2px solid #ddd;
    border-radius:10px;
    padding:20px;
    margin-bottom:20px;
    cursor:pointer;
    transition:.3s;
}

.account-box:hover{
    border-color:#F2B705;
    background:#fffdf3;
}

.account-box input{
    margin-right:10px;
}

.account-content h3{
    color:#06234d;
    margin:0;
}

.account-content p{
    color:#F2B705;
    font-weight:bold;
    margin:8px 0;
}

.account-content ul{
    margin:15px 0 0;
    padding-left:20px;
}

.account-content li{
    margin-bottom:10px;
    color:#444;
}

/* ===========================
   FORM
=========================== */

.row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.input-group{
    flex:1;
    display:flex;
    flex-direction:column;
}

.input-group label{
    margin-bottom:8px;
    color:#06234d;
    font-weight:600;
}

.input-group input,
.input-group select{
    height:55px;
    border:1px solid #ddd;
    border-radius:8px;
    padding:0 15px;
    font-size:15px;
}

.input-group input:focus,
.input-group select:focus{
    outline:none;
    border-color:#F2B705;
}

/* ===========================
   CHECKBOX
=========================== */

.checkbox{
    margin:18px 0;
}

.checkbox label{
    color:#555;
}

.checkbox a{
    color:#06234d;
    text-decoration:none;
    font-weight:bold;
}

/* ===========================
   BUTTON
=========================== */

.register-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:8px;
    background:#F2B705;
    color:#06234d;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.register-btn:hover{
    background:#06234d;
    color:#fff;
}

.login-link{
    text-align:center;
    margin-top:25px;
}

.login-link a{
    color:#06234d;
    font-weight:bold;
    text-decoration:none;
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

.row{
    flex-direction:column;
}

.register-card{
    padding:25px;
}

.register-card h1{
    font-size:28px;
}

}
/* ===========================
   EXTRA PROFESSIONAL STYLING
=========================== */

.account-box{
    position:relative;
    background:#fff;
}

.account-box input[type="radio"]{
    position:absolute;
    top:25px;
    right:25px;
    transform:scale(1.3);
}

.account-box:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.account-content h3{
    font-size:22px;
    margin-bottom:8px;
}

.account-content ul{
    list-style:none;
    padding:0;
    margin-top:18px;
}

.account-content li{
    padding:8px 0;
    border-bottom:1px solid #eee;
}

.account-content li:last-child{
    border-bottom:none;
}

.input-group input,
.input-group select{
    background:#fafafa;
}

.input-group input:hover,
.input-group select:hover{
    border-color:#06234d;
}

.input-group input:focus,
.input-group select:focus{
    background:#fff;
    box-shadow:0 0 8px rgba(6,35,77,.15);
}

.register-btn{
    margin-top:15px;
    letter-spacing:1px;
}

.register-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(0,0,0,.18);
}

.login-link{
    font-size:15px;
}

.login-link a{
    transition:.3s;
}

.login-link a:hover{
    color:#F2B705;
}

/* ===========================
   REGISTRATION PAGE
=========================== */

.register-section{
    background:#f4f7fb;
    padding:70px 20px;
}

.register-container{
    max-width:1000px;
    margin:auto;
}

.register-card{
    background:#ffffff;
    border-radius:12px;
    padding:45px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.register-card h1{
    text-align:center;
    color:#06234d;
    font-size:36px;
    margin-bottom:10px;
}

.subtitle{
    text-align:center;
    color:#666;
    line-height:1.8;
    margin-bottom:40px;
}

/* ===========================
   ACCOUNT TYPE
=========================== */

.account-selection{
    margin-bottom:40px;
}

.account-selection h2{
    color:#06234d;
    margin-bottom:20px;
}

.account-box{
    display:block;
    border:2px solid #ddd;
    border-radius:10px;
    padding:20px;
    margin-bottom:20px;
    cursor:pointer;
    transition:.3s;
}

.account-box:hover{
    border-color:#F2B705;
    background:#fffdf3;
}

.account-box input{
    margin-right:10px;
}

.account-content h3{
    color:#06234d;
    margin:0;
}

.account-content p{
    color:#F2B705;
    font-weight:bold;
    margin:8px 0;
}

.account-content ul{
    margin:15px 0 0;
    padding-left:20px;
}

.account-content li{
    margin-bottom:10px;
    color:#444;
}

/* ===========================
   FORM
=========================== */

.row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.input-group{
    flex:1;
    display:flex;
    flex-direction:column;
}

.input-group label{
    margin-bottom:8px;
    color:#06234d;
    font-weight:600;
}

.input-group input,
.input-group select{
    height:55px;
    border:1px solid #ddd;
    border-radius:8px;
    padding:0 15px;
    font-size:15px;
}

.input-group input:focus,
.input-group select:focus{
    outline:none;
    border-color:#F2B705;
}

/* ===========================
   CHECKBOX
=========================== */

.checkbox{
    margin:18px 0;
}

.checkbox label{
    color:#555;
}

.checkbox a{
    color:#06234d;
    text-decoration:none;
    font-weight:bold;
}

/* ===========================
   BUTTON
=========================== */

.register-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:8px;
    background:#F2B705;
    color:#06234d;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.register-btn:hover{
    background:#06234d;
    color:#fff;
}

.login-link{
    text-align:center;
    margin-top:25px;
}

.login-link a{
    color:#06234d;
    font-weight:bold;
    text-decoration:none;
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

.row{
    flex-direction:column;
}

.register-card{
    padding:25px;
}

.register-card h1{
    font-size:28px;
}

}
/* ===========================
   LOGIN PAGE
=========================== */

.login-section{
    background:#f4f7fb;
    padding:80px 20px;
}

.login-container{
    max-width:500px;
    margin:auto;
}

.login-card{
    background:#fff;
    border-radius:15px;
    padding:45px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.login-card h1{
    text-align:center;
    color:#06234d;
    font-size:36px;
    margin-bottom:10px;
}

.login-subtitle{
    text-align:center;
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.login-options{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:20px 0 30px;
    font-size:15px;
}

.login-options label{
    color:#555;
}

.login-options a{
    color:#06234d;
    text-decoration:none;
    font-weight:600;
}

.login-options a:hover{
    color:#F2B705;
}

.login-btn{
    width:100%;
    height:55px;
    border:none;
    border-radius:8px;
    background:#F2B705;
    color:#06234d;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.login-btn:hover{
    background:#06234d;
    color:#fff;
}

.register-link{
    text-align:center;
    margin-top:25px;
    color:#666;
}

.register-link a{
    color:#06234d;
    text-decoration:none;
    font-weight:bold;
}

.register-link a:hover{
    color:#F2B705;
}

/* Mobile */

@media(max-width:768px){

.login-card{
    padding:30px 20px;
}

.login-card h1{
    font-size:28px;
}

.login-options{
    flex-direction:column;
    gap:15px;
    align-items:flex-start;
}

}
/* ==========================
COOKIE BANNER
========================== */

.cookie-banner{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#083847;
    color:#fff;
    padding:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    z-index:9999;
    box-shadow:0 -5px 15px rgba(0,0,0,.2);
}

.cookie-text{
    flex:1;
    min-width:250px;
}

.cookie-text h3{
    color:#d8a12b;
    margin-bottom:10px;
}

.cookie-text p{
    line-height:1.6;
    font-size:15px;
}

.cookie-buttons{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.cookie-buttons button{
    padding:12px 24px;
    border:none;
    border-radius:30px;
    cursor:pointer;
    font-weight:600;
}

.accept-btn{
    background:#d8a12b;
    color:#fff;
}

.reject-btn{
    background:#fff;
    color:#083847;
}

.accept-btn:hover{
    background:#b9851f;
}

.reject-btn:hover{
    background:#f0f0f0;
}

@media (max-width:768px){

    .cookie-banner{
        flex-direction:column;
        text-align:center;
    }

    .cookie-buttons{
        width:100%;
        flex-direction:column;
    }

    .cookie-buttons button{
        width:100%;
    }

}