
/* =========================================
   ROOT
========================================= */

:root{
    --brown:#884b2e;
    --dark-brown:#542d1d;
    --light:#f8eee8;
    --cream:#fffaf6;
    --gold:#b98a55;
    --text:#49352c;
    --muted:#80695d;
    --white:#ffffff;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:var(--cream);
    color:var(--text);
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

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


/* =========================================
   TOP MARQUEE
========================================= */

.top-marquee{
    height:38px;
    background:var(--dark-brown);
    color:#f8e4d5;
    display:flex;
    align-items:center;
    overflow:hidden;
    font-size:13px;
    font-weight:600;
}

.marquee-track{
    display:inline-block;
    white-space:nowrap;
    animation:marquee 28s linear infinite;
}

.marquee-track span{
    margin-right:100px;
}

@keyframes marquee{

    0%{
        transform:translateX(100%);
    }

    100%{
        transform:translateX(-100%);
    }

}


/* =========================================
   HEADER
========================================= */

header{
    position:sticky;
    top:0;
    z-index:1000;

    background:rgba(255,250,246,.97);

    box-shadow:0 4px 20px rgba(84,45,29,.08);

    backdrop-filter:blur(10px);
}

.header-inner{
    min-height:82px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:25px;
}

.school-brand{
    display:flex;
    align-items:center;
    gap:13px;
}

.school-logo{
    width:68px;
    height:70px;
    overflow:hidden;
    flex-shrink:0;
}

.school-logo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.brand-text h1{
    font-family:Georgia,serif;
    color:var(--dark-brown);

    font-size:22px;
    line-height:1.1;
}

.brand-text p{
    font-size:10px;
    color:var(--muted);
    margin-top:4px;
}

nav{
    display:flex;
    align-items:center;
    gap:23px;
}

nav a{
    color:var(--text);

    font-size:13px;
    font-weight:600;

    transition:.3s;
}

nav a:hover{
    color:var(--brown);
}

.nav-btn{
    background:var(--brown);
    color:white !important;

    padding:11px 19px;
    border-radius:25px;
}

.menu-btn{
    display:none;

    width:42px;
    height:42px;

    border:0;
    border-radius:9px;

    background:var(--brown);
    color:white;

    font-size:20px;

    cursor:pointer;
}


/* =========================================
   HERO SLIDER
========================================= */

.hero-slider{
    width:100%;
    overflow:hidden;
    background:var(--light);
}

.hero-slides{
    height:555px;
    position:relative;
}

.hero-slide{
    position:absolute;
    inset:0;

    opacity:0;
    visibility:hidden;

    transition:opacity .8s ease;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
}

.hero-slide img{
    width:100%;
    height:100%;

    object-fit:cover;
}

.slider-arrow{
    position:absolute;

    top:50%;
    transform:translateY(-50%);

    z-index:5;

    width:43px;
    height:43px;

    border:0;
    border-radius:50%;

    background:rgba(84,45,29,.75);

    color:white;

    font-size:25px;

    cursor:pointer;
}

.slider-prev{
    left:20px;
}

.slider-next{
    right:20px;
}

.slider-dots{
    position:absolute;

    bottom:14px;
    left:50%;

    transform:translateX(-50%);

    z-index:10;

    display:flex;
    gap:8px;
}

.slider-dot{
    width:9px;
    height:9px;

    background:white;
    opacity:.7;

    border-radius:50%;

    cursor:pointer;
}

.slider-dot.active{
    background:var(--gold);

    opacity:1;

    transform:scale(1.3);
}


/* =========================================
   WELCOME
========================================= */

.welcome{
    background:white;

    padding:30px 20px;

    text-align:center;

    border-bottom:1px solid #eadbd1;
}

.welcome h2{
    font-family:Georgia,serif;

    color:var(--dark-brown);

    font-size:30px;
}

.welcome p{
    color:var(--muted);

    font-size:14px;

    margin-top:4px;
}


/* =========================================
   FEATURES
========================================= */

.features{
    padding:65px 0;

    background:var(--cream);
}

.feature-grid{
    display:grid;

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

    gap:18px;
}

.feature-card{
    background:white;

    border:1px solid #eadbd1;

    border-radius:18px;

    padding:28px 18px;

    text-align:center;

    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-6px);

    box-shadow:
    0 15px 30px rgba(84,45,29,.10);
}

.feature-icon{
    width:52px;
    height:52px;

    border-radius:50%;

    background:var(--light);
    color:var(--brown);

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 13px;

    font-size:21px;
}

.feature-card h3{
    font-family:Georgia,serif;

    color:var(--dark-brown);

    font-size:18px;
}

.feature-card p{
    color:var(--muted);

    font-size:12px;

    margin-top:5px;
}


/* =========================================
   ABOUT
========================================= */

.about{
    padding:80px 0;

    background:white;
}

.about-grid{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:55px;

    align-items:center;
}

.about-image{
    height:454px;

    border-radius:24px;

    overflow:hidden;

    box-shadow:
    0 15px 35px rgba(84,45,29,.12);
}

.about-image img{
    width:100%;
    height:100%;

    object-fit:cover;
}

.section-tag{
    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:12px;

    font-weight:bold;

    margin-bottom:8px;
}

.about-content h2{
    font-family:Georgia,serif;

    color:var(--dark-brown);

    font-size:40px;

    line-height:1.15;

    margin-bottom:18px;
}

.about-content p{
    color:var(--muted);

    font-size:14px;

    margin-bottom:14px;
}

.about-points{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:10px;

    margin-top:22px;
}

.about-points div{
    background:var(--light);

    color:var(--brown);

    padding:11px 13px;

    border-radius:9px;

    font-size:13px;

    font-weight:bold;
}


/* =========================================
   LEADERSHIP
========================================= */

.leaders{
    padding:80px 0;

    background:var(--light);
}

.heading{
    text-align:center;

    margin-bottom:42px;
}

.heading h2{
    font-family:Georgia,serif;

    color:var(--dark-brown);

    font-size:38px;
}

.heading p{
    max-width:650px;

    margin:7px auto;

    color:var(--muted);

    font-size:14px;
}

.leader-grid{
    display:grid;

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

    gap:24px;
}

.leader-card{
    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:
    0 10px 28px rgba(84,45,29,.09);
}

