/* =========================
   BREAKWATER BREAKS
   ========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:#2b2b2b;
    background:#fff;
}

/* =========================
   NAVIGATION
   ========================= */

header{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    width:95%;
    max-width:1300px;
    z-index:1000;

    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,0.15);
    border-radius:20px;
}

.navbar{

    max-width:1200px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:30px 25px;

}

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
    flex-shrink:0;
}

.logo img{
    height:75px;
    width:auto;
    display:block;
    transition:0.3s ease;
}

.logo img:hover{
    transform:scale(1.05);
}

.nav-links{

    display:flex;
    list-style:none;
    gap:40px;

}

.nav-links a{

    text-decoration:none;
    color:white;
    font-weight:500;
    transition:.3s;

}

.nav-links a:hover{

    color:#7bc4ff;

}

.nav-button{

    text-decoration:none;

    background:white;
    color:#0F3D5E;

    padding:14px 24px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.nav-button:hover{

    transform:translateY(-2px);

}

/* =========================
   HERO
   ========================= */

.hero{

    height:100vh;

background-image:
linear-gradient(rgba(15,61,94,.55), rgba(15,61,94,.55)),
url("../images/hero.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:0 20px;

}

.hero-content{

    max-width:720px;

}

.hero h1{
    color:#fff;
    font-family:'Plus Jakarta Sans',sans-serif;
    font-size:4.4rem;
    font-weight:800;
    line-height:1.08;
    letter-spacing:-2px;
    margin-bottom:25px;
}

.hero h1 span{

    display:block;
    color:#B9E4FF;

}

.hero p{

    color:white;

    font-size:1.2rem;

    line-height:1.8;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

}

.primary-btn{

    background:#0F3D5E;
    color:white;

   padding:14px 28px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.primary-btn:hover{

    background:#19577f;

}

.secondary-btn{

    border:2px solid white;

    color:white;

    padding:14px 28px;

    border-radius:40px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.secondary-btn:hover{

    background:white;
    color:#0F3D5E;

}


/* =========================
   MOBILE MENU
========================= */

.mobile-menu{

    position:fixed;

    top:0;
    right:-100%;

    width:85%;
     width:80%;
    max-width:320px;

  background:rgba(15,61,94,.96);
backdrop-filter:blur(20px);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    gap:24px;

    transition:.4s ease;

    z-index:2000;

    box-shadow:-10px 0 30px rgba(0,0,0,.3);

}

.mobile-menu.active{

    right:0;

}

.mobile-menu a{

    color:white;
    text-decoration:none;

  font-size:1.4rem;
    font-weight:600;

    transition:.3s;

}

.mobile-menu a:hover{

    color:#B9E4FF;

}

.mobile-btn{
    margin-top:25px;
    background:white;
    color:#0F3D5E !important;
    padding:14px 28px;
    font-size:1rem !important;
    border-radius:50px;
}

.close-menu{

    position:absolute;

    top:35px;
    right:35px;

    background:none;
    border:none;

    color:white;

font-size:2rem;
top:20px;
right:20px;

    cursor:pointer;

}

.hamburger{
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:6px;
    cursor:pointer;
    width:40px;
    height:40px;
}

.hamburger span{
    width:30px;
    height:3px;
    background:#fff;
    border-radius:10px;
    transition:0.3s ease;
}

@media(max-width:900px){

.desktop-nav,
.nav-button{

display:none;

}

.hamburger{

display:flex;

}

}

/* =========================
   MOBILE
========================= */

@media (max-width:900px){

header{
    top:10px;
    width:95%;
}

.navbar{
    padding:16px 20px;
}

.logo img{
    height:42px;
}

.desktop-nav,
.nav-button{
    display:none;
}

.hamburger{
    display:flex;
}

.hero{
    padding-top:100px;
}

.hero h1{
    font-size:3rem;
    line-height:1.1;
    letter-spacing:-1px;
}

.hero p{
    font-size:1.1rem;
    line-height:1.7;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
}

.primary-btn,
.secondary-btn{
    width:260px;
    text-align:center;
}

}

/* =========================
   DESKTOP
========================= */

@media (min-width:901px){

.mobile-menu{
    display:none;
}

.hamburger{
    display:none;
}

}

/* =========================
   ABOUT
========================= */

.about{
    padding:120px 20px;
    background:#fff;
}

.about-container{
    max-width:1200px;
    margin:0 auto;

    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:80px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:24px;
    display:block;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.section-tag{
    color:#0F3D5E;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:.85rem;
    margin-bottom:15px;
}

.about h2{
    font-family:'Plus Jakarta Sans',sans-serif;
    font-size:2.8rem;
    color:#0F3D5E;
    margin-bottom:15px;
}

.about h3{
    font-family:'Plus Jakarta Sans',sans-serif;
    font-size:1.6rem;
    margin-bottom:25px;
    color:#333;
}

.about p{
    margin-bottom:22px;
    line-height:1.9;
    font-size:1.05rem;
    color:#555;
}

.signature{
    margin-top:40px;
}

.signature-name{
    font-family:'Great Vibes', cursive;
    font-size:4rem;
    font-weight:400;
    color:#0F3D5E;
    line-height:1;
    display:inline-block;
    margin-bottom:8px;
}

.signature-wave{
    width:240px;
    height:auto;
    display:block;
    margin-top:-10px;
}

@media(max-width:900px){

.about{
    padding:80px 20px;
}

.about-container{
    grid-template-columns:1fr;
    gap:40px;
}

.about h2{
    font-size:2.2rem;
}

.about h3{
    font-size:1.4rem;
}

.signature-name{
    font-size:2.5rem;
}

}

/*======================================
            SERVICES
======================================*/

.services{
    padding:120px 8%;
    background:#FAFBFC;
    overflow:hidden;
}

.services-heading{
    max-width:750px;
    margin:0 auto 80px;
    text-align:center;
}

.section-label{
    display:inline-block;
    color:#7BB8D8;
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:.75rem;
    font-weight:600;
    margin-bottom:15px;
}

.services-heading h2{
    font-family:'Cormorant Garamond', serif;
    font-size:4rem;
    color:#0F3D5E;
    line-height:1.1;
    margin-bottom:20px;
}

.services-heading p{
    color:#6B7280;
    font-size:1.05rem;
    line-height:1.8;
}


/*======================================
            LAYOUT
======================================*/

.services-layout{

    display:grid;

    grid-template-columns:320px minmax(0,1fr);

    gap:30px;

    align-items:start;

}


/*======================================
              CARDS
======================================*/

.card{

    background:#fff;

    border-radius:30px;

    padding:45px;

    border:1px solid rgba(15,61,94,.08);

    box-shadow:0 15px 45px rgba(0,0,0,.05);

    transition:.35s ease;

    height:auto;

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.08);

}


/*======================================
              ICONS
======================================*/

.card img{

    width:85px;

    height:85px;

    object-fit:contain;

    display:block;

    margin-bottom:30px;

    transition:.35s ease;

}

.card:hover img{

    transform:translateY(-5px);

}


/*======================================
              TEXT
======================================*/

.card h3{

    font-family:'Cormorant Garamond', serif;

    font-size:2.1rem;

    color:#0F3D5E;

    line-height:1.2;

    margin-bottom:18px;

}

.card p{

    color:#5B6470;

    line-height:1.9;

    font-size:1rem;

}


/*======================================
         WELCOME BOOK CARD
======================================*/

.welcome{

    display:grid;

    grid-template-columns:minmax(0,1fr) 240px;

    align-items:center;

    gap:40px;

    background:linear-gradient(
        180deg,
        #ffffff,
        #F8FBFD
    );

}

.welcome span{

    display:block;

    color:#7BB8D8;

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:.75rem;

    font-weight:600;

    margin-bottom:18px;

}

.phone{

    display:flex;

    justify-content:center;

    align-items:center;

}

.phone img{

    width:220px;

    max-width:100%;

    height:auto;

    transform:rotate(4deg);

    filter:drop-shadow(0 25px 40px rgba(0,0,0,.18));

    transition:.4s ease;

}

.welcome:hover .phone img{

    transform:rotate(0deg) scale(1.03);

}


/*======================================
            MOBILE
======================================*/

@media (max-width:1000px){

.services{

    padding:90px 6%;

}

.services-heading h2{

    font-size:3rem;

}

.services-layout{

    grid-template-columns:1fr;

}

.welcome{

    grid-template-columns:1fr;

    text-align:center;

}

.phone{

    margin-top:30px;

}

.card{

    padding:35px;

}

}

@media (max-width:600px){

.services-heading h2{

    font-size:2.4rem;

}

.card h3{

    font-size:1.8rem;

}

.card img{

    width:70px;

    height:70px;

}

.phone img{

    width:180px;

}

}

/* ==========================================
   FAQ
========================================== */

.faq{
    padding:120px 8%;
    background:#f8f6f2;
}

.faq-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 70px;
}

.faq-heading .section-label{
    letter-spacing:4px;
    font-size:0.8rem;
    color:#8a8f97;
    margin-bottom:18px;
}

.faq-heading h2{
    font-family:'Cormorant Garamond',serif;
    font-size:3rem;
    color:#0d2744;
    margin-bottom:20px;
}

.faq-heading .section-intro{
    font-size:1.05rem;
    line-height:1.9;
    color:#5c6470;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq details{
    background:white;
    border-radius:18px;
    margin-bottom:18px;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,.05);
    transition:.3s ease;
}

.faq details:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.faq summary{
    list-style:none;
    cursor:pointer;
    padding:28px 35px;
    font-size:1.08rem;
    font-weight:600;
    color:#0d2744;
    position:relative;
}

.faq summary::-webkit-details-marker{
    display:none;
}

.faq summary::after{
    content:"+";
    position:absolute;
    right:30px;
    top:50%;
    transform:translateY(-50%);
    font-size:1.8rem;
    font-weight:300;
    color:#6f8395;
    transition:.3s;
}

.faq details[open] summary::after{
    transform:translateY(-50%) rotate(45deg);
}

.faq details p{
    padding:0 35px 30px;
    color:#606975;
    line-height:1.9;
    font-size:1rem;
}

@media (max-width:768px){

.faq{
    padding:90px 7%;
}

.faq-heading h2{
    font-size:2.3rem;
}

.faq summary{
    padding:22px 24px;
    font-size:1rem;
}

.faq details p{
    padding:0 24px 24px;
}

}

/*=========================================
CONTACT
=========================================*/

.contact{
    padding:120px 8%;
    background:white;
}

.contact-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.contact .section-label{
    letter-spacing:4px;
    font-size:.8rem;
    color:#8a8f97;
    margin-bottom:18px;
}

.contact h2{
    font-family:'Cormorant Garamond',serif;
    font-size:3rem;
    color:#0d2744;
    margin-bottom:25px;
}

.contact-intro{
    color:#5c6470;
    line-height:1.9;
    margin-bottom:20px;
}

.contact-details{
    margin-top:45px;
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.contact-item span{
    font-size:1.6rem;
}

.contact-item strong{
    display:block;
    color:#0d2744;
    margin-bottom:5px;
}

.contact-item p{
    color:#5c6470;
}

.contact-form{
    background:#f8f6f2;
    padding:45px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-form input,
.contact-form textarea{
    padding:16px 18px;
    border:none;
    border-radius:12px;
    background:white;
    font-size:1rem;
    font-family:inherit;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:2px solid #0d2744;
}

.contact-form button{
    background:#0d2744;
    color:white;
    border:none;
    padding:18px;
    border-radius:50px;
    font-size:1rem;
    cursor:pointer;
    transition:.3s;
}

.contact-form button:hover{
    background:#173d63;
    transform:translateY(-2px);
}

/*=========================================
Closing
=========================================*/

.closing{
    padding:100px 20px;
    text-align:center;
    background:#f8f6f2;
}

.closing p{
    color:#6c727b;
    margin-bottom:10px;
    font-size:1rem;
}

.closing h3{
    font-family:'Great Vibes',cursive;
    font-size:4rem;
    color:#0d2744;
    font-weight:400;
}

/*=========================================
Responsive
=========================================*/

@media (max-width:900px){

.contact{
    padding:90px 7%;
}

.contact-container{
    grid-template-columns:1fr;
    gap:60px;
}

.contact h2{
    font-size:2.3rem;
}

.contact-form{
    padding:30px;
}

.closing{
    padding:70px 20px;
}

.closing h3{
    font-size:3rem;
}

}

/*=========================================
FOOTER
=========================================*/

.footer{
    background:#0d2744;
    color:white;
    padding:80px 8% 30px;
}

.footer-container{
    max-width:1300px;
    margin:auto;
    display:grid;
     grid-template-columns:1.8fr 1fr 1.3fr;
    gap:80px;
}

.footer-brand img{
    width:220px;
    margin-bottom:25px;
}

.footer-brand p{
    max-width:420px;
    color:rgba(255,255,255,.75);
    line-height:1.9;
}

.footer h4{
    font-family:'Cormorant Garamond', serif;
    font-size:1.5rem;
    margin-bottom:25px;
    font-weight:500;
}

.footer-links,
.footer-contact{
    display:flex;
    flex-direction:column;
}

.footer-links a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
    margin-bottom:14px;
    transition:.3s;
}

.footer-links a:hover{
    color:white;
    padding-left:6px;
}

.footer-contact p{
    color:rgba(255,255,255,.75);
    margin-bottom:16px;
    line-height:1.7;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    margin-top:60px;
    padding-top:30px;
    text-align:center;
}

.footer-bottom p{
    color:rgba(255,255,255,.6);
    font-size:.9rem;
}

/*=========================================
Responsive
=========================================*/

@media (max-width:900px){

.footer{
    padding:70px 7% 25px;
}

.footer-container{
    grid-template-columns:1fr;
    gap:50px;
    text-align:center;
}

.footer-brand{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.footer-brand p{
    max-width:500px;
}

.footer-links,
.footer-contact{
    align-items:center;
}

.footer-links a:hover{
    padding-left:0;
}

}

.footer-contact a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
    white-space:nowrap;
    transition:.3s;
}

.footer-contact a:hover{
    color:white;
}