/*======================================================
ARJUNA PLANNERS
MAIN.CSS
Global Styles
======================================================*/


/*======================================================
RESET
======================================================*/

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}


/*======================================================
ROOT VARIABLES
======================================================*/

:root{

    --primary:#2C3E50;
    --primary-dark: #D4AC0D;

    --secondary:#6A869B;

    --dark:#16233B;
    --text:#44556B;

    --white:#FFFFFF;

    --light:#F8FAFC;
    --section-bg:#EAECEE;

    --border:#E6EDF5;

    --shadow-sm:0 4px 12px rgba(0,0,0,.06);
    --shadow-md:0 10px 30px rgba(0,0,0,.10);
    --shadow-lg:0 22px 55px rgba(0,0,0,.12);

    --radius-sm:12px;
    --radius:18px;
    --radius-lg:26px;

    --transition:.30s ease;

}



/*======================================================
HTML
======================================================*/

html{

    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;

}



/*======================================================
BODY
======================================================*/

body{

    font-family:'Inter',sans-serif;

    color:var(--dark);

    background:var(--white);

    line-height:1.6;

    overflow-x:hidden;

    min-height:100%;

}



/* Prevent body scroll when mobile menu is open */

body.menu-open{

    overflow:hidden;

}



/*======================================================
GLOBAL ELEMENTS
======================================================*/

img{

    display:block;

    max-width:100%;

    height:auto;

}

picture{

    display:block;

}

svg{

    display:block;

}

a{

    color:inherit;

    text-decoration:none;

}

button{

    font:inherit;

}

input,
textarea,
select{

    font:inherit;

}

ul{

    list-style:none;

}

section{

    width:100%;

    position:relative;

}



/*======================================================
TYPOGRAPHY
/*======================================================

/*------------------------------------------------------
GLOBAL HEADINGS
------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6{

    font-family:'Open Sans',sans-serif;

    color:var(--dark);

    line-height:1.15;

    font-weight:700;

}


/*------------------------------------------------------
BODY TEXT
------------------------------------------------------*/

p{

    font-family:'Inter',sans-serif;

    color:var(--text);

    font-size:16px;

    line-height:1.7;

}


/*------------------------------------------------------
HERO
------------------------------------------------------*/

.hero-title{

    font-size:40px;

    font-weight:700;

    line-height:1.12;

    letter-spacing:-0.03em;

    color:var(--dark);

}

.hero-subtitle{

    font-size:20px;

    line-height:1.8;

    color:var(--text);

}


/*------------------------------------------------------
SECTION HEADER
------------------------------------------------------*/

.section-header{

    max-width:760px;

    margin:0 auto 80px;

    text-align:center;

}

.section-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    border-radius:999px;

    background:#EEF3F8;

    color:var(--secondary);

    font-size:13px;

    font-weight:700;

    letter-spacing:.08em;

    text-transform:uppercase;

    margin-bottom:24px;

}

.section-title{

    font-size:48px;

    font-weight:700;

    line-height:1.15;

    letter-spacing:-0.02em;

    color:var(--dark);

    margin-bottom:24px;

}

.section-title span{

    color:var(--secondary);

}

.section-subtitle{

    font-size:20px;

    line-height:1.8;

    color:var(--text);

}


/*------------------------------------------------------
CARD / FEATURE TITLE
------------------------------------------------------*/

.card-title{

    font-size:22px;

    font-weight:700;

    line-height:1.3;

    color:var(--dark);

    margin-bottom:10px;

}


/*------------------------------------------------------
CARD / FEATURE TEXT
------------------------------------------------------*/

.card-text{

    font-size:16px;

    line-height:1.7;

    color:var(--text);

}


/*------------------------------------------------------
FEATURE NUMBERS
------------------------------------------------------*/

.feature-number{

    font-family:'Open Sans',sans-serif;

    font-size:56px;

    font-weight:300;

    line-height:1;

    color:#D8E0E8;

}


/*------------------------------------------------------
FAQ
------------------------------------------------------*/

.faq-question{

    font-size:21px;

    font-weight:600;

    line-height:1.4;

}

.faq-answer{

    font-size:16px;

    line-height:1.8;

}

/*======================================================
LAYOUT SYSTEM
======================================================*/

/*------------------------------------------------------
SECTION
------------------------------------------------------*/

.section{

    padding:100px 0;

}


/*------------------------------------------------------
SECTION HEADER
------------------------------------------------------*/

.section-header{

    max-width:760px;

    margin:0 auto 80px;

    text-align:center;

}


/*------------------------------------------------------
CONTENT WIDTHS
------------------------------------------------------*/

.content-sm{

    max-width:720px;

    margin:0 auto;

}

.content-md{

    max-width:960px;

    margin:0 auto;

}

.content-lg{

    max-width:1200px;

    margin:0 auto;

}

.content-xl{

    max-width:1400px;

    margin:0 auto;

}


/*------------------------------------------------------
SMALL TEXT
------------------------------------------------------*/

