/* ==========================================
   1. GLOBAL STYLES & VARIABLES
========================================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Quicksand',sans-serif;
    color:#102A43;
    background:#FFFFFF;
    line-height:1.6;
    padding-top:100px;
    overflow-x:hidden;
}

h1,
h2,
h3,
.brand-main-heading{
    font-family:'Fredoka',sans-serif;
    color:#102A43;
    font-weight:400;
}

.section-container{
    max-width:1200px;
    margin:auto;
    padding:60px 20px;
}

/* ==========================================
   2. FIXED HEADER & NAVIGATION BAR
========================================== */
.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(8px);
    box-shadow:0 4px 20px rgba(16,42,67,0.05);
    border-bottom:1px solid rgba(16,42,67,0.04);
    z-index:1000;
}

.nav-container{
    max-width:1200px;
    margin:auto;
    padding:10px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo-img{
    height:50px;
    width:auto;
    object-fit:contain;
}

.brand-text-wrapper{
    display:flex;
    flex-direction:column;
}

.brand-name{
    font-family:'Fredoka',sans-serif;
    font-size:20px;
    font-weight:600;
    color:#102A43;
    line-height:1.2;
}

.brand-location{
    font-size:12px;
    color:#486581;
    font-weight:500;
    margin-top:2px;
}

.brand-location i{
    color:#D97745;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:24px;
    list-style:none;
    row-gap:10px;
}

.nav-menu a{
    text-decoration:none;
    color:#0F172A;
    font-size:15px;
    font-weight:700;
    transition:0.2s;
    white-space:nowrap;
}

.nav-menu a:hover{
    color:#D97745;
}

/* ==========================================
   3. HERO SECTION
========================================== */
.hero-section{
    background:#FFFFFF;
    padding:40px 0 80px;
}

.hero-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    display:flex;
    align-items:center;
    gap:40px;
}

.hero-content{
    flex:1;
}

.hero-badge{
    display:inline-block;
    background:#EBF8FF;
    color:#2B6CB0;
    padding:6px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-badge i{
    margin-right:4px;
}

.brand-main-heading{
    font-size:40px;
    line-height:1.4;
    letter-spacing:0.5px;
    margin-bottom:15px;
}

.brand-seo-sub{
    display:block;
    font-size:16px;
    font-weight:700;
    color:#2B6CB0;
    text-transform:uppercase;
    letter-spacing:1.5px;
    margin-bottom:6px;
}

.hero-tagline{
    font-size:24px;
    color:#D97745;
    font-weight:500;
    margin-bottom:20px;
}

.hero-description{
    font-size:16px;
    color:#486581;
    max-width:540px;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:16px;
    margin-bottom:40px;
}

.btn-primary,
.btn-secondary,
.inline-map-btn{
    cursor:pointer;
}

.btn-primary{
    background:#D97745;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:30px;
    font-weight:700;
    box-shadow:0 4px 14px rgba(217,119,69,0.3);
    transition:0.3s;
}

.btn-primary:hover{
    background:#C26132;
    transform:translateY(-2px);
}

.btn-secondary{
    background:#F0F4F8;
    color:#486581;
    text-decoration:none;
    padding:14px 28px;
    border-radius:30px;
    font-weight:700;
    transition:0.3s;
}

.btn-secondary:hover{
    background:#E2E8F0;
}

.highlight-bar{
    background:#fff;
    border:1px solid #E4EBF1;
    border-radius:24px;
    padding:20px 30px;
    display:flex;
    justify-content:center;
    gap:30px;
    box-shadow:0 10px 30px rgba(16,42,67,0.08);
}

.highlight-bar span{
    font-size:14px;
    font-weight:600;
    color:#486581;
    white-space:nowrap;
}

.highlight-bar strong{
    color:#D97745;
    font-family:'Fredoka',sans-serif;
}

/* Hero Image */
.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-image-wrapper{
    position:relative;
    display:inline-block;
    animation:gentleFloat 6s ease-in-out infinite;
}

.hero-image img{
    max-width:100%;
    height:auto;
    display:block;
    border-radius:32px;
    box-shadow:0 20px 40px rgba(0,0,0,0.06);
}

.wall-signboard{
    position:absolute;
    top:16%;
    left:26%;
    background:#fff;
    border:2px solid #E4EBF1;
    border-radius:8px;
    padding:6px 16px;
    box-shadow:0 6px 15px rgba(16,42,67,0.12);
    pointer-events:none;
}

.wall-signboard span{
    font-family:'Fredoka',sans-serif;
    font-size:13px;
    font-weight:600;
    color:#102A43;
    white-space:nowrap;
}

/* ==========================================
   4. ABOUT SECTION
========================================== */
.about-section{
    padding:80px 0;
    background:#FAF6F0;
}

.about-grid{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
}

.about-content{
    flex:0 0 55%;
}

.section-badge{
    display:block;
    font-family:'Fredoka',sans-serif;
    font-size:36px;
    font-weight:700;
    color:#102A43;
    margin-bottom:8px;
}

.about-tagline{
    font-size:20px;
    font-weight:500;
    color:#D97745;
    margin-bottom:24px;
}

.about-text{
    color:#486581;
    font-size:16px;
    margin-bottom:30px;
}

.about-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    background:#fff;
    padding:24px;
    border-radius:20px;
    box-shadow:0 4px 12px rgba(0,0,0,0.02);
}

