/* ==========================
STUDENT HERO SECTION
Namespace : sgt-
========================== */

.sgt-hero-shell{

    position:relative;

    overflow:hidden;

    padding:50px 6%;

    background:
    linear-gradient(
        135deg,
        #eff6ff,
        #ecfeff,
        #ffffff
    );
}

.sgt-hero-container{

    width:min(1400px,92%);

    margin:auto;

    display:grid;

    grid-template-columns:
    55% 45%;

    gap:50px;

    align-items:center;

    position:relative;

    z-index:2;
}

/* SHAPES */

.sgt-bg-shape{

    position:absolute;

    border-radius:50%;

    filter:blur(90px);

    opacity:.25;
}

.sgt-shape-one{

    width:300px;
    height:300px;

    background:#06b6d4;

    top:-80px;
    left:-80px;
}

.sgt-shape-two{

    width:260px;
    height:260px;

    background:#f97316;

    right:-60px;
    bottom:-60px;
}

/* LEFT */

.sgt-mini-badge{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:#ffffff;

    color:#2563eb;

    font-weight:700;

    margin-bottom:20px;

    box-shadow:
    0 15px 35px
    rgba(37,99,235,.12);
}

.sgt-copy-zone h1{

    font-size:
    clamp(
        1.8rem,
        2.5vw,
        2rem
    );

    line-height:1.2;

    color:#0f172a;

    margin-bottom:20px;
}

.sgt-copy-zone p{

    color:#475569;

    line-height:1.9;

    margin-bottom:30px;
}

/* STATS */

.sgt-stat-wrapper{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:35px;
}

.sgt-stat-box{

    background:#ffffff;

    padding:20px;

    border-radius:22px;

    min-width:160px;

    box-shadow:
    0 20px 40px
    rgba(0,0,0,.06);
}

.sgt-stat-box h3{

    color:#2563eb;

    margin-bottom:8px;
}

.sgt-stat-box span{

    color:#64748b;
}

/* BUTTONS */

.sgt-btn-wrapper{

    display:flex;

    flex-wrap:wrap;

    gap:15px;
}

.sgt-primary-btn{

    text-decoration:none;

    padding:16px 30px;

    border-radius:50px;

    background:#2563eb;

    color:#ffffff;

    font-weight:700;

    transition:.35s;
}

.sgt-secondary-btn{

    text-decoration:none;

    padding:16px 30px;

    border-radius:50px;

    background:#f97316;

    color:#ffffff;

    font-weight:700;

    transition:.35s;
}

.sgt-primary-btn:hover,
.sgt-secondary-btn:hover{

    transform:
    translateY(-5px);
}

/* RIGHT */

.sgt-visual-zone{

    position:relative;

    display:flex;

    justify-content:center;
}

.sgt-main-photo{

    width:100%;
    max-width:430px;

    border-radius:35px;

    overflow:hidden;

    transform:
    rotate(-3deg);

    box-shadow:
    0 35px 60px
    rgba(0,0,0,.15);
}

.sgt-main-photo img{

    width:100%;

    height:500px;

    object-fit:cover;

    display:block;
}

/* FLOATING CARDS */

.sgt-floating-card{

    position:absolute;

    background:#ffffff;

    padding:15px 20px;

    border-radius:18px;

    box-shadow:
    0 20px 40px
    rgba(0,0,0,.12);

    font-weight:600;

    animation:
    sgtFloat 6s ease-in-out infinite;
}

.sgt-card-one{

    top:30px;
    left:-20px;
}

.sgt-card-two{

    top:220px;
    right:-20px;
}

.sgt-card-three{

    bottom:40px;
    left:30px;
}

@keyframes sgtFloat{

    0%,100%{

        transform:
        translateY(0);
    }

    50%{

        transform:
        translateY(-15px);
    }
}

/* RESPONSIVE */

@media(max-width:992px){

    .sgt-hero-container{

        grid-template-columns:1fr;

        text-align:center;
    }

    .sgt-stat-wrapper,
    .sgt-btn-wrapper{

        justify-content:center;
    }
}