.small-text{

    font-size:14px;

    line-height:1.6;

    color:#6B7280;

}

/*======================================================
RESPONSIVE TYPOGRAPHY
======================================================*/

@media (max-width:1200px){

.hero-title{

    font-size:52px;

}

.section-title{

    font-size:44px;

}

}


@media (max-width:991px){

.hero-title{

    font-size:46px;

}

.section-title{

    font-size:40px;

}

.section-subtitle{

    font-size:18px;

}

.card-title{

    font-size:21px;

}

}


@media (max-width:768px){

.hero-title{

    font-size:36px;

}

.hero-subtitle{

    font-size:18px;

}

.section-title{

    font-size:32px;

}

.section-subtitle{

    font-size:17px;

}

.card-title{

    font-size:20px;

}

.card-text{

    font-size:15px;

}

.feature-number{

    font-size:40px;

}

.faq-question{

    font-size:18px;

}

}



/*======================================================
GLOBAL CONTAINER
======================================================*/

.container{

    width:min(1400px,100%);

    margin-inline:auto;

    padding-inline:24px;

}




/*======================================================
BUTTONS
======================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    border:none;

    border-radius:14px;

    font-family:'Inter',sans-serif;

    font-size:16px;

    font-weight:700;

    line-height:1;

    text-decoration:none;

    cursor:pointer;

    transition:all .30s ease;

    white-space:nowrap;

}

.btn-primary{

    background:var(--primary);

    color:var(--white);

    box-shadow:var(--shadow-md);

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.btn-primary:active{

    transform:translateY(0);

}

.site-footer-btn{

    display:inline-flex;
    justify-content:center;
    align-items:center;

    min-width:340px;

    padding:18px 34px;

    background:#F1C40F;

    color:#34495E;

    font-weight:700;

    font-size:17px;

    border-radius:999px;

    text-decoration:none;

    transition:.3s;

    box-shadow:0 15px 35px rgba(241,196,15,.28);

}

.site-footer-btn:hover{

    background:#D4AC0D;

    transform:translateY(-3px);

}



/*======================================================
HEADER
======================================================*/

.site-header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    height:82px;

    background:#FFFFFF;

    border-bottom:1px solid rgba(0,0,0,.06);

    box-shadow:0 4px 20px rgba(0,0,0,.05);

    z-index:1000;

}

.header-container{

    width:min(1400px,100%);

height:82px;

    margin:0 auto;

    padding:0 28px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:32px;

}

/*======================================================
LOGO
======================================================*/

.logo{

    display:flex;

    align-items:center;

    flex-shrink:0;

}

.logo img{

    width:auto;

    height:55px;

    display:block;

}

/*======================================================
DESKTOP NAVIGATION
======================================================*/

.main-nav{

    flex:1;

    display:flex;

    justify-content:center;

}

.main-nav ul{

    display:flex;

    align-items:center;

    gap:34px;

    list-style:none;

}

.main-nav li{

    display:flex;

}

.main-nav a{

    display:flex;
    
    align-items:center;
    
        padding:0;
    
    height:100%;
    
    position:relative;

    display:flex;

    justify-content:center;

    
    color:#16233B;

    font-size:17px;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

}

.main-nav a:hover{

    color:#6A869B;

}

.main-nav a::after{

    content:"";

    position:absolute;

    bottom:20px;

    left:0;

    width:0;

    height:2px;

    background:#6A869B;

    transition:.3s;

}

.main-nav a:hover::after{

    width:100%;

}

/*======================================================
BUTTON
======================================================*/

.desktop-btn{

    display:flex;

    flex-shrink:0;

}

.mobile-only{

    display:none;

}

/*======================================================
HAMBURGER
======================================================*/

.menu-toggle{

    display:none;

    width:46px;

    height:46px;

    border:none;

    background:none;

    cursor:pointer;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:6px;

}

.menu-toggle span{

    width:28px;

    height:3px;

    background:#16233B;

    border-radius:999px;

    transition:.35s;

}

.menu-toggle.active span:nth-child(1){

    transform:translateY(9px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:translateY(-9px) rotate(-45deg);

}

.mobile-only{
    display:none;
}

/*======================================================
GLOBAL RESPONSIVE LAYOUT
======================================================*/

@media (max-width:1200px){

.section{

    padding:90px 0;

}

}

@media (max-width:991px){

.section{

    padding:80px 0;

}

.section-header{

    margin-bottom:60px;

}

.grid-2{

    grid-template-columns:1fr;

}

.grid-3{

    grid-template-columns:1fr;

}

}

@media (max-width:768px){

.section{

    padding:70px 0;

}

.container{

    padding-inline:20px;

}

.section-header{

    margin-bottom:50px;

}

}

.site-footer{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    position:relative !important;
    z-index:9999 !important;
}

.final-cta{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
}

body{
    overflow-x:hidden;
    overflow-y:auto !important;
}

html,
body{
    height:auto !important;
    min-height:auto !important;
}

body{
    overflow-y:auto !important;
}