.feature-item h3{
    font-size:16px;
    margin-bottom:6px;
}

.feature-item p{
    font-size:13px;
    color:#627D98;
}

.about-image-wrapper{
    flex:0 0 40%;
    display:flex;
    justify-content:center;
}

.about-illustration{
    width:100%;
    max-width:500px;
    border-radius:50%;
    border:12px solid #fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.04);
    animation:gentleFloat 6s ease-in-out infinite;
}

/* ==========================================
   5. PROGRAM SECTION
========================================== */
.program-section{
    background:#F0F4F8;
    padding:80px 0;
}

.section-title{
    font-size:36px;
    text-align:center;
    margin-bottom:40px;
}

.program-grid{
    display:flex;
    gap:30px;
}

.program-card{
    flex:1;
    background:#fff;
    padding:24px;
    border-radius:24px;
    box-shadow:0 6px 18px rgba(16,42,67,0.04);
    transition:transform .3s, box-shadow .3s;
}

.program-card:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(16,42,67,0.08);
}

.program-card img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:16px;
    margin-bottom:20px;
}

.program-card h3{
    font-size:20px;
    margin-bottom:10px;
}

.program-card p{
    font-size:14px;
    color:#486581;
}

/* ==========================================
   6. GALLERY
========================================== */
.gallery-section{
    padding:80px 20px;
    background:#fff;
    text-align:center;
}

.gallery-container{
    max-width:1200px;
    margin:auto;
}

.gallery-title{
    font-size:36px;
    margin-bottom:40px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:16px;
}

.gallery-item{
    aspect-ratio:1/1;
    overflow:hidden;
    border-radius:16px;
    box-shadow:0 4px 15px rgba(0,0,0,0.04);
    transition:0.3s;
}

.gallery-item:hover{
    transform:scale(1.03);
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* ==========================================
   7. CONTACT SECTION (EXACT EQUAL WIDTH & HEIGHT)
========================================== */
.contact-section {
    background-color: #F5EFEB; 
    padding: 80px 0;
}

.contact-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

/* Core layout container matching everything */
.contact-layout-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch; 
    max-width: 1100px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

/* flex: 1 on both guarantees exact 50/50 split width */
.split-contact-box, 
.split-form-container {
    flex: 1; 
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border-radius: 28px;
}

.split-contact-box {
    background-color: #102A43; 
    padding: 40px 30px;
    box-shadow: 0 12px 35px rgba(16, 42, 67, 0.15);
    border: 2px solid #D97745; 
    color: #FFFFFF;
}

.split-contact-box h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 28px;
    color: #FFFFFF;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: left;
}

.contact-strip-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.strip-item {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF; 
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    text-align: left;
}

.strip-item a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.strip-item a:hover {
    color: #FF9B6A;
}