@media(max-width:768px){

    .sgt-hero-shell{

        padding:40px 5%;
    }

    .sgt-main-photo img{

        height:340px;
    }

    .sgt-floating-card{

        display:none;
    }

    .sgt-primary-btn,
    .sgt-secondary-btn{

        width:100%;
        text-align:center;
    }
}

/* ==========================
WHY STUDENTS LOVE ANDAMAN
Namespace : sjl-
========================== */

.sjl-section{

    padding:50px 6%;

    background:
    linear-gradient(
        180deg,
        #f0f9ff,
        #eff6ff,
        #ecfeff,
        #ffffff
    );

    overflow:hidden;
}

.sjl-container{

    width:min(1400px,92%);
    margin:auto;
}

/* HEADING */

.sjl-heading{

    text-align:center;
    max-width:850px;
    margin:auto auto 60px;
}

.sjl-tag{

    display:inline-block;

    padding:12px 24px;

    background:#dbeafe;

    color:#2563eb;

    border-radius:50px;

    margin-bottom:20px;

    font-weight:700;
}

.sjl-heading h2{

    font-size:
    clamp(
        1.6rem,
        2vw,
        1.8rem
    );

    color:#0f172a;

    margin-bottom:20px;
}

.sjl-heading p{

    line-height:1.9;
    color:#64748b;
}

/* ROW */

.sjl-row{

    display:grid;

    grid-template-columns:
    50% 50%;

    gap:60px;

    align-items:center;

    margin-bottom:70px;
}

.sjl-reverse .sjl-image{

    order:2;
}

.sjl-reverse .sjl-content{

    order:1;
}

/* IMAGE */

.sjl-image{

    overflow:hidden;

    border-radius:35px;

    box-shadow:
    0 30px 60px
    rgba(0,0,0,.12);
}

.sjl-image img{

    width:100%;

    height:420px;

    object-fit:cover;

    display:block;

    transition:.5s;
}

.sjl-image:hover img{

    transform:
    scale(1.06)
    rotate(2deg);
}

/* CONTENT */

.sjl-content{

    background:#ffffff;

    padding:40px;

    border-radius:35px;

    box-shadow:
    0 20px 50px
    rgba(0,0,0,.08);

    transition:.4s;
}

.sjl-content:hover{

    transform:
    translateY(-10px);
}

.sjl-number{

    font-size:3rem;

    font-weight:800;

    color:#06b6d4;

    display:block;

    margin-bottom:15px;
}

.sjl-content h3{

    color:#0f172a;

    margin-bottom:20px;
}

.sjl-content p{

    line-height:1.9;

    color:#64748b;

    margin-bottom:25px;
}

/* STICKERS */

.sjl-stickers{

    display:flex;

    gap:15px;
}

.sjl-stickers span{

    width:55px;
    height:55px;

    border-radius:18px;

    background:#eff6ff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:1.4rem;
}

/* RESPONSIVE */

@media(max-width:992px){

    .sjl-row{

        grid-template-columns:1fr;

        gap:35px;
    }

    .sjl-reverse .sjl-image,
    .sjl-reverse .sjl-content{

        order:unset;
    }

    .sjl-image img{

        height:300px;
    }
}

@media(max-width:768px){

    .sjl-section{

        padding:45px 5%;
    }

    .sjl-content{

        padding:30px;
    }

    .sjl-number{

        font-size:2.5rem;
    }
}

/* ==========================
STUDENT PACKAGE SECTION
Namespace : sgp-
========================== */

.sgp-section-shell{

    padding:50px 6%;

    background:
    linear-gradient(
        180deg,
        #eff6ff,
        #ecfeff,
        #ffffff
    );
}

.sgp-main-wrap{

    width:min(1400px,92%);
    margin:auto;
}

.sgp-heading-box{

    text-align:center;
    max-width:850px;
    margin:auto auto 50px;
}

.sgp-tag{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:#dbeafe;

    color:#2563eb;

    font-weight:700;

    margin-bottom:20px;
}

.sgp-heading-box h2{

    font-size:
    clamp(
        1.6rem,
        2vw,
        1.8rem
    );

    color:#0f172a;

    margin-bottom:18px;
}