.leader-photo{
    height:389px;
    background:#ead9ce;
}

.leader-photo img{
    width:100%;
    height:100%;

    object-fit:cover;
}

.leader-info{
    padding:20px;

    text-align:center;
}

.leader-info h3{
    font-family:Georgia,serif;

    color:var(--dark-brown);

    font-size:21px;
}

.leader-info span{
    color:var(--gold);

    font-size:11px;

    font-weight:bold;

    display:block;

    margin-top:4px;
}


/* =========================================
   STUDENT GALLERY
========================================= */

.student-gallery{
    padding:80px 0;

    background:white;

    overflow:hidden;
}

.gallery-window{
    width:100%;

    overflow:hidden;
}

.gallery-track{
    display:flex;

    gap:18px;

    width:max-content;

    animation:
    galleryMove 30s linear infinite;
}

.gallery-item{
    width:225px;
    height:175px;

    flex-shrink:0;

    border-radius:16px;

    overflow:hidden;

    border:5px solid var(--light);

    box-shadow:
    0 8px 20px rgba(84,45,29,.10);
}

.gallery-item img{
    width:100%;
    height:100%;

    object-fit:cover;
}

.gallery-window:hover .gallery-track{
    animation-play-state:paused;
}

@keyframes galleryMove{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}


/* =========================================
   WHAT MAKES US SPECIAL
========================================= */

.special-section{
    padding:95px 0;

    background:#fffaf6;
}

.special-heading{
    max-width:850px;

    margin:0 auto 55px;

    text-align:center;
}

.special-heading span{
    color:var(--gold);

    font-size:12px;

    font-weight:bold;

    letter-spacing:3px;
}

.special-heading h2{
    margin-top:12px;

    color:var(--dark-brown);

    font-family:Georgia,serif;

    font-size:46px;

    line-height:1.18;
}

.special-heading h2 em{
    color:var(--brown);

    font-style:normal;
}

.special-heading p{
    max-width:650px;

    margin:16px auto 0;

    color:var(--muted);

    font-size:14px;

    line-height:1.8;
}


/* LEFT */

.special-content{
    display:grid;

    grid-template-columns:.85fr 1.15fr;

    gap:35px;

    align-items:stretch;
}

.special-quote{
    position:relative;

    padding:48px 42px;

    border-radius:25px;

    background:var(--brown);

    color:white;

    overflow:hidden;

    min-height:390px;

    display:flex;

    flex-direction:column;

    justify-content:center;
}

.quote-mark{
    position:absolute;

    top:-20px;
    right:25px;

    font-family:Georgia,serif;

    font-size:150px;

    line-height:1;

    color:rgba(255,255,255,.08);
}

.special-quote h3{
    position:relative;

    font-family:Georgia,serif;

    font-size:34px;

    line-height:1.25;

    margin-bottom:18px;
}

.special-quote p{
    position:relative;

    color:#f8e5d9;

    font-size:14px;

    line-height:1.8;

    max-width:430px;
}

.school-line{
    width:55px;

    height:2px;

    background:#d9ae73;

    margin-top:28px;

    margin-bottom:9px;
}

.special-quote span{
    color:#f1d0b8;

    font-size:12px;

    letter-spacing:1px;
}


/* RIGHT */

.special-points{
    background:white;

    border:1px solid #eadbd1;

    border-radius:25px;

    padding:15px 25px;

    display:grid;

    grid-template-columns:1fr 1fr;
}

.special-point{
    display:flex;

    gap:17px;

    padding:28px 15px;

    border-bottom:1px solid #eee1d9;
}

.special-point:nth-child(odd){
    border-right:1px solid #eee1d9;
}

.special-point:nth-child(3),
.special-point:nth-child(4){
    border-bottom:0;
}

.point-icon{
    flex-shrink:0;

    width:50px;
    height:50px;

    border-radius:14px;

    background:var(--light);

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:22px;
}

.special-point h4{
    color:var(--dark-brown);

    font-family:Georgia,serif;

    font-size:18px;

    margin-bottom:6px;
}

.special-point p{
    color:var(--muted);

    font-size:12px;

    line-height:1.65;
}


/* =========================================
   ADMISSION
========================================= */

.admission{
    padding:85px 0;

    background:var(--light);
}

.admission-grid{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:45px;

    align-items:center;
}

.admission-image{
    height:570px;

    border-radius:28px;

    overflow:hidden;

    position:relative;

    box-shadow:
    0 18px 40px rgba(84,45,29,.15);
}

.admission-image img{
    width:100%;
    height:100%;

    object-fit:cover;
}

.admission-overlay{
    position:absolute;

    left:25px;
    right:25px;
    bottom:25px;

    padding:20px;

    border-radius:16px;

    background:rgba(84,45,29,.88);

    color:white;
}

.admission-overlay h3{
    font-family:Georgia,serif;

    font-size:24px;
}

.admission-overlay p{
    color:#f5ddd0;

    font-size:13px;

    margin-top:4px;
}

.form-card{
    background:white;

    padding:38px;

    border-radius:28px;

    box-shadow:
    0 18px 40px rgba(84,45,29,.10);

    border:1px solid #eadbd1;
}

.form-card h2{
    font-family:Georgia,serif;

    color:var(--dark-brown);

    font-size:34px;
}

.form-card > p{
    color:var(--muted);

    font-size:13px;

    margin:5px 0 25px;
}

.form-grid{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:14px;
}

.form-group{
    display:flex;

    flex-direction:column;
}

.form-group.full{
    grid-column:1/-1;
}

.form-group label{
    color:var(--text);

    font-size:12px;

    font-weight:bold;

    margin-bottom:5px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;

    padding:12px 13px;

    border:1px solid #dfcec3;

    border-radius:9px;

    outline:none;

    font-family:inherit;

    font-size:13px;

    background:#fffdfb;

    color:var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:var(--gold);
}

.form-group textarea{
    min-height:95px;

    resize:vertical;
}

.submit-btn{
    width:100%;

    border:0;

    margin-top:17px;

    padding:14px;

    border-radius:25px;

    background:var(--brown);

    color:white;

    font-size:14px;

    font-weight:bold;

    cursor:pointer;

    transition:.3s;
}

.submit-btn:hover{
    background:var(--dark-brown);
}


/* =========================================
   MANDATORY DISCLOSURE
========================================= */