.strip-item i {
    color: #FF9B6A; 
    font-size: 20px;
    width: 24px;
    text-align: center;
}

/* DESIGN ADDED TO FILL EMPTY VACANT SPACE UP */
.contact-extra-design {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.design-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 18px;
    color: #FF9B6A;
    margin-bottom: 4px;
}

.design-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #BCCCDC;
    padding-bottom: 4px;
}

.design-row span.days {
    font-weight: 600;
    color: #FFFFFF;
}

.address-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: auto; 
}

.address-text-row {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}
.button-row{
    margin-top:12px;
}

.inline-map-btn {
    background-color: #2B6CB0;
    color: #FFFFFF;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.3);
    transition: all 0.2s ease;
    border: none;
    align-self: flex-start;
}

.inline-map-btn:hover {
    background-color: #1A4976;
    transform: translateY(-2px);
}

.split-form-container {
    background: #FFFFFF;
    padding: 40px 35px;
    box-shadow: 0 12px 35px rgba(16, 42, 67, 0.04);
    border: 1px solid #E4EBF1;
}

.split-form-container h3 {
    font-size: 28px;
    color: #102A43;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: left;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.inquiry-form input, 
.inquiry-form textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #E4EBF1;
    border-radius: 14px;
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    color: #102A43;
    background-color: #FFFFFF;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.inquiry-form input:focus, 
.inquiry-form textarea:focus {
    border-color: #D97745;
}

.inquiry-form input::placeholder, 
.inquiry-form textarea::placeholder {
    color: #A0AEC0;
}

.inquiry-form textarea {
    resize: none;
    margin-bottom: 20px;
    flex-grow: 1; 
}

.btn-submit {
    width: 100%;
    background-color: #D97745;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(217, 119, 69, 0.2);
    transition: background 0.2s ease;
    margin-top: auto;
}

.btn-submit:hover {
    background-color: #C26132;
}

.map-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-brand{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.contact-brand img{
    width:70px;
    height:70px;
    object-fit:contain;
}

.contact-brand-text{
    display:flex;
    flex-direction:column;
}

.contact-brand-text span{
    font-family:'Fredoka',sans-serif;
    font-size:24px;
    font-weight:600;
    color:#FF9B6A;
    line-height:1.2;
}

.contact-brand-text p{
    color:#9FB3C8;
    font-size:13px;
    margin-top:0;
    margin-bottom:0;
}
.contact-divider{
    border:none;
    border-top:1px solid rgba(255,255,255,0.15);
    margin:22px 0;
}

/* ==========================================
   8. FOOTER
========================================== */
footer{
    background:#102A43;
    color:#BCCCDC;
    text-align:center;
    padding:60px 20px;
    border-top:3px solid #D97745;
}

footer img{
    max-width:100px;
    margin-bottom:20px;
}

footer p{
    color:#9FB3C8;
}

footer a{
    color:#BCCCDC;
    text-decoration:none;
    margin:0 10px;
    transition:0.3s;
}

footer a:hover{
    color:#fff;
}

/* ==========================================
   9. RESPONSIVE
========================================== */
@media (max-width:992px){

    .hero-container,
    .about-grid,
    .program-grid{
        flex-direction:column;
        text-align:center;
    }

    .hero-description{
        margin:0 auto 30px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .gallery-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .wall-signboard{
        display:none;
    }

    .contact-layout-wrapper{
        flex-direction:column;
        gap:30px;
    }
}

@media (max-width:768px){

    body{
        padding-top:140px;
    }

    .nav-container{
        flex-direction:column;
        gap:12px;
    }

    .nav-menu{
        flex-wrap:wrap;
        justify-content:center;
        gap:14px;
    }

    .brand-main-heading{
        font-size:32px;
    }

    .highlight-bar{
        flex-direction:column;
        gap:10px;
        align-items:center;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }
}

@media (max-width:600px){

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

    .split-form-container{
        padding:25px 20px;
    }
}

/* ==========================================
   10. ANIMATIONS
========================================== */
@keyframes gentleFloat{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
    100%{
        transform:translateY(0);
    }
}