.sgp-heading-box p{

    line-height:1.8;

    color:#64748b;
}

/* GRID */

.sgp-card-grid{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:30px;
}

/* PASSPORT CARD */

.sgp-ticket-card{

    width:330px;

    background:#ffffff;

    border-radius:35px;

    padding:30px;

    box-shadow:
    0 20px 50px
    rgba(0,0,0,.08);

    transition:.4s;

    position:relative;
}

.sgp-ticket-card::before{

    content:"";

    position:absolute;

    width:45px;
    height:45px;

    background:#eff6ff;

    border-radius:50%;

    left:-22px;
    top:50%;
}

.sgp-ticket-card::after{

    content:"";

    position:absolute;

    width:45px;
    height:45px;

    background:#eff6ff;

    border-radius:50%;

    right:-22px;
    top:50%;
}

.sgp-ticket-card:hover{

    transform:
    translateY(-12px)
    rotate(-2deg);
}

.sgp-ticket-top span{

    display:inline-block;

    background:#06b6d4;

    color:#ffffff;

    padding:10px 18px;

    border-radius:50px;

    margin-bottom:20px;
}

.sgp-ticket-top h3{

    color:#0f172a;

    margin-bottom:10px;
}

.sgp-ticket-top h4{

    color:#64748b;

    margin-bottom:25px;
}

/* PRICE */

.sgp-ticket-price{

    font-size:2rem;

    color:#f97316;

    font-weight:800;

    margin-bottom:25px;
}

.sgp-ticket-price span{

    display:block;

    font-size:1rem;

    color:#64748b;

    margin-top:8px;
}

/* FEATURES */

.sgp-ticket-card ul{

    padding-left:20px;

    margin-bottom:25px;
}

.sgp-ticket-card li{

    margin-bottom:12px;

    color:#475569;

    line-height:1.6;
}

/* BUTTON */

.sgp-book-btn{

    display:block;

    text-align:center;

    text-decoration:none;

    padding:15px;

    border-radius:18px;

    background:#2563eb;

    color:#ffffff;

    font-weight:700;

    transition:.3s;
}

.sgp-book-btn:hover{

    background:#1d4ed8;
}

/* MOBILE */

@media(max-width:768px){

    .sgp-ticket-card{

        width:100%;
        max-width:340px;
    }
}

/* ==========================
STUDENT MEMORIES GALLERY
Namespace : smg-
========================== */

.smg-gallery-section{

    padding:50px 6%;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #eff6ff,
        #ecfeff
    );
}

.smg-container{

    width:min(1400px,92%);
    margin:auto;
}

/* HEADING */

.smg-heading{

    text-align:center;
    max-width:850px;
    margin:auto auto 50px;
}

.smg-tag{

    display:inline-block;

    padding:12px 24px;

    background:#dbeafe;

    color:#2563eb;

    border-radius:50px;

    font-weight:700;

    margin-bottom:20px;
}

.smg-heading h2{

    font-size:
    clamp(1.6rem,2vw,1.8rem);

    color:#0f172a;

    margin-bottom:20px;
}

.smg-heading p{

    line-height:1.9;
    color:#64748b;
}

/* MASONRY */

.smg-masonry-grid{

    column-count:3;
    column-gap:30px;
}

/* CARD */

.smg-photo-card{

    position:relative;

    break-inside:avoid;

    background:#ffffff;

    padding:15px;

    border-radius:28px;

    margin-bottom:30px;

    box-shadow:
    0 20px 50px
    rgba(0,0,0,.08);

    transform:
    rotate(-2deg);

    transition:.4s;
}

.smg-photo-card:nth-child(even){

    transform:
    rotate(2deg);
}

.smg-photo-card:hover{

    transform:
    scale(1.04)
    rotate(0deg);

    box-shadow:
    0 35px 70px
    rgba(0,0,0,.12);
}

.smg-photo-card img{

    width:100%;

    border-radius:20px;

    display:block;
}

/* TAPE */