.disclosure{
    padding:70px 0;

    background:white;
}

.disclosure-box{
    background:var(--light);

    border-radius:25px;

    padding:40px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

    border:1px solid #eadbd1;
}

.disclosure-box h2{
    font-family:Georgia,serif;

    color:var(--dark-brown);

    font-size:32px;
}

.disclosure-box p{
    color:var(--muted);

    font-size:14px;

    margin-top:5px;
}

.disclosure-btn{
    background:var(--brown);

    color:white;

    padding:13px 23px;

    border-radius:25px;

    font-weight:bold;

    font-size:13px;

    white-space:nowrap;
}


/* =========================================
   FOOTER
========================================= */

.contact{
    background:var(--dark-brown);

    color:white;

    padding:70px 0 0;
}

.footer-grid{
    display:grid;

    grid-template-columns:1.2fr .8fr 1.1fr 1.2fr;

    gap:35px;

    padding-bottom:45px;
}

.footer-column{
    padding-right:20px;
}

.footer-column:not(:last-child){
    border-right:1px solid rgba(255,255,255,.14);
}

.footer-brand{
    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:14px;
}

.footer-logo{
    width:48px;
    height:48px;

    border-radius:50%;

    overflow:hidden;

    border:2px solid var(--gold);
}

.footer-logo img{
    width:100%;
    height:100%;

    object-fit:cover;
}

.footer-brand h3{
    font-family:Georgia,serif;

    font-size:20px;
}

.footer-column > p{
    color:#e5cfc2;

    font-size:12px;

    margin-bottom:18px;
}

.footer-title{
    font-family:Georgia,serif;

    font-size:18px;

    margin-bottom:15px;

    color:white;
}

.quick-links{
    display:grid;

    gap:7px;
}

.quick-links a{
    color:#e5cfc2;

    font-size:12px;

    transition:.3s;
}

.quick-links a:hover{
    color:white;
}

.contact-detail{
    display:flex;

    gap:10px;

    margin-bottom:13px;
}

.contact-detail-icon{
    color:#f0c38d;

    width:20px;
}

.contact-detail div:last-child{
    color:#e5cfc2;

    font-size:12px;
}

.map-box{
    width:100%;

    height:190px;

    border-radius:14px;

    overflow:hidden;

    border:3px solid rgba(255,255,255,.15);
}

.map-box iframe{
    width:100%;
    height:100%;

    border:0;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);

    padding:17px 0;

    display:flex;

    justify-content:space-between;

    gap:20px;

    color:#d7bcae;

    font-size:11px;
}


/* =========================================
   FLOATING BUTTONS
========================================= */

.floating-buttons{
    position:fixed;

    right:18px;
    bottom:20px;

    z-index:2000;

    display:flex;

    flex-direction:column;

    gap:10px;
}

.float-btn{
    width:52px;
    height:52px;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    color:white;

    font-size:22px;

    box-shadow:
    0 8px 20px rgba(0,0,0,.22);

    transition:.3s;
}

.float-btn:hover{
    transform:scale(1.08);
}

.call-btn{
    background:var(--brown);
}

.whatsapp-btn{
    background:#20b85a;
}

.float-btn{
    width:52px;
    height:52px;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    text-decoration:none;

    font-size:24px;

    box-shadow:0 8px 20px rgba(0,0,0,.22);

    transition:.3s;
}

.float-btn:hover{
    transform:scale(1.08);
}

.whatsapp-btn{
    background:#25D366;
}

.call-btn{
    background:#884b2e;
}


/* =========================================
   TABLET
========================================= */

@media(max-width:1000px){

    nav{
        gap:14px;
    }

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

    .footer-column:nth-child(2){
        border-right:0;
    }

}


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

@media(max-width:850px){

    .menu-btn{
        display:block;
    }

    nav{
        display:none;

        position:absolute;

        top:82px;
        left:0;

        width:100%;

        padding:20px;

        background:var(--cream);

        flex-direction:column;

        align-items:flex-start;

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

    nav.show{
        display:flex;
    }

    .hero-slides{
        height:300px;
    }

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

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

    .admission-image{
        height:400px;
    }

    .leader-grid{
        grid-template-columns:1fr;

        max-width:430px;

        margin:auto;
    }

    .special-content{
        grid-template-columns:1fr;
    }

}


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

@media(max-width:650px){

    .container{
        width:92%;
    }

    .top-marquee{
        font-size:10px;
    }

    .header-inner{
        min-height:70px;
    }

    .brand-text h1{
        font-size:17px;
    }

    .brand-text p{
        font-size:8px;
    }

    .school-logo{
        width:48px;
        height:48px;
    }

    nav{
        top:70px;
    }

    .hero-slides{
        height:220px;
    }

    .slider-arrow{
        width:34px;
        height:34px;

        font-size:18px;
    }

    .slider-prev{
        left:10px;
    }

    .slider-next{
        right:10px;
    }

    .welcome h2{
        font-size:24px;
    }

    .feature-grid{
        grid-template-columns:1fr 1fr;

        gap:10px;
    }

    .feature-card{
        padding:20px 10px;
    }

    .feature-card h3{
        font-size:14px;
    }

    .feature-card p{
        font-size:10px;
    }

    .about-content h2{
        font-size:31px;
    }

    .about-image{
        height:270px;
    }

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

    .heading h2{
        font-size:30px;
    }

    .gallery-item{
        width:180px;
        height:140px;
    }


    /* SPECIAL SECTION */

    .special-section{
        padding:65px 0;
    }

    .special-heading{
        margin-bottom:35px;
    }

    .special-heading h2{
        font-size:32px;
    }

    .special-heading p{
        font-size:13px;
    }

    .special-quote{
        padding:35px 27px;

        min-height:300px;
    }

    .special-quote h3{
        font-size:27px;
    }

    .special-points{
        grid-template-columns:1fr;

        padding:10px 20px;
    }

    .special-point{
        border-right:0 !important;

        border-bottom:
        1px solid #eee1d9 !important;

        padding:22px 5px;
    }

    .special-point:last-child{
        border-bottom:0 !important;
    }


    /* ADMISSION */

    .admission{
        padding:60px 0;
    }

    .admission-image{
        height:330px;
    }

    .form-card{
        padding:25px 18px;
    }

    .form-card h2{
        font-size:28px;
    }

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

    .form-group.full{
        grid-column:auto;
    }


    /* DISCLOSURE */

    .disclosure-box{
        flex-direction:column;

        align-items:flex-start;

        padding:28px 22px;
    }

    .disclosure-box h2{
        font-size:27px;
    }


    /* FOOTER */

    .footer-grid{
        grid-template-columns:1fr;

        gap:28px;
    }

    .footer-column{
        border-right:0 !important;

        border-bottom:
        1px solid rgba(255,255,255,.12);

        padding-bottom:25px;

        padding-right:0;
    }

    .footer-bottom{
        flex-direction:column;

        text-align:center;
    }


    /* FLOATING */

    .floating-buttons{
        right:12px;
        bottom:15px;
    }

    .float-btn{
        width:47px;
        height:47px;

        font-size:20px;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media(max-width:380px){

    .hero-slides{
        height:190px;
    }

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

}

/* =====================================================
   ABOUT US PAGE
===================================================== */

.about-container{
    width:90%;
    max-width:1180px;
    margin:auto;
}


/* =====================================================
   TOP MARQUEE
===================================================== */

.top-marquee{
    height:38px;
    background:#542d1d;
    color:#f8e4d5;

    display:flex;
    align-items:center;

    overflow:hidden;

    font-size:13px;
    font-weight:600;
}

.marquee-track{
    display:flex;
    width:max-content;
    white-space:nowrap;

    animation:aboutTopMarquee 28s linear infinite;
}

.marquee-track span{
    margin-right:100px;
}

@keyframes aboutTopMarquee{

    from{
        transform:translateX(100%);
    }

    to{
        transform:translateX(-100%);
    }

}


/* =====================================================
   HEADER
===================================================== */

.site-header{
    background:#fffaf6;
    position:sticky;
    top:0;
    z-index:1000;

    box-shadow:
    0 4px 20px rgba(84,45,29,.08);
}

.header-container{
    width:90%;
    max-width:1180px;
    min-height:80px;

    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;
}

.school-brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.school-logo{
    width:58px;
    height:61px;

    
    overflow:hidden;

    

    flex-shrink:0;
}

.school-logo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.brand-text h1{
    font-family:Georgia,serif;
    color:#542d1d;

    font-size:21px;
    line-height:1.1;
}

.brand-text p{
    color:#80695d;
    font-size:9px;
    margin-top:4px;
}

.about-navigation{
    display:flex;
    align-items:center;
    gap:20px;
}

.about-navigation a{
    color:#49352c;
    font-size:13px;
    font-weight:600;
    transition:.3s;
}

.about-navigation a:hover,
.about-navigation a.active{
    color:#884b2e;
}

.admission-nav-btn{
    background:#884b2e !important;
    color:white !important;

    padding:10px 17px;
    border-radius:25px;
}

.menu-btn{
    display:none;

    border:0;
    background:#884b2e;
    color:white;

    width:42px;
    height:42px;

    border-radius:9px;

    cursor:pointer;

    font-size:18px;
}


/* =====================================================
   ABOUT HERO
===================================================== */

.about-page-hero{

    height:315px;

    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    overflow:hidden;

    background:
    linear-gradient(
        rgba(65,35,23,.55),
        rgba(65,35,23,.55)
    ),
    url("images/student-banner.jpg");

    background-size:cover;
    background-position:center;
}

.about-page-hero-content{
    color:white;
    position:relative;
    z-index:2;
}

.about-page-hero-content span{

    color:#f4c58e;

    font-size:11px;
    font-weight:700;

    letter-spacing:4px;
}

.about-page-hero-content h2{

    font-family:Georgia,serif;

    font-size:50px;
    line-height:1.08;

    margin:10px 0;
}

.about-page-hero-content p{

    font-size:14px;
    color:#fff3eb;
}


/* =====================================================
   PRINCIPAL MESSAGE
===================================================== */

.principal-section{

    padding:75px 0;

    background:#fffaf6;
}

.principal-layout{

    display:grid;

    grid-template-columns:330px 1fr;

    gap:45px;

    align-items:center;
}

.principal-photo-box{

    height:440px;

    overflow:hidden;

    border-radius:22px;

    border:7px solid white;

    box-shadow:
    0 15px 35px rgba(84,45,29,.13);
}

.principal-photo-box img{

    width:100%;
    height:100%;

    object-fit:cover;
}

.principal-content{

    background:#fff;

    padding:38px 42px;

    border-radius:22px;

    border:1px solid #eadbd1;
}

.about-label{

    color:#b98a55;

    font-size:11px;

    font-weight:700;

    letter-spacing:3px;
}

.principal-content h2{

    font-family:Georgia,serif;

    color:#542d1d;

    font-size:36px;

    margin:8px 0 20px;
}

.principal-content p{

    color:#80695d;

    font-size:13px;

    line-height:1.8;

    margin-bottom:13px;
}

.principal-signature{

    border-top:1px solid #eadbd1;

    padding-top:17px;

    margin-top:20px;
}

.principal-signature strong{

    display:block;

    font-family:Georgia,serif;

    color:#542d1d;

    font-size:21px;
}

.principal-signature span{

    display:block;

    color:#b98a55;

    font-size:10px;

    font-weight:bold;

    letter-spacing:2px;
}


/* =====================================================
   APPROACH
===================================================== */

.about-approach{

    padding:75px 0;

    background:#f8eee8;
}

.about-section-title{

    text-align:center;

    max-width:700px;

    margin:0 auto 38px;
}

.about-section-title span{

    color:#b98a55;

    font-size:11px;

    font-weight:bold;

    letter-spacing:3px;
}

.about-section-title h2{

    font-family:Georgia,serif;

    color:#542d1d;

    font-size:36px;

    margin:7px 0;
}

.about-section-title p{

    color:#80695d;

    font-size:13px;
}

.approach-grid{

    display:grid;

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

    gap:20px;
}

.approach-card{

    background:#fff;

    border:1px solid #eadbd1;

    border-radius:20px;

    padding:30px 25px;

    text-align:center;

    transition:.3s;
}

.approach-card:hover{

    transform:translateY(-5px);

    box-shadow:
    0 12px 28px rgba(84,45,29,.08);
}

.approach-icon{

    width:55px;
    height:55px;

    border-radius:50%;

    background:#f8eee8;

    color:#884b2e;

    display:flex;

    align-items:center;
    justify-content:center;

    margin:0 auto 15px;

    font-size:20px;
}

.approach-card h3{

    font-family:Georgia,serif;

    color:#542d1d;

    margin-bottom:7px;
}

.approach-card p{

    color:#80695d;

    font-size:12px;
}


/* =====================================================
   STUDENT GALLERY
===================================================== */

.student-gallery-section{

    padding:70px 0;

    background:#fffaf6;

    overflow:hidden;
}

.student-marquee{

    width:100%;

    overflow:hidden;
}

.student-marquee-track{

    display:flex;

    width:max-content;

    gap:18px;

    animation:
    studentGalleryMove 35s linear infinite;
}

.student-gallery-item{

    width:270px;
    height:185px;

    flex-shrink:0;

    overflow:hidden;

    border-radius:17px;

    border:5px solid white;

    box-shadow:
    0 8px 20px rgba(84,45,29,.12);
}

.student-gallery-item img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.4s;
}

.student-gallery-item:hover img{

    transform:scale(1.05);
}

.student-marquee:hover
.student-marquee-track{

    animation-play-state:paused;
}

@keyframes studentGalleryMove{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}


/* =====================================================
   CTA
===================================================== */

.about-cta{

    background:#542d1d;

    padding:50px 0;

    color:white;
}

.about-cta-inner{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;
}

.about-cta h2{

    font-family:Georgia,serif;

    font-size:30px;

    margin-bottom:5px;
}

.about-cta p{

    color:#e6cfc0;

    font-size:13px;
}

.about-cta a{

    background:#f0c38d;

    color:#542d1d;

    padding:13px 23px;

    border-radius:25px;

    font-size:13px;

    font-weight:bold;

    white-space:nowrap;
}


/* =====================================================
   FOOTER
===================================================== */

.about-footer{

    background:#3d2116;

    color:white;

    padding-top:55px;
}

.about-footer-grid{

    display:grid;

    grid-template-columns:
    1.2fr .8fr 1fr 1.2fr;

    gap:30px;

    padding-bottom:40px;
}

.about-footer-grid > div{

    padding-right:20px;

    border-right:
    1px solid rgba(255,255,255,.12);
}

.about-footer-grid > div:last-child{

    border-right:0;
}

.about-footer-grid h3{

    font-family:Georgia,serif;

    font-size:18px;

    margin-bottom:15px;
}

.about-footer-grid p{

    color:#e5cfc2;

    font-size:12px;

    margin-bottom:12px;
}

.about-footer-grid a{

    display:block;

    color:#e5cfc2;

    font-size:12px;

    margin-bottom:8px;
}

.about-footer-grid a:hover{

    color:white;
}

.about-footer-grid i{

    color:#f0c38d;

    width:20px;
}

.about-map{

    height:175px;

    border-radius:13px;

    overflow:hidden;

    border:2px solid rgba(255,255,255,.15);
}

.about-map iframe{

    width:100%;
    height:100%;

    border:0;
}

.about-footer-bottom{

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

    padding:17px 0;

    display:flex;

    justify-content:space-between;

    color:#d7bcae;

    font-size:11px;
}


/* =====================================================
   FLOATING BUTTONS
===================================================== */

.about-floating-buttons{

    position:fixed;

    right:18px;
    bottom:20px;

    z-index:2000;

    display:flex;

    flex-direction:column;

    gap:10px;
}

.about-float{

    width:50px;
    height:50px;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    color:white;

    font-size:21px;

    box-shadow:
    0 8px 20px rgba(0,0,0,.22);

    transition:.3s;
}

.about-float:hover{

    transform:scale(1.08);
}

.about-float.whatsapp{

    background:#25D366;
}

.about-float.call{

    background:#884b2e;
}


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

@media(max-width:950px){

    .menu-btn{
        display:block;
    }

    .about-navigation{

        display:none;

        position:absolute;

        top:80px;
        left:0;

        width:100%;

        padding:20px;

        background:#fffaf6;

        flex-direction:column;

        align-items:flex-start;

        gap:16px;

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

    .about-navigation.show{
        display:flex;
    }

    .principal-layout{

        grid-template-columns:1fr;

    }

    .principal-photo-box{

        width:100%;
        max-width:380px;

        margin:auto;
    }

    .about-footer-grid{

        grid-template-columns:1fr 1fr;
    }

}


@media(max-width:650px){

    .header-container{

        min-height:70px;
    }

    .about-navigation{

        top:70px;
    }

    .school-logo{

        width:48px;
        height:48px;
    }

    .brand-text h1{

        font-size:17px;
    }

    .brand-text p{

        font-size:8px;
    }


    /* HERO */

    .about-page-hero{

        height:245px;
    }

    .about-page-hero-content h2{

        font-size:36px;
    }

    .about-page-hero-content p{

        font-size:12px;

        padding:0 20px;
    }


    /* PRINCIPAL */

    .principal-section{

        padding:50px 0;
    }

    .principal-layout{

        grid-template-columns:1fr;

        gap:25px;
    }

    .principal-photo-box{

        height:350px;
    }

    .principal-content{

        padding:28px 22px;
    }

    .principal-content h2{

        font-size:29px;
    }

    .principal-content p{

        font-size:12px;
        line-height:1.8;
    }


    /* APPROACH */

    .about-approach{

        padding:55px 0;
    }

    .about-section-title h2{

        font-size:29px;
    }

    .approach-grid{

        grid-template-columns:1fr;
    }


    /* GALLERY */

    .student-gallery-section{

        padding:55px 0;
    }

    .student-gallery-item{

        width:220px;
        height:150px;
    }


    /* CTA */

    .about-cta-inner{

        flex-direction:column;

        align-items:flex-start;
    }

    .about-cta h2{

        font-size:27px;
    }


    /* FOOTER */

    .about-footer-grid{

        grid-template-columns:1fr;
    }

    .about-footer-grid > div{

        border-right:0;

        border-bottom:
        1px solid rgba(255,255,255,.12);

        padding-bottom:22px;
    }

    .about-footer-grid > div:last-child{

        border-bottom:0;
    }

    .about-footer-bottom{

        flex-direction:column;

        text-align:center;

        gap:6px;
    }

    .about-float{

        width:46px;
        height:46px;

        font-size:19px;
    }

}
/* =========================================
   ABOUT US BANNER
========================================= */

.about-page-hero{
    width:100%;
    height:360px;
    position:relative;
    overflow:hidden;
    background:#542d1d;
}

.about-banner-image{
    width:100%;
    height:100%;
    display:block;

    object-fit:cover;
    object-position:center;
}

.about-banner-overlay{
    position:absolute;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(45,25,16,0.20);

    text-align:center;
}

.about-banner-content{
    padding:28px 55px;

    background:rgba(255,250,246,0.92);

    border-radius:18px;

    border:2px solid rgba(255,255,255,0.8);

    box-shadow:
    0 15px 35px rgba(0,0,0,0.15);
}

.about-banner-content span{
    display:block;

    color:#9a633f;

    font-size:11px;
    font-weight:700;

    letter-spacing:4px;

    margin-bottom:7px;
}

.about-banner-content h1{
    margin:0;

    color:#542d1d;

    font-family:Georgia,serif;

    font-size:52px;
    line-height:1.05;
}

.about-banner-content p{
    margin:10px 0 0;

    color:#80695d;

    font-size:14px;
}


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

@media(max-width:768px){

    .about-page-hero{
        height:260px;
    }

    .about-banner-image{
        object-position:center;
    }

    .about-banner-content{
        padding:20px 28px;

        width:80%;
    }

    .about-banner-content span{
        font-size:9px;
        letter-spacing:2.5px;
    }

    .about-banner-content h1{
        font-size:36px;
    }

    .about-banner-content p{
        font-size:12px;
    }

}

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

body{
    font-family:Arial, sans-serif;
    background:#fffaf6;
    color:#4d3529;
}

a{
    text-decoration:none;
}


/* =========================
   MARQUEE
========================= */

.md-marquee{
    height:36px;
    background:#542d1d;
    color:#fff1e7;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.md-marquee-track{
    display:flex;
    width:max-content;
    white-space:nowrap;
    animation:mdMarquee 28s linear infinite;
}

.md-marquee-track span{
    margin-right:100px;
    font-size:12px;
    font-weight:600;
}

@keyframes mdMarquee{

    from{
        transform:translateX(100%);
    }

    to{
        transform:translateX(-100%);
    }

}


/* =========================
   HEADER
========================= */

.md-header{
    background:#fff;
    border-bottom:1px solid #eadbd1;
    position:sticky;
    top:0;
    z-index:1000;
}

.md-header-inner{
    width:92%;
    max-width:1200px;
    min-height:78px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}

.md-brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.md-logo{
    width:52px;
    height:52px;
    border-radius:50%;
    overflow:hidden;
    border:2px solid #b98a55;
}

.md-logo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.md-brand h1{
    font-family:Georgia,serif;
    font-size:21px;
    color:#542d1d;
}

.md-brand p{
    font-size:9px;
    color:#80695d;
    margin-top:3px;
}

.md-nav{
    display:flex;
    align-items:center;
    gap:22px;
}

.md-nav a{
    color:#5d4538;
    font-size:13px;
    font-weight:600;
}

.md-nav a:hover,
.md-nav a.active{
    color:#884b2e;
}


/* =========================
   HERO
========================= */

.md-hero{
    min-height:260px;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    background:
    linear-gradient(
        rgba(84,45,29,.80),
        rgba(84,45,29,.80)
    ),
    url("images/student-banner.jpg");

    background-size:cover;
    background-position:center;

    color:white;
}

.md-hero span{
    color:#f0c38d;
    font-size:11px;
    font-weight:bold;
    letter-spacing:4px;
}

.md-hero h2{
    font-family:Georgia,serif;
    font-size:48px;
    margin:8px 0;
}

.md-hero p{
    color:#f8e9df;
    font-size:14px;
}


/* =========================
   MAIN
========================= */

.md-main{
    width:92%;
    max-width:1150px;
    margin:55px auto;
}

.md-section{
    margin-bottom:55px;
}

.md-section-title{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.md-section-title > span{
    width:45px;
    height:45px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:12px;

    background:#884b2e;
    color:white;

    font-family:Georgia,serif;
    font-weight:bold;
}

.md-section-title small{
    color:#b98a55;
    font-size:10px;
    letter-spacing:2px;
    font-weight:bold;
}

.md-section-title h2{
    font-family:Georgia,serif;
    color:#542d1d;
    font-size:28px;
    margin-top:3px;
}


/* =========================
   TABLE
========================= */

.md-table-wrap{
    overflow-x:auto;

    background:white;

    border:1px solid #eadbd1;

    border-radius:15px;

    box-shadow:
    0 8px 25px rgba(84,45,29,.05);
}

.md-table{
    width:100%;
    border-collapse:collapse;
    min-width:650px;
}

.md-table th{
    background:#884b2e;
    color:white;

    padding:13px 12px;

    font-size:12px;
    text-align:left;
}

.md-table td{
    padding:12px;

    border-bottom:1px solid #eadbd1;

    font-size:12px;
    color:#624c40;
}

.md-table tbody tr:nth-child(even){
    background:#fcf5f0;
}

.md-table tbody tr:hover{
    background:#f8e9df;
}

.md-table td:first-child{
    width:70px;
    text-align:center;
    font-weight:bold;
    color:#884b2e;
}

.staff-table th,
.staff-table td{
    text-align:center;
}

.staff-table td:nth-child(2){
    text-align:left;
}


/* =========================
   DOCUMENTS
========================= */

.md-document-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.md-document{
    background:white;

    border:1px solid #eadbd1;

    border-radius:14px;

    padding:17px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:15px;
}

.md-document-info{
    display:flex;
    align-items:center;
    gap:13px;
}

.md-document-info > i{
    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:10px;

    background:#f9e8df;

    color:#b52d22;

    font-size:19px;
}

.md-document h3{
    color:#542d1d;
    font-size:13px;
    margin-bottom:4px;
}

.md-document p{
    color:#80695d;
    font-size:10px;
}

.md-view-btn{
    flex-shrink:0;

    background:#884b2e;
    color:white;

    padding:9px 14px;

    border-radius:7px;

    font-size:11px;
    font-weight:bold;
}

.md-view-btn:hover{
    background:#542d1d;
}


/* =========================
   CONTACT
========================= */

.md-contact{
    background:#542d1d;

    border-radius:20px;

    padding:40px;

    color:white;

    margin-bottom:60px;

    text-align:center;
}

.md-contact span{
    color:#f0c38d;
    font-size:10px;
    letter-spacing:3px;
    font-weight:bold;
}

.md-contact h2{
    font-family:Georgia,serif;
    font-size:30px;
    margin:7px 0;
}

.md-contact p{
    color:#ead6c9;
    font-size:13px;
}

.md-contact-buttons{
    margin-top:20px;

    display:flex;
    justify-content:center;
    gap:12px;
}

.md-contact-buttons a{
    background:#f0c38d;
    color:#542d1d;

    padding:11px 18px;

    border-radius:25px;

    font-size:12px;
    font-weight:bold;
}

.md-contact-buttons a i{
    margin-right:5px;
}


/* =========================
   FOOTER
========================= */

.md-footer{
    background:#3d2116;
    color:white;
}

.md-footer-inner{
    width:92%;
    max-width:1150px;
    margin:auto;

    padding:45px 0;

    display:grid;
    grid-template-columns:1.5fr 1fr 1fr;
    gap:40px;
}

.md-footer h3{
    font-family:Georgia,serif;
    font-size:17px;
    margin-bottom:13px;
}

.md-footer p,
.md-footer a{
    display:block;
    color:#ddc5b7;
    font-size:12px;
    margin-bottom:8px;
}

.md-footer a:hover{
    color:white;
}

.md-footer i{
    color:#f0c38d;
    margin-right:5px;
}

.md-footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);

    text-align:center;

    padding:15px;

    color:#cdb2a4;

    font-size:10px;
}


/* =========================
   FLOATING BUTTONS
========================= */

.md-floating{
    position:fixed;

    right:18px;
    bottom:20px;

    z-index:2000;

    display:flex;
    flex-direction:column;
    gap:9px;
}

.md-floating a{
    width:48px;
    height:48px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;

    font-size:20px;

    box-shadow:
    0 7px 20px rgba(0,0,0,.22);
}

.md-whatsapp{
    background:#25D366;
}

.md-call{
    background:#884b2e;
}


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

@media(max-width:800px){

    .md-header-inner{
        min-height:68px;
    }

    .md-nav{
        display:none;
    }

    .md-brand h1{
        font-size:17px;
    }

    .md-brand p{
        font-size:8px;
    }

    .md-hero{
        min-height:220px;
    }

    .md-hero h2{
        font-size:36px;
    }

    .md-main{
        width:94%;
        margin:40px auto;
    }

    .md-section-title h2{
        font-size:23px;
    }

    .md-document-list{
        grid-template-columns:1fr;
    }

    .md-footer-inner{
        grid-template-columns:1fr;
        gap:25px;
    }

}


@media(max-width:500px){

    .md-logo{
        width:45px;
        height:45px;
    }

    .md-hero{
        min-height:190px;
        padding:25px;
    }

    .md-hero h2{
        font-size:31px;
    }

    .md-hero span{
        font-size:9px;
    }

    .md-section-title > span{
        width:38px;
        height:38px;
    }

    .md-document{
        align-items:flex-start;
        flex-direction:column;
    }

    .md-view-btn{
        width:100%;
        text-align:center;
    }

    .md-contact{
        padding:30px 20px;
    }

    .md-contact-buttons{
        flex-direction:column;
    }

    .md-contact-buttons a{
        width:100%;
    }

}

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

body{
    font-family:Arial, sans-serif;
    background:#fffaf6;
    color:#4d3529;
}

a{
    text-decoration:none;
}


/* =========================
   MARQUEE
========================= */

.contact-marquee{
    height:36px;
    background:#542d1d;
    color:#fff1e7;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.contact-marquee-track{
    display:flex;
    width:max-content;
    white-space:nowrap;
    animation:contactMarquee 28s linear infinite;
}

.contact-marquee-track span{
    margin-right:100px;
    font-size:12px;
    font-weight:600;
}

@keyframes contactMarquee{

    from{
        transform:translateX(100%);
    }

    to{
        transform:translateX(-100%);
    }

}


/* =========================
   HEADER
========================= */

.contact-header{
    background:#fff;
    border-bottom:1px solid #eadbd1;
    position:sticky;
    top:0;
    z-index:1000;
}

.contact-header-inner{
    width:92%;
    max-width:1200px;
    min-height:78px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}

.contact-brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.contact-logo{
    width:52px;
    height:52px;
    border-radius:50%;
    overflow:hidden;
    border:2px solid #b98a55;
}

.contact-logo img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.contact-brand h1{
    font-family:Georgia,serif;
    font-size:21px;
    color:#542d1d;
}

.contact-brand p{
    font-size:9px;
    color:#80695d;
    margin-top:3px;
}

.contact-nav{
    display:flex;
    align-items:center;
    gap:22px;
}

.contact-nav a{
    color:#5d4538;
    font-size:13px;
    font-weight:600;
}

.contact-nav a:hover,
.contact-nav a.active{
    color:#884b2e;
}


/* =========================
   HERO
========================= */

.contact-hero{
    min-height:280px;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    background:
    linear-gradient(
        rgba(84,45,29,.78),
        rgba(84,45,29,.78)
    ),
    url("images/student-banner.jpg");

    background-size:cover;
    background-position:center;

    color:white;
}

.contact-hero-content span{
    color:#f0c38d;
    font-size:11px;
    font-weight:bold;
    letter-spacing:4px;
}

.contact-hero-content h2{
    font-family:Georgia,serif;
    font-size:52px;
    margin:8px 0;
}

.contact-hero-content p{
    color:#f8e9df;
    font-size:14px;
}


/* =========================
   COMMON CONTAINER
========================= */

.contact-container{
    width:92%;
    max-width:1150px;
    margin:auto;
}


/* =========================
   INFO SECTION
========================= */

.contact-info-section{
    padding:70px 0 50px;
}

.contact-info-heading{
    text-align:center;
    max-width:650px;
    margin:0 auto 35px;
}

.contact-info-heading span,
.form-heading span,
.map-heading span,
.principal-contact span{
    color:#b98a55;
    font-size:10px;
    font-weight:bold;
    letter-spacing:3px;
}

.contact-info-heading h2,
.form-heading h2,
.map-heading h2{
    font-family:Georgia,serif;
    font-size:32px;
    color:#542d1d;
    margin:7px 0;
}

.contact-info-heading p,
.form-heading p{
    color:#80695d;
    font-size:13px;
    line-height:1.7;
}

.contact-info-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.contact-info-card{
    background:#fff;

    border:1px solid #eadbd1;

    border-radius:16px;

    padding:24px;

    display:flex;
    gap:15px;

    box-shadow:0 8px 25px rgba(84,45,29,.05);
}

.contact-icon{
    flex-shrink:0;

    width:48px;
    height:48px;

    border-radius:12px;

    background:#f8e9df;

    color:#884b2e;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:19px;
}

.contact-info-card h3{
    font-family:Georgia,serif;
    color:#542d1d;
    font-size:16px;
    margin-bottom:7px;
}

.contact-info-card p{
    color:#695449;
    font-size:12px;
    line-height:1.6;
}

.contact-info-card p a{
    color:#884b2e;
    font-weight:bold;
}

.contact-info-card small{
    display:block;
    margin-top:5px;
    color:#9a8174;
    font-size:10px;
}


/* =========================
   FORM + MAP
========================= */

.contact-main-section{
    padding:30px 0 70px;
}

.contact-main-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.contact-form-box,
.contact-map-box{
    background:#fff;

    border:1px solid #eadbd1;

    border-radius:18px;

    padding:30px;

    box-shadow:0 8px 25px rgba(84,45,29,.05);
}

.form-heading,
.map-heading{
    margin-bottom:22px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.form-group{
    margin-bottom:16px;
}

.form-group label{
    display:block;

    font-size:11px;
    font-weight:bold;

    color:#5d4538;

    margin-bottom:7px;
}

.form-group input,
.form-group textarea{
    width:100%;

    border:1px solid #e3d2c7;

    border-radius:8px;

    padding:12px;

    font-family:Arial,sans-serif;

    font-size:12px;

    color:#4d3529;

    background:#fffdfa;

    outline:none;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#884b2e;
}

.form-group textarea{
    resize:vertical;
}

.contact-submit{
    border:none;

    background:#884b2e;

    color:white;

    padding:12px 22px;

    border-radius:25px;

    font-size:12px;
    font-weight:bold;

    cursor:pointer;
}

.contact-submit:hover{
    background:#542d1d;
}

.contact-submit i{
    margin-right:7px;
}


/* =========================
   MAP
========================= */

.contact-map{
    width:100%;
    height:330px;

    overflow:hidden;

    border-radius:12px;

    margin-bottom:18px;
}

.contact-map iframe{
    display:block;
}

.map-address{
    display:flex;
    align-items:flex-start;
    gap:10px;
}

.map-address i{
    color:#884b2e;
    margin-top:2px;
}

.map-address p{
    color:#695449;
    font-size:12px;
    line-height:1.6;
}


/* =========================
   PRINCIPAL CONTACT
========================= */

.principal-contact{
    width:92%;
    max-width:1150px;

    margin:0 auto 70px;

    background:#542d1d;

    border-radius:20px;

    padding:35px 40px;

    color:white;
}

.principal-contact-inner{
    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;
}

.principal-contact h2{
    font-family:Georgia,serif;
    font-size:30px;
    margin:6px 0;
}

.principal-contact p{
    color:#e6d2c5;
    font-size:12px;
    line-height:1.6;
}

.principal-actions{
    display:flex;
    gap:10px;
}

.principal-actions a{
    padding:11px 18px;

    border-radius:25px;

    background:#f0c38d;

    color:#542d1d;

    font-size:12px;

    font-weight:bold;
}

.principal-actions a:last-child{
    background:#25D366;
    color:white;
}

.principal-actions i{
    margin-right:5px;
}


/* =========================
   FOOTER
========================= */

.contact-footer{
    background:#3d2116;
    color:white;
}

.contact-footer-inner{
    width:92%;
    max-width:1150px;

    margin:auto;

    padding:45px 0;

    display:grid;

    grid-template-columns:1.5fr 1fr 1fr;

    gap:40px;
}

.contact-footer h3{
    font-family:Georgia,serif;
    font-size:17px;
    margin-bottom:13px;
}

.contact-footer p,
.contact-footer a{
    display:block;

    color:#ddc5b7;

    font-size:12px;

    margin-bottom:8px;
}

.contact-footer a:hover{
    color:white;
}

.contact-footer i{
    color:#f0c38d;
    margin-right:5px;
}

.contact-footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);

    text-align:center;

    padding:15px;

    color:#cdb2a4;

    font-size:10px;
}


/* =========================
   FLOATING BUTTONS
========================= */

.contact-floating{
    position:fixed;

    right:18px;
    bottom:20px;

    z-index:2000;

    display:flex;

    flex-direction:column;

    gap:9px;
}

.contact-floating a{
    width:48px;
    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    font-size:20px;

    box-shadow:0 7px 20px rgba(0,0,0,.22);
}

.contact-whatsapp{
    background:#25D366;
}

.contact-call{
    background:#884b2e;
}


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

@media(max-width:800px){

    .contact-header-inner{
        min-height:68px;
    }

    .contact-nav{
        display:none;
    }

    .contact-brand h1{
        font-size:17px;
    }

    .contact-brand p{
        font-size:8px;
    }

    .contact-hero{
        min-height:220px;
    }

    .contact-hero-content h2{
        font-size:38px;
    }

    .contact-info-grid{
        grid-template-columns:1fr;
    }

    .contact-main-grid{
        grid-template-columns:1fr;
    }

    .principal-contact-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .contact-footer-inner{
        grid-template-columns:1fr;
        gap:25px;
    }

}


@media(max-width:500px){

    .contact-logo{
        width:45px;
        height:45px;
    }

    .contact-hero{
        min-height:190px;
        padding:25px;
    }

    .contact-hero-content h2{
        font-size:32px;
    }

    .contact-info-section{
        padding:45px 0 30px;
    }

    .contact-form-box,
    .contact-map-box{
        padding:22px;
    }

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

    .contact-map{
        height:280px;
    }

    .principal-contact{
        padding:28px 22px;
    }

    .principal-actions{
        width:100%;
        flex-direction:column;
    }

    .principal-actions a{
        width:100%;
        text-align:center;
    }

}