.smg-tape{

    position:absolute;

    width:90px;
    height:28px;

    background:
    rgba(255,255,255,.65);

    top:-12px;
    left:50%;

    transform:
    translateX(-50%)
    rotate(-5deg);

    border-radius:6px;

    backdrop-filter:
    blur(5px);
}

/* CAPTION */

.smg-photo-card figcaption{

    text-align:center;

    margin-top:18px;

    color:#0f172a;

    font-weight:600;
}

/* RESPONSIVE */

@media(max-width:992px){

    .smg-masonry-grid{

        column-count:2;
    }
}

@media(max-width:768px){

    .smg-gallery-section{

        padding:45px 5%;
    }

    .smg-masonry-grid{

        column-count:1;
    }
}

/* ==========================
STUDENT FINAL CTA
Namespace : sat-
========================== */

.sat-terminal-section{

    position:relative;

    overflow:hidden;

    padding:50px 6%;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #06b6d4,
        #0ea5e9
    );
}

.sat-container{

    width:min(1400px,92%);

    margin:auto;

    display:grid;

    grid-template-columns:
    55% 45%;

    gap:50px;

    align-items:center;

    position:relative;

    z-index:2;
}

/* LEFT */

.sat-badge{

    display:inline-block;

    padding:12px 24px;

    background:
    rgba(255,255,255,.15);

    border-radius:50px;

    color:#ffffff;

    font-weight:700;

    margin-bottom:20px;

    backdrop-filter:
    blur(20px);
}

.sat-content h2{

    font-size:
    clamp(
        1.8rem,
        2.5vw,
        2rem
    );

    line-height:1.2;

    color:#ffffff;

    margin-bottom:20px;
}

.sat-content p{

    color:#e0f2fe;

    line-height:1.9;
}

/* GLASS CARD */

.sat-glass-card{

    padding:35px;

    border-radius:35px;

    background:
    rgba(255,255,255,.12);

    backdrop-filter:
    blur(20px);

    box-shadow:
    0 30px 60px
    rgba(0,0,0,.18);
}

/* STATS */

.sat-stats{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:15px;

    margin-bottom:30px;
}

.sat-stat{

    text-align:center;

    padding:20px;

    background:
    rgba(255,255,255,.12);

    border-radius:20px;
}

.sat-stat h3{

    color:#facc15;

    font-size:1.8rem;

    margin-bottom:10px;
}

.sat-stat span{

    color:#ffffff;

    font-size:.9rem;
}

/* BUTTONS */

.sat-buttons{

    display:flex;

    flex-direction:column;

    gap:15px;
}

.sat-btn-primary,
.sat-btn-whatsapp,
.sat-btn-call{

    text-decoration:none;

    text-align:center;

    padding:16px;

    border-radius:18px;

    font-weight:700;

    transition:.35s ease;
}

.sat-btn-primary{

    background:#facc15;

    color:#0f172a;
}

.sat-btn-whatsapp{

    background:#22c55e;

    color:#ffffff;
}

.sat-btn-call{

    background:
    rgba(255,255,255,.15);

    color:#ffffff;
}

.sat-btn-primary:hover,
.sat-btn-whatsapp:hover,
.sat-btn-call:hover{

    transform:
    translateY(-5px);
}

/* FLOATING ICONS */

.sat-float{

    position:absolute;

    font-size:2rem;

    opacity:.35;

    animation:
    satFloat 8s ease-in-out infinite;
}

.sat-plane{

    top:10%;
    left:10%;
}

.sat-bag{

    top:20%;
    right:10%;
}

.sat-camera{

    bottom:25%;
    left:12%;
}

.sat-wave{

    bottom:10%;
    right:15%;
}

.sat-island{

    top:55%;
    right:5%;
}

@keyframes satFloat{

    0%,100%{

        transform:
        translateY(0);
    }

    50%{

        transform:
        translateY(-20px);
    }
}

/* TABLET */

@media(max-width:992px){

    .sat-container{

        grid-template-columns:1fr;

        text-align:center;
    }
}

/* MOBILE */

@media(max-width:768px){

    .sat-terminal-section{

        padding:45px 5%;
    }

    .sat-stats{

        grid-template-columns:1fr;
    }

    .sat-glass-card{

        padding:28px;
    }
}