/* ==========================================
        GUIDE PAGE - PART 1
========================================== */

:root {

    --primary: #6b3f24;
    --secondary: #c69c43;
    --cream: #fff9f2;
    --light: #ffffff;
    --text: #333;
    --shadow: 0 15px 40px rgba(0, 0, 0, .12);

}

body {

    background: var(--cream);
    overflow-x: hidden;

}

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

.guide-hero {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    background:
        radial-gradient(circle at top right, #f7e6b2 0%, transparent 30%),
        linear-gradient(135deg, #fffaf4, #fff3e3);

    overflow: hidden;

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background-image: url("../ASSETS/IMAGES/patterns/sambalpuri-pattern.png");

    opacity: .04;

    pointer-events: none;

}

.hero-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 70px;

    padding: 70px 0;

}

/* LEFT */

.hero-tag {

    display: inline-block;

    padding: 10px 22px;

    border-radius: 50px;

    background: #fff;

    color: var(--secondary);

    font-weight: 600;

    box-shadow: var(--shadow);

    margin-bottom: 25px;

}

.hero-left h1 {

    font-size: 60px;

    line-height: 1.1;

    color: var(--primary);

    margin-bottom: 25px;

}

.hero-left h1 .gold {

    color: var(--secondary);

}

.odia {

    font-size: 42px;

    display: inline-block;

    margin-bottom: 12px;

}

.hero-left p {

    font-size: 18px;

    line-height: 1.9;

    color: #555;

    margin-bottom: 40px;

}

/* BUTTONS */

.hero-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

}

.btn-primary {

    background: linear-gradient(135deg, #8d5524, #c69c43);

    color: #fff;

    padding: 15px 36px;

    border-radius: 50px;

    text-decoration: none;

    transition: .4s;

    font-weight: 600;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);

}

.btn-primary:hover {

    transform: translateY(-6px);

}

.btn-outline {

    border: 2px solid var(--secondary);

    color: var(--secondary);

    padding: 15px 36px;

    border-radius: 50px;

    text-decoration: none;

    transition: .4s;

    font-weight: 600;

}

.btn-outline:hover {

    background: var(--secondary);

    color: #fff;

}

/* RIGHT */

.hero-right {

    position: relative;

    display: flex;

    justify-content: flex-end;

    align-items: flex-end;

    min-height: 500px;

    overflow: visible;

}

.hero-glow {

    width: 520px;

    height: 520px;

    border-radius: 50%;

    background: radial-gradient(circle, #f8d985, transparent);

    position: absolute;

    animation: glow 5s ease-in-out infinite;

    filter: blur(20px);

}

@keyframes glow {

    0%,
    100% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.08);

    }

}

.guide-couple {

    width: 250%;
    max-width: 1000px;

    height: auto;

    position: relative;

    right: +30px;

    z-index: 2;

    animation: float 4s ease-in-out infinite;

}

@keyframes float {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-18px);

    }

}

/* SPEECH BOX */
.speech-box {

    position: absolute;

    left: +20px;

    top: 120px;

    width: 210px;

    padding: 16px 18px;

    background: #ffffff;
    border-radius: 25px 25px 25px 8px;

    border-radius: 20px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);

    z-index: 10;

}

.speech-box::after {

    content: "";

    position: absolute;

    right: -14px;

    top: 50%;

    transform: translateY(-50%);

    border-top: 12px solid transparent;

    border-bottom: 12px solid transparent;

    border-left: 14px solid #ffffff;

}

.speech-box h3 {

    color: var(--primary);

    margin-bottom: 10px;

}

.speech-box p {

    color: #666;

    line-height: 1.7;

}

@keyframes fadeIn {

    from {

        opacity: 0;

        transform: translateY(40px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/* FLOATING DECOR */

.floating-pattern {

    position: absolute;

    width: 90px;

    height: 90px;

    border-radius: 50%;

    background: rgba(198, 156, 67, .15);

    animation: move 8s linear infinite;

}

.pattern1 {

    top: 120px;

    left: 6%;

}

.pattern2 {

    top: 300px;

    right: 8%;

}

.pattern3 {

    bottom: 70px;

    left: 45%;

}

@keyframes move {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-25px);

    }

    100% {

        transform: translateY(0);

    }

}

/* ==========================================
        QUICK EXPLORE
========================================== */

.quick-explore {

    padding: 110px 0;

}

.section-title {

    text-align: center;

    margin-bottom: 70px;

}

.section-title p {

    color: var(--secondary);

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 12px;

}

.section-title h2 {

    font-size: 42px;

    color: var(--primary);

}

.gold-line {

    width: 90px;

    height: 4px;

    background: var(--secondary);

    margin: 18px auto;

    border-radius: 30px;

}

.explore-grid {

    display: grid;

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

    gap: 30px;

}

.explore-card {

    background: #fff;

    border-radius: 25px;

    padding: 45px 30px;

    text-align: center;

    box-shadow: var(--shadow);

    transition: .4s;

}

.explore-card:hover {

    transform: translateY(-12px);

}

.explore-card i {

    font-size: 48px;

    color: var(--secondary);

    margin-bottom: 20px;

}

.explore-card h3 {

    color: var(--primary);

    margin-bottom: 15px;

}

.explore-card p {

    color: #666;

    line-height: 1.8;

}

/* ==========================================
        RESPONSIVE
========================================== */

@media(max-width:991px) {

    .hero-wrapper {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .hero-left h1 {

        font-size: 46px;

    }

    .hero-buttons {

        justify-content: center;

    }

    .guide-couple {

        width: 340px;

    }

    .explore-grid {

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

    }

    .speech-box {

        position: relative;

        left: auto;

        top: auto;

        margin: 20px auto;

    }

}

@media(max-width:576px) {

    .hero-left h1 {

        font-size: 34px;

    }

    .odia {

        font-size: 30px;

    }

        .guide-couple {
    
            width: 170%;
            max-width: 1100px;
    
            height: auto;
    
            position: relative;
    
            right: -140px;
            bottom: -40px;
    
            z-index: 2;
    
            animation: float 4s ease-in-out infinite;
    
        }

    .explore-grid {

        grid-template-columns: 1fr;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .btn-primary,

    .btn-outline {

        width: 100%;

        text-align: center;

    }

}
/* ==========================================
        ASK SUTRIKA SECTION
========================================== */

.ask-sutrika {

    padding: 120px 0;

    background: linear-gradient(180deg, #fff, #fff8ef);

}

.ask-wrapper {

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 60px;

    align-items: center;

}

.ask-left h3 {

    font-size: 40px;

    color: var(--primary);

    margin-bottom: 20px;

}

.ask-left p {

    color: #666;

    line-height: 1.9;

    margin-bottom: 35px;

    font-size: 17px;

}

/* SEARCH */

.search-box {

    display: flex;

    align-items: center;

    background: #fff;

    border-radius: 60px;

    padding: 12px;

    box-shadow: var(--shadow);

    margin-bottom: 35px;

}

.search-box i {

    color: var(--secondary);

    font-size: 20px;

    padding: 0 18px;

}

.search-box input {

    flex: 1;

    border: none;

    outline: none;

    font-size: 16px;

    background: none;

}

.search-box button {

    border: none;

    background: linear-gradient(135deg, #8d5524, #c69c43);

    color: #fff;

    padding: 14px 32px;

    border-radius: 40px;

    cursor: pointer;

    font-weight: 600;

    transition: .3s;

}

.search-box button:hover {

    transform: scale(1.05);

}

/* TAGS */

.popular-searches span {

    display: block;

    margin-bottom: 15px;

    color: var(--primary);

    font-weight: 600;

}

.tags {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}

.tags button {

    background: #fff;

    border: none;

    border-radius: 30px;

    padding: 10px 20px;

    cursor: pointer;

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

    transition: .3s;

}

.tags button:hover {

    background: var(--secondary);

    color: #fff;

    transform: translateY(-4px);

}

/* CHAT */

.ai-chat {

    background: #fff;

    border-radius: 30px;

    padding: 30px;

    box-shadow: var(--shadow);

}

.ai-msg {

    display: flex;

    gap: 18px;

    margin-bottom: 25px;

}

.avatar {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: linear-gradient(135deg, #8d5524, #c69c43);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    color: #fff;

}

.bubble {

    background: #f8f8f8;

    padding: 18px;

    border-radius: 20px;

    line-height: 1.8;

    color: #555;

    flex: 1;

}

.user-msg {

    display: flex;

    justify-content: flex-end;

    margin-bottom: 25px;

}

.user {

    background: #c69c43;

    color: #fff;

    max-width: 80%;

}

/* ==========================================
        RECOMMENDATIONS
========================================== */

.recommendations {

    padding: 120px 0;

}

.recommend-grid {

    display: grid;

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

    gap: 35px;

}

.recommend-card {

    background: #fff;

    border-radius: 28px;

    overflow: hidden;

    box-shadow: var(--shadow);

    transition: .4s;

}

.recommend-card:hover {

    transform: translateY(-12px);

}

.recommend-card img {

    width: 100%;

    height: 280px;

    object-fit: cover;

    transition: .5s;

}

.recommend-card:hover img {

    transform: scale(1.08);

}

.recommend-content {

    padding: 28px;

}

.recommend-content span {

    color: var(--secondary);

    font-weight: 600;

}

.recommend-content h3 {

    color: var(--primary);

    margin: 12px 0;

}

.recommend-content p {

    color: #666;

    line-height: 1.8;

    margin-bottom: 18px;

}

.recommend-content a {

    color: var(--secondary);

    text-decoration: none;

    font-weight: 600;

}

/* ==========================================
        HERITAGE STORY
========================================== */

.heritage-story {

    padding: 120px 0;

    background: #fffdf8;

}

.story-card {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    background: #fff;

    border-radius: 35px;

    overflow: hidden;

    box-shadow: var(--shadow);

}

.story-left {

    padding: 60px;

}

.story-left span {

    color: var(--secondary);

    font-weight: 600;

}

.story-left h2 {

    color: var(--primary);

    font-size: 40px;

    margin: 18px 0;

}

.story-left p {

    color: #666;

    line-height: 2;

    margin-bottom: 35px;

}

.story-right img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

/* ==========================================
        RESPONSIVE
========================================== */

@media(max-width:991px) {

    .ask-wrapper,

    .story-card {

        grid-template-columns: 1fr;

    }

    .recommend-grid {

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

    }

}

@media(max-width:576px) {

    .ask-left h3 {

        font-size: 30px;

    }

    .search-box {

        flex-direction: column;

        gap: 15px;

        border-radius: 25px;

    }

    .search-box input {

        width: 100%;

        padding: 10px;

    }

    .search-box button {

        width: 100%;

    }

    .tags {

        justify-content: center;

    }

    .recommend-grid {

        grid-template-columns: 1fr;

    }

    .story-left {

        padding: 35px;

    }

    .story-left h2 {

        font-size: 30px;

    }

}
/* ==========================================
        MEET THE ARTISANS
========================================== */

.guide-artisans {

    padding: 120px 0;
    background: #fff9f2;

}

.artisan-guide-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;

}

.artisan-guide-card {

    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: .4s;

}

.artisan-guide-card:hover {

    transform: translateY(-12px);

}

.artisan-guide-card img {

    width: 100%;
    height: 330px;
    object-fit: cover;
    transition: .5s;

}

.artisan-guide-card:hover img {

    transform: scale(1.08);

}

.artisan-content {

    padding: 30px;
    text-align: center;

}

.artisan-content h3 {

    color: var(--primary);
    margin-bottom: 10px;

}

.artisan-content p {

    color: #666;
    margin-bottom: 18px;

}

.artisan-content a {

    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;

}

/* ==========================================
        HERITAGE TIMELINE
========================================== */

.heritage-timeline {

    padding: 120px 0;
    background: #fff;

}

.timeline {

    max-width: 900px;
    margin: auto;
    position: relative;

}

.timeline::before {

    content: "";
    position: absolute;
    left: 25px;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--secondary);

}

.timeline-item {

    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;

}

.circle {

    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8d5524, #c69c43);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .15);

}

.timeline-item h3 {

    color: var(--primary);
    margin-bottom: 10px;

}

.timeline-item p {

    color: #666;
    line-height: 1.8;

}

/* ==========================================
            FAQ
========================================== */

.guide-faq {

    padding: 120px 0;
    background: #fffaf5;

}

.faq-container {

    max-width: 900px;
    margin: auto;

}

.faq-item {

    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    transition: .4s;

}

.faq-item:hover {

    transform: translateY(-5px);

}

.faq-item h3 {

    color: var(--primary);
    margin-bottom: 15px;

}

.faq-item p {

    color: #666;
    line-height: 1.8;

}

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

.guide-cta {

    padding: 120px 0;

}

.cta-box {

    background: linear-gradient(135deg, #6b3f24, #b8860b);
    color: #fff;
    border-radius: 35px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;

}

.cta-box::before {

    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    top: -80px;
    right: -80px;

}

.cta-box::after {

    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    bottom: -60px;
    left: -60px;

}

.cta-box h2 {

    font-size: 48px;
    margin-bottom: 20px;

}

.cta-box p {

    font-size: 18px;
    line-height: 1.9;
    max-width: 700px;
    margin: auto auto 35px;

}

.cta-box .btn-outline {

    border: 2px solid #fff;
    color: #fff;

}

.cta-box .btn-outline:hover {

    background: #fff;
    color: var(--primary);

}

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

footer {

    background: #4a2b18;
    color: #fff;
    padding: 70px 0 20px;

}

.footer-content {

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

}

.footer-content h3 {

    margin-bottom: 15px;

}

.footer-content h4 {

    margin-bottom: 18px;

}

.footer-content p {

    color: #ddd;
    line-height: 1.8;

}

.footer-content a {

    display: block;
    color: #ddd;
    text-decoration: none;
    margin-bottom: 12px;
    transition: .3s;

}

.footer-content a:hover {

    color: #f5d27d;
    padding-left: 6px;

}

.copyright {

    margin-top: 50px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 20px;
    color: #ddd;

}

/* ==========================================
        SCROLL ANIMATION
========================================== */

.explore-card,
.recommend-card,
.artisan-guide-card,
.faq-item,
.timeline-item {

    transition: .5s;

}

.explore-card:hover,
.recommend-card:hover,
.artisan-guide-card:hover {

    box-shadow: 0 20px 45px rgba(0, 0, 0, .18);

}

/* ==========================================
        CUSTOM SCROLLBAR
========================================== */

::-webkit-scrollbar {

    width: 10px;

}

::-webkit-scrollbar-track {

    background: #f6ede2;

}

::-webkit-scrollbar-thumb {

    background: #b8860b;
    border-radius: 20px;

}

::-webkit-scrollbar-thumb:hover {

    background: #8d5524;

}

/* ==========================================
        RESPONSIVE
========================================== */

@media(max-width:991px) {

    .artisan-guide-grid {

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

    }

    .footer-content {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .cta-box {

        padding: 60px 30px;

    }

    .cta-box h2 {

        font-size: 36px;

    }

}

@media(max-width:576px) {

    .artisan-guide-grid {

        grid-template-columns: 1fr;

    }

    .timeline::before {

        left: 20px;

    }

    .timeline-item {

        gap: 18px;

    }

    .circle {

        width: 42px;
        height: 42px;

    }

    .cta-box h2 {

        font-size: 28px;

    }

    .cta-box p {

        font-size: 16px;

    }

}
/* ==========================================
   GUIDE JS EFFECTS
========================================== */

.explore-card,
.recommend-card,
.artisan-guide-card,
.faq-item,
.timeline-item,
.story-card {

    opacity: 0;

    transform: translateY(50px);

    transition: .8s;

}

.show {

    opacity: 1;

    transform: translateY(0);

}


/* BACK TO TOP */

.backToTop {

    position: fixed;

    right: 30px;

    bottom: 30px;

    width: 55px;

    height: 55px;

    border: none;

    border-radius: 50%;

    background: #8b1e3f;

    color: white;

    font-size: 22px;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transition: .4s;

    z-index: 999;

}

.showTop {

    opacity: 1;

    visibility: visible;

}


/* BUTTON RIPPLE */

.btn-primary,
.btn-outline {

    position: relative;

    overflow: hidden;

}

.ripple {

    position: absolute;

    border-radius: 50%;

    transform: scale(0);

    animation: ripple .6s linear;

    background: rgba(255, 255, 255, .5);

}

@keyframes ripple {

    to {

        transform: scale(4);

        opacity: 0;

    }

}
/* ==========================================
FACT BOX
========================================== */

.fact-box {

    position: fixed;

    left: 25px;

    bottom: 25px;

    background: #8b1e3f;

    color: #fff;

    padding: 16px 20px;

    border-radius: 15px;

    width: 260px;

    font-size: 14px;

    line-height: 1.6;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .2);

    transform: translateY(120px);

    transition: .5s;

    z-index: 999;

}

.showFact {

    transform: translateY(0);

}

/* =========================================================
   SUTRIKA GUIDE — PREMIUM AI CHATBOT
   ========================================================= */

.ai-chat {

    position: relative;

    width: 100%;

    min-height: 520px;
    max-height: 560px;

    padding: 28px;

    overflow-y: auto;

    background:
        radial-gradient(circle at top right,
            rgba(198, 156, 67, 0.13),
            transparent 32%),
        linear-gradient(145deg,
            #fffdf8,
            #f8f0e4);

    border: 1px solid rgba(198, 156, 67, 0.28);

    border-top: 4px solid #c69c43;

    border-radius: 28px;

    box-shadow:
        0 20px 50px rgba(74, 43, 24, 0.12);

    scroll-behavior: smooth;
}


/* =========================================================
   SUBTLE HERITAGE PATTERN
   ========================================================= */

.ai-chat::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        url("../ASSETS/IMAGES/patterns/sambalpuri-pattern.png");

    background-size: 260px;

    opacity: 0.035;

    pointer-events: none;

    z-index: 0;
}


/* =========================================================
   CHAT MESSAGES
   ========================================================= */

.ai-msg,
.user-msg {

    position: relative;

    z-index: 1;

    animation: chatMessageIn 0.45s ease;

}


@keyframes chatMessageIn {

    from {

        opacity: 0;

        transform: translateY(12px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* =========================================================
   AI MESSAGE
   ========================================================= */

.ai-msg {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 22px;

}


/* =========================================================
   AI AVATAR
   ========================================================= */

.ai-msg .avatar {

    position: relative;

    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;

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

    border-radius: 16px;

    background:
        linear-gradient(135deg,
            #7a4529,
            #c69c43);

    color: #fff;

    font-size: 21px;

    box-shadow:
        0 8px 20px rgba(122, 69, 41, 0.22);

}


/* Small online indicator */

.ai-msg .avatar::after {

    content: "";

    position: absolute;

    right: -2px;
    bottom: -2px;

    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: #4f8a45;

    border: 2px solid #fffdf8;

}


/* =========================================================
   AI BUBBLE
   ========================================================= */

.ai-msg .bubble {

    position: relative;

    max-width: 78%;

    padding: 17px 20px;

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

    border: 1px solid rgba(198, 156, 67, 0.18);

    border-radius: 8px 20px 20px 20px;

    color: #55463c;

    font-size: 15px;

    line-height: 1.75;

    box-shadow:
        0 7px 20px rgba(74, 43, 24, 0.07);
}


/* Gold accent on AI bubble */

.ai-msg .bubble::before {

    content: "";

    position: absolute;

    left: -1px;
    top: 14px;

    width: 3px;
    height: 30px;

    border-radius: 0 4px 4px 0;

    background: #c69c43;
}


/* =========================================================
   USER MESSAGE
   ========================================================= */

.user-msg {

    display: flex;

    justify-content: flex-end;

    margin-bottom: 22px;

    padding-left: 60px;

}


.user-msg .bubble.user {

    max-width: 78%;

    padding: 15px 20px;

    background:
        linear-gradient(135deg,
            #8d5524,
            #b8863b);

    color: #fff;

    border-radius: 20px 8px 20px 20px;

    font-size: 15px;

    line-height: 1.65;

    box-shadow:
        0 8px 22px rgba(109, 66, 31, 0.18);

}


/* =========================================================
   SCROLLBAR
   ========================================================= */

.ai-chat::-webkit-scrollbar {

    width: 6px;

}


.ai-chat::-webkit-scrollbar-track {

    background: transparent;

}


.ai-chat::-webkit-scrollbar-thumb {

    background: rgba(198, 156, 67, 0.55);

    border-radius: 20px;

}


.ai-chat::-webkit-scrollbar-thumb:hover {

    background: #8d5524;

}


/* =========================================================
   CHAT EMPTY / SPACING
   ========================================================= */

.ai-chat .ai-msg:first-child {

    margin-top: 5px;

}


/* =========================================================
   PREMIUM HOVER
   ========================================================= */

.ai-msg .bubble:hover {

    box-shadow:
        0 10px 26px rgba(74, 43, 24, 0.10);

}


.user-msg .bubble.user:hover {

    transform: translateY(-2px);

}


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

@media (max-width: 991px) {

    .ai-chat {

        min-height: 460px;

        max-height: 520px;

        padding: 22px;

    }

}


@media (max-width: 576px) {

    .ai-chat {

        min-height: 430px;

        max-height: 500px;

        padding: 18px;

        border-radius: 22px;

    }


    .ai-msg {

        gap: 10px;

    }


    .ai-msg .avatar {

        flex-basis: 42px;

        width: 42px;
        height: 42px;

        border-radius: 13px;

        font-size: 18px;

    }


    .ai-msg .bubble,
    .user-msg .bubble.user {

        max-width: 88%;

        padding: 13px 15px;

        font-size: 14px;

    }


    .user-msg {

        padding-left: 25px;

    }

}

/* ==========================================
   SUTRIKA AI TYPING INDICATOR
   ========================================== */

.typing-bubble {

    display: flex;

    align-items: center;

    gap: 5px;

    min-width: 65px;

}


.typing-bubble span {

    width: 7px;
    height: 7px;

    background: #C69C43;

    border-radius: 50%;

    animation: sutrikaTyping 1.2s infinite ease-in-out;

}


.typing-bubble span:nth-child(2) {

    animation-delay: 0.15s;

}


.typing-bubble span:nth-child(3) {

    animation-delay: 0.30s;

}


@keyframes sutrikaTyping {

    0%,
    60%,
    100% {

        opacity: 0.3;

        transform: translateY(0);

    }

    30% {

        opacity: 1;

        transform: translateY(-4px);

    }

}






/* =========================================================
   SUTRIKA GUIDE - MODERN CHATBOT UI
========================================================= */

.ask-sutrika {
    padding: 100px 0 120px;
    background:
        radial-gradient(circle at 10% 20%,
            rgba(198, 156, 67, 0.10),
            transparent 30%),
        linear-gradient(180deg,
            #fffaf4,
            #f8efe3);
}


/* ===============================
   CHAT LAYOUT
================================ */

.chat-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 55px;
    align-items: stretch;
}


/* ===============================
   LEFT INTRO
================================ */

.chat-intro {
    padding: 35px 10px 35px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.chat-intro-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;

    padding: 9px 17px;

    border-radius: 30px;

    background: rgba(198, 156, 67, 0.12);

    color: #a87918;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 25px;
}


.chat-intro h3 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 46px;

    line-height: 1.15;

    color: #4a1024;

    margin-bottom: 22px;
}


.chat-intro>p {
    color: #6b625c;

    font-size: 17px;

    line-height: 1.9;

    max-width: 500px;

    margin-bottom: 30px;
}


/* ===============================
   CONVERSATION STARTERS
================================ */

.chat-suggestions {
    margin-top: 5px;
}


.chat-suggestions>p {
    color: #4a1024;

    font-weight: 700;

    margin-bottom: 14px;
}


.chat-suggestions button {
    display: block;

    width: fit-content;

    margin-bottom: 10px;

    padding: 11px 17px;

    border: 1px solid rgba(198, 156, 67, 0.35);

    border-radius: 25px;

    background: rgba(255, 255, 255, 0.75);

    color: #624536;

    font-size: 14px;

    cursor: pointer;

    transition: all 0.3s ease;
}


.chat-suggestions button:hover {
    background: #6b1e35;

    color: white;

    border-color: #6b1e35;

    transform: translateX(5px);
}


/* =========================================================
   CHAT WINDOW
========================================================= */

.sutrika-chat {

    height: 650px;

    background: #fff;

    border-radius: 28px;

    overflow: hidden;

    border: 1px solid rgba(198, 156, 67, 0.35);

    box-shadow:
        0 25px 60px rgba(74, 16, 36, 0.12),
        0 5px 20px rgba(0, 0, 0, 0.05);

    display: flex;

    flex-direction: column;
}


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

.chat-header {

    min-height: 88px;

    padding: 16px 22px;

    background:
        linear-gradient(135deg,
            #5a102b,
            #6b1e35);

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: white;
}


.chat-profile {
    display: flex;

    align-items: center;

    gap: 14px;
}


.chat-avatar {
    position: relative;

    width: 56px;

    height: 56px;

    flex-shrink: 0;
}


.chat-avatar img {
    width: 56px;

    height: 56px;

    object-fit: cover;

    border-radius: 50%;

    background: #fff9f2;

    padding: 4px;

    border: 2px solid #c69c43;
}


.online-dot {
    position: absolute;

    width: 13px;

    height: 13px;

    right: 0;

    bottom: 2px;

    background: #43b85c;

    border: 3px solid #6b1e35;

    border-radius: 50%;
}


.chat-profile-info h3 {
    color: white;

    font-size: 18px;

    margin: 0 0 4px;

    font-family: inherit;
}


.chat-profile-info p {
    margin: 0;

    color: rgba(255, 255, 255, 0.75);

    font-size: 12px;
}


.chat-profile-info p span {
    display: inline-block;

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #54c866;

    margin-right: 5px;
}


.chat-header-icon {
    width: 38px;

    height: 38px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    color: rgba(255, 255, 255, .8);

    transition: .3s;
}


.chat-header-icon:hover {
    background: rgba(255, 255, 255, .12);

    color: #c69c43;
}


/* =========================================================
   MESSAGE AREA
========================================================= */

.sutrika-chat .ai-chat {

    flex: 1;

    min-height: 0;

    overflow-y: auto;

    padding: 28px 24px;

    background:
        radial-gradient(circle at top left,
            rgba(198, 156, 67, .08),
            transparent 30%),
        #fbf7f1;

    display: flex;

    flex-direction: column;

    gap: 18px;
}


/* scrollbar */

.sutrika-chat .ai-chat::-webkit-scrollbar {
    width: 6px;
}


.sutrika-chat .ai-chat::-webkit-scrollbar-track {
    background: transparent;
}


.sutrika-chat .ai-chat::-webkit-scrollbar-thumb {
    background: #d2aa55;

    border-radius: 20px;
}


/* =========================================================
   AI MESSAGE
========================================================= */

.ai-msg {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin: 0;

    max-width: 88%;
}


.message-avatar {

    width: 38px;

    height: 38px;

    flex-shrink: 0;

    margin-top: 3px;
}


.message-avatar img {

    width: 38px;

    height: 38px;

    object-fit: cover;

    border-radius: 50%;

    background: #fff;

    padding: 3px;

    border: 1px solid #c69c43;
}


.message-content {

    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.sutrika-chat .bubble {

    flex: none;

    background: white;

    color: #51453f;

    padding: 14px 17px;

    border-radius: 6px 19px 19px 19px;

    line-height: 1.65;

    font-size: 14px;

    border: 1px solid rgba(198, 156, 67, .14);

    box-shadow: 0 4px 15px rgba(0, 0, 0, .04);

}


.message-time {

    font-size: 10px;

    color: #9b8f88;

    margin-top: 5px;

    padding-left: 4px;
}


/* =========================================================
   USER MESSAGE
========================================================= */

.sutrika-chat .user-msg {

    display: flex;

    justify-content: flex-end;

    margin: 0;

    max-width: 100%;
}


.sutrika-chat .user-msg .bubble {

    max-width: 75%;

    background:
        linear-gradient(135deg,
            #7b2944,
            #9a3c59);

    color: white;

    border-radius: 19px 6px 19px 19px;

    box-shadow: 0 6px 18px rgba(107, 30, 53, .18);
}


/* =========================================================
   CHAT INPUT
========================================================= */

.chat-input-area {

    min-height: 76px;

    padding: 12px 16px;

    background: #fff;

    border-top: 1px solid #eee3d5;

    display: flex;

    align-items: center;

    gap: 10px;
}


.chat-input {

    flex: 1;

    height: 48px;

    border: 1px solid #e4d8ca;

    border-radius: 28px;

    padding: 0 18px;

    outline: none;

    font-family: inherit;

    font-size: 14px;

    color: #4d4039;

    background: #faf7f3;

    transition: .3s;
}


.chat-input:focus {

    border-color: #c69c43;

    background: #fff;

    box-shadow: 0 0 0 3px rgba(198, 156, 67, .10);
}


.chat-input::placeholder {

    color: #9d938c;
}


.chat-attach {

    width: 42px;

    height: 42px;

    border: none;

    background: transparent;

    color: #8d7568;

    font-size: 17px;

    cursor: pointer;

    transition: .3s;
}


.chat-attach:hover {

    color: #a87918;

    transform: rotate(-10deg);
}


.chat-send {

    width: 46px;

    height: 46px;

    border: none;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #8d5524,
            #c69c43);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    box-shadow: 0 7px 18px rgba(141, 85, 36, .25);

    transition: .3s;
}


.chat-send:hover {

    transform: scale(1.08);

    box-shadow: 0 10px 24px rgba(141, 85, 36, .35);
}


.chat-send:active {

    transform: scale(.95);
}


/* =========================================================
   TYPING ANIMATION
========================================================= */

.typing-bubble {

    display: flex !important;

    align-items: center;

    gap: 5px;

    min-width: 60px;
}


.typing-bubble span {

    width: 7px;

    height: 7px;

    background: #b18a45;

    border-radius: 50%;

    animation: typingDots 1.4s infinite ease-in-out;
}


.typing-bubble span:nth-child(2) {

    animation-delay: .2s;
}


.typing-bubble span:nth-child(3) {

    animation-delay: .4s;
}


@keyframes typingDots {

    0%,
    60%,
    100% {

        transform: translateY(0);

        opacity: .45;

    }

    30% {

        transform: translateY(-5px);

        opacity: 1;

    }
}


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

@media(max-width:991px) {

    .chat-layout {

        grid-template-columns: 1fr;

    }

    .chat-intro {

        padding-right: 0;

        text-align: center;

        align-items: center;

    }

    .chat-suggestions {

        width: 100%;

    }

    .chat-suggestions button {

        margin-left: auto;

        margin-right: auto;

    }

}


@media(max-width:576px) {

    .ask-sutrika {

        padding: 70px 0;

    }

    .chat-intro h3 {

        font-size: 34px;

    }

    .sutrika-chat {

        height: 600px;

        border-radius: 20px;

    }

    .chat-header {

        min-height: 78px;

        padding: 12px 15px;

    }

    .chat-avatar,
    .chat-avatar img {

        width: 48px;

        height: 48px;

    }

    .sutrika-chat .ai-chat {

        padding: 20px 14px;

    }

    .ai-msg {

        max-width: 94%;

    }

    .sutrika-chat .user-msg .bubble {

        max-width: 82%;

    }

    .chat-input-area {

        padding: 10px;

    }

    .chat-attach {

        display: none;

    }

}

/* =========================================================
   SUTRIKA GUIDE - REAL CHAT UI
   WhatsApp / Instagram inspired
========================================================= */


/* CHAT LAYOUT */

.chat-layout {

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 50px;

    align-items: center;

}


/* =========================================================
   CHAT INTRO
========================================================= */

.chat-intro {

    padding: 20px 10px;

}


.chat-intro-tag {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 16px;

    border-radius: 30px;

    background: rgba(198, 156, 67, 0.12);

    color: #a87516;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.chat-intro h3 {

    font-size: 46px;

    line-height: 1.15;

    color: #6b3f24;

    margin: 25px 0 20px;

}


.chat-intro p {

    color: #666;

    font-size: 17px;

    line-height: 1.9;

    max-width: 520px;

}


/* =========================================================
   SUGGESTIONS
========================================================= */

.chat-suggestions {

    margin-top: 35px;

}


.chat-suggestions>p {

    font-size: 14px;

    font-weight: 700;

    color: #6b3f24;

    margin-bottom: 15px;

}


.chat-suggestions button {

    display: block;

    width: 100%;

    max-width: 430px;

    margin-bottom: 10px;

    padding: 13px 18px;

    text-align: left;

    border: 1px solid rgba(198, 156, 67, 0.35);

    border-radius: 14px;

    background: #fff;

    color: #6b3f24;

    cursor: pointer;

    transition: all 0.3s ease;

}


.chat-suggestions button:hover {

    background: #fff7e8;

    border-color: #c69c43;

    transform: translateX(5px);

}


/* =========================================================
   MAIN CHAT CONTAINER
========================================================= */

.sutrika-chat {

    width: 100%;

    height: 650px;

    background: #fff;

    border-radius: 28px;

    overflow: hidden;

    border: 1px solid rgba(198, 156, 67, 0.25);

    box-shadow:
        0 25px 70px rgba(75, 43, 24, 0.15);

    display: flex;

    flex-direction: column;

}


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

.chat-header {

    min-height: 82px;

    padding: 15px 20px;

    background:
        linear-gradient(135deg,
            #5a142b,
            #711d38);

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #fff;

}


/* PROFILE */

.chat-profile {

    display: flex;

    align-items: center;

    gap: 13px;

}


.chat-avatar {

    position: relative;

    width: 52px;

    height: 52px;

    border-radius: 50%;

    padding: 3px;

    background: linear-gradient(135deg,
            #c69c43,
            #f4d47d);

}


.chat-avatar img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    background: #fff;

}


.online-dot {

    position: absolute;

    width: 13px;

    height: 13px;

    background: #4caf50;

    border: 2px solid #711d38;

    border-radius: 50%;

    right: 0;

    bottom: 1px;

}


/* PROFILE TEXT */

.chat-profile-info h3 {

    margin: 0;

    color: #fff;

    font-size: 17px;

    font-weight: 700;

}


.chat-profile-info p {

    margin: 4px 0 0;

    color: rgba(255, 255, 255, 0.75);

    font-size: 12px;

}


.chat-profile-info p span {

    display: inline-block;

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #5bd36a;

    margin-right: 5px;

}


/* HEADER ICON */

.chat-header-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    cursor: pointer;

    transition: 0.3s;

}


.chat-header-icon:hover {

    background: rgba(255, 255, 255, 0.12);

}


/* =========================================================
   CHAT MESSAGE AREA
========================================================= */

.ai-chat {

    flex: 1;

    padding: 25px 22px;

    background:
        linear-gradient(180deg,
            #fffaf4,
            #fff5e9);

    overflow-y: auto;

    scroll-behavior: smooth;

}


/* SCROLLBAR */

.ai-chat::-webkit-scrollbar {

    width: 6px;

}


.ai-chat::-webkit-scrollbar-thumb {

    background: #c69c43;

    border-radius: 20px;

}


.ai-chat::-webkit-scrollbar-track {

    background: transparent;

}


/* =========================================================
   AI MESSAGE
========================================================= */

.ai-msg {

    display: flex;

    align-items: flex-end;

    gap: 10px;

    margin-bottom: 18px;

    animation: chatMessageIn 0.3s ease;

}


.message-avatar {

    width: 38px;

    height: 38px;

    flex-shrink: 0;

    border-radius: 50%;

    overflow: hidden;

    background: #fff;

    border: 2px solid #c69c43;

}


.message-avatar img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


/* AI BUBBLE */

.ai-bubble {

    max-width: 78%;

    padding: 13px 16px;

    background: #fff;

    color: #4d4039;

    border-radius: 18px 18px 18px 5px;

    box-shadow:
        0 4px 14px rgba(70, 40, 20, 0.08);

    font-size: 14px;

    line-height: 1.65;

}


/* AI NAME */

.ai-message-time {

    margin-top: 8px;

    font-size: 10px;

    color: #a28c7d;

}


/* =========================================================
   USER MESSAGE
========================================================= */

.user-msg {

    display: flex;

    justify-content: flex-end;

    margin-bottom: 18px;

    animation: chatMessageIn 0.3s ease;

}


.user-bubble {

    max-width: 72%;

    padding: 13px 17px;

    background:
        linear-gradient(135deg,
            #8d5524,
            #c69c43);

    color: #fff;

    border-radius: 18px 18px 5px 18px;

    font-size: 14px;

    line-height: 1.55;

    box-shadow:
        0 5px 15px rgba(141, 85, 36, 0.18);

}


/* =========================================================
   TYPING INDICATOR
========================================================= */

.typing-bubble {

    display: flex;

    align-items: center;

    gap: 5px;

    padding: 15px 18px;

}


.typing-bubble span {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #b8893d;

    animation: typingDot 1.2s infinite ease-in-out;

}


.typing-bubble span:nth-child(2) {

    animation-delay: 0.15s;

}


.typing-bubble span:nth-child(3) {

    animation-delay: 0.3s;

}


@keyframes typingDot {

    0%,
    60%,
    100% {

        transform: translateY(0);

        opacity: 0.4;

    }

    30% {

        transform: translateY(-5px);

        opacity: 1;

    }

}


/* =========================================================
   INPUT AREA
========================================================= */

.chat-input-area {

    min-height: 72px;

    padding: 12px 15px;

    display: flex;

    align-items: center;

    gap: 10px;

    background: #fff;

    border-top: 1px solid rgba(107, 63, 36, 0.08);

}


/* INPUT */

.chat-input {

    flex: 1;

    height: 48px;

    border: 1px solid #eadcca;

    outline: none;

    border-radius: 25px;

    padding: 0 18px;

    font-size: 14px;

    color: #4d4039;

    background: #fffaf5;

    transition: 0.3s;

}


.chat-input:focus {

    border-color: #c69c43;

    background: #fff;

    box-shadow:
        0 0 0 3px rgba(198, 156, 67, 0.10);

}


.chat-input::placeholder {

    color: #a99b91;

}


/* SEND BUTTON */

.chat-send {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    border: none;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #8d5524,
            #c69c43);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: all 0.3s ease;

    box-shadow:
        0 7px 18px rgba(141, 85, 36, 0.25);

}


.chat-send:hover {

    transform: scale(1.08);

}


.chat-send:active {

    transform: scale(0.95);

}


/* ATTACHMENT */

.chat-attach {

    width: 40px;

    height: 40px;

    border: none;

    background: transparent;

    color: #9b8577;

    cursor: pointer;

    font-size: 16px;

}


/* =========================================================
   MESSAGE ANIMATION
========================================================= */

@keyframes chatMessageIn {

    from {

        opacity: 0;

        transform: translateY(8px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .chat-layout {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .chat-intro {

        text-align: center;

    }


    .chat-intro p {

        margin-left: auto;

        margin-right: auto;

    }


    .chat-suggestions button {

        margin-left: auto;

        margin-right: auto;

    }


    .sutrika-chat {

        height: 600px;

    }

}


@media (max-width: 576px) {

    .chat-intro h3 {

        font-size: 32px;

    }


    .sutrika-chat {

        height: 570px;

        border-radius: 20px;

    }


    .chat-header {

        padding: 12px 14px;

    }


    .chat-avatar {

        width: 45px;

        height: 45px;

    }


    .ai-bubble,
    .user-bubble {

        max-width: 85%;

        font-size: 13px;

    }


    .message-avatar {

        width: 34px;

        height: 34px;

    }


    .chat-attach {

        display: none;

    }

}
/* ==========================================
   ATTACHMENT PREVIEW
========================================== */

.attachment-preview {
    display: none;

    align-items: center;

    gap: 10px;

    max-width: 230px;

    padding: 7px 10px;

    background: #fff7eb;

    border: 1px solid #e5d2ad;

    border-radius: 14px;

    margin-left: 5px;

    position: relative;
}


/* IMAGE PREVIEW */

.attachment-preview img {
    width: 52px;

    height: 52px;

    object-fit: cover;

    border-radius: 10px;

    border: 1px solid #d5b46a;
}


/* FILE NAME */

.attachment-preview .attachment-name {
    max-width: 125px;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

    font-size: 12px;

    color: #60483b;
}


/* REMOVE BUTTON */

.attachment-remove {
    width: 22px;

    height: 22px;

    border: none;

    border-radius: 50%;

    background: #6b1e35;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    font-size: 11px;

    flex-shrink: 0;
}


.attachment-remove:hover {
    background: #4a1024;
}

/* ==========================================
   SENT IMAGE IN CHAT
========================================== */

.sent-image {

    display: block;

    width: 230px;

    max-width: 100%;

    max-height: 280px;

    object-fit: cover;

    border-radius: 14px;

    margin-bottom: 9px;

}

/* ==========================================
   SUTRIKA GUIDE — PREMIUM CHAT HEADER
========================================== */

.sutrika-chat .chat-header {
    position: relative;
    background:
        linear-gradient(135deg,
            #5b142d 0%,
            #741d3b 50%,
            #5b142d 100%);

    padding: 16px 20px;

    min-height: 76px;

    display: flex;

    align-items: center;

    border-bottom: 1px solid rgba(198, 156, 67, 0.45);

    box-shadow:
        0 5px 18px rgba(74, 16, 36, 0.18);

    z-index: 5;
}


/* subtle gold line */

.sutrika-chat .chat-header::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 2px;

    background:
        linear-gradient(90deg,
            transparent,
            #c69c43,
            #e1bd6a,
            #c69c43,
            transparent);

}


/* ==========================================
   GUIDE PROFILE IMAGE
========================================== */

.sutrika-chat .chat-avatar {

    width: 50px;

    height: 50px;

    flex-shrink: 0;

    border-radius: 50%;

    padding: 3px;

    background: #fff;

    border: 2px solid #c69c43;

    box-shadow:
        0 0 0 3px rgba(198, 156, 67, 0.18),
        0 4px 12px rgba(0, 0, 0, 0.18);

    position: relative;
}


/* ==========================================
   ONLINE DOT
========================================== */

.sutrika-chat .chat-status-dot {

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: #48b96b;

    border: 2px solid #741d3b;

    position: absolute;

    bottom: 1px;

    right: 1px;

    box-shadow:
        0 0 0 3px rgba(72, 185, 107, 0.15);

}


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

.sutrika-chat .chat-header-info h3 {

    color: #fff;

    font-size: 17px;

    font-weight: 600;

    margin: 0;

    letter-spacing: 0.2px;
}


.sutrika-chat .chat-header-info p {

    color: #e9c978;

    font-size: 12px;

    margin: 3px 0 0;

    letter-spacing: 0.2px;
}


/* ==========================================
   THREE DOT MENU
========================================== */

.sutrika-chat .chat-header-icon {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    border: none;

    background: transparent;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: 0.3s ease;

}


.sutrika-chat .chat-header-icon:hover {

    background: rgba(255, 255, 255, 0.12);

    color: #e0b85d;

    transform: scale(1.08);

}

/* ==========================================
   PREMIUM CHAT BUBBLES
========================================== */

.sutrika-chat .ai-msg {

    animation:
        chatMessageIn 0.35s ease both;

}


.sutrika-chat .ai-msg .bubble {

    border-radius:
        6px 20px 20px 20px;

    padding:
        15px 18px;

    line-height:
        1.7;

    box-shadow:
        0 5px 18px rgba(64, 39, 25, 0.07);

}


.sutrika-chat .user-msg {

    animation:
        chatMessageIn 0.35s ease both;

}


.sutrika-chat .user-msg .bubble {

    border-radius:
        20px 6px 20px 20px;

    padding:
        13px 17px;

    line-height:
        1.6;

    box-shadow:
        0 6px 20px rgba(107, 30, 53, 0.20);

}

/* ==========================================
   PREMIUM MESSAGE INPUT
========================================== */

.sutrika-chat .chat-input-area {

    background:
        rgba(255, 255, 255, 0.96);

    border-top:
        1px solid rgba(198, 156, 67, 0.20);

    padding:
        13px 16px;

    box-shadow:
        0 -5px 18px rgba(73, 45, 28, 0.05);

}


.sutrika-chat .chat-input {

    background:
        #fbf7f1;

    border:
        1px solid #e3d4c3;

    box-shadow:
        inset 0 1px 3px rgba(80, 50, 30, 0.03);

}


.sutrika-chat .chat-input:focus {

    border-color:
        #c69c43;

    background:
        #fff;

    box-shadow:
        0 0 0 4px rgba(198, 156, 67, 0.10);

}


/* attachment */

.sutrika-chat .chat-attach:hover {

    background:
        rgba(198, 156, 67, 0.10);

    border-radius:
        50%;

}


/* send button */

.sutrika-chat .chat-send {

    background:
        linear-gradient(135deg,
            #8d5524,
            #c69c43);

    box-shadow:
        0 6px 18px rgba(141, 85, 36, 0.28);

}


.sutrika-chat .chat-send:hover {

    transform:
        scale(1.08) translateY(-1px);

}

/* ==========================================
   SUTRIKA AI — SENDING STATE
========================================== */

.chat-send:disabled {

    opacity: 0.65;

    cursor: not-allowed;

    transform: none !important;

}


.chat-send.sending {

    position: relative;

}


.chat-send.sending::after {

    content: "";

    width: 14px;

    height: 14px;

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

    border-top-color: #ffffff;

    border-radius: 50%;

    animation:
        sutrikaSendSpin 0.7s linear infinite;

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

}


.chat-send.sending i {

    opacity: 0;

}


@keyframes sutrikaSendSpin {

    to {

        transform:
            translate(-50%, -50%) rotate(360deg);

    }

}

/* ==========================================
   SUTRIKA AI RESPONSE FORMATTING
========================================== */

.ai-bubble .ai-heading {

    font-size: 16px;

    font-weight: 700;

    color: #6b1e35;

    margin-bottom: 8px;

    line-height: 1.4;

}


.ai-bubble strong {

    color: #6b1e35;

    font-weight: 700;

}


.ai-bubble .ai-bullet {

    padding-left: 4px;

    margin: 5px 0;

    line-height: 1.65;

}


.ai-bubble .ai-number {

    margin: 5px 0;

    line-height: 1.65;

}


.ai-bubble .ai-gap {

    height: 7px;

}

/* ==========================================
   AI RESPONSE WIDTH
========================================== */

.ai-msg .bubble {

    max-width: 78%;

    font-size: 14px;

    line-height: 1.7;

}

/* =========================================================
   SUTRIKA GUIDE — REAL CHAT UI
   ========================================================= */

.ai-chat {
    position: relative;
    height: 620px;
    padding: 0 !important;
    background: #fffaf5;
    border: 1px solid rgba(107, 63, 36, 0.12);
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(75, 45, 25, 0.12),
        0 4px 15px rgba(75, 45, 25, 0.06);

    display: flex;
    flex-direction: column;
}


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

.chat-header {
    flex-shrink: 0;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 18px 22px;

    background:
        linear-gradient(135deg,
            #6b3f24,
            #8d5524);

    color: #fff;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


/* AI PROFILE IMAGE */

.chat-header .chat-avatar {
    position: relative;

    width: 48px;
    height: 48px;

    min-width: 48px;

    border-radius: 50%;

    overflow: hidden;

    border: 2px solid #d7b56d;

    background: #fff;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.2);
}


.chat-header .chat-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* ONLINE DOT */

.chat-header .online-dot {
    position: absolute;

    right: -1px;
    bottom: -1px;

    width: 13px;
    height: 13px;

    background: #49b96c;

    border: 2px solid #6b3f24;

    border-radius: 50%;
}


/* HEADER TEXT */

.chat-header-info {
    display: flex;
    flex-direction: column;

    gap: 3px;
}


.chat-header-info h3 {
    margin: 0;

    font-size: 17px;

    font-weight: 700;

    letter-spacing: 0.2px;

    color: #fff;
}


.chat-header-info span {
    font-size: 12px;

    color: #f3dfb2;

    letter-spacing: 0.3px;
}


/* =========================================================
   MESSAGE AREA
   ========================================================= */

.ai-chat-messages {
    flex: 1;

    overflow-y: auto;

    padding: 24px 22px;

    scroll-behavior: smooth;

    background:
        radial-gradient(circle at top right,
            rgba(198, 156, 67, 0.08),
            transparent 35%),
        #fffaf5;
}


/* SCROLLBAR */

.ai-chat-messages::-webkit-scrollbar {
    width: 6px;
}

.ai-chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.ai-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(107, 63, 36, 0.22);

    border-radius: 20px;
}


/* =========================================================
   AI MESSAGE
   ========================================================= */

.ai-msg {
    display: flex;

    align-items: flex-end;

    gap: 10px;

    margin-bottom: 18px;

    max-width: 88%;
}


.ai-msg .message-avatar {
    width: 38px;
    height: 38px;

    min-width: 38px;

    border-radius: 50%;

    overflow: hidden;

    background: #fff;

    border: 1px solid #d7b56d;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.10);
}


.ai-msg .message-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* AI BUBBLE */

.ai-bubble {
    position: relative;

    background: #ffffff;

    color: #4b4038;

    padding: 14px 17px;

    border-radius:
        6px 20px 20px 20px;

    border: 1px solid rgba(107, 63, 36, 0.08);

    box-shadow:
        0 4px 14px rgba(75, 45, 25, 0.07);

    font-size: 14px;

    line-height: 1.7;

    max-width: 100%;
}


/* AI NAME */

.ai-message-time {
    margin-top: 8px;

    font-size: 10px;

    color: #a87918;

    font-weight: 600;

    letter-spacing: 0.3px;
}


/* =========================================================
   USER MESSAGE
   ========================================================= */

.user-msg {
    display: flex;

    justify-content: flex-end;

    margin-bottom: 18px;

    padding-left: 12%;
}


.user-bubble {
    max-width: 78%;

    padding: 13px 17px;

    background:
        linear-gradient(135deg,
            #8d5524,
            #6b3f24);

    color: #fff;

    border-radius:
        20px 6px 20px 20px;

    font-size: 14px;

    line-height: 1.6;

    box-shadow:
        0 5px 15px rgba(107, 63, 36, 0.18);
}


/* =========================================================
   AI RESPONSE FORMATTING
   ========================================================= */

.ai-heading {
    display: block;

    margin-bottom: 7px;

    color: #6b3f24;

    font-size: 16px;

    font-weight: 700;
}


.ai-bubble strong {
    color: #6b3f24;

    font-weight: 700;
}


.ai-bullet {
    margin: 5px 0;

    padding-left: 2px;
}


.ai-number {
    margin: 5px 0;
}


.ai-gap {
    height: 8px;
}


/* =========================================================
   TYPING INDICATOR
   ========================================================= */

.typing-bubble {
    display: flex;

    align-items: center;

    gap: 5px;

    min-width: 62px;

    padding: 14px 16px;
}


.typing-bubble span {
    width: 7px;
    height: 7px;

    background: #b58b43;

    border-radius: 50%;

    animation:
        sutrikaTyping 1.3s infinite ease-in-out;
}


.typing-bubble span:nth-child(2) {
    animation-delay: 0.15s;
}


.typing-bubble span:nth-child(3) {
    animation-delay: 0.30s;
}


@keyframes sutrikaTyping {

    0%,
    60%,
    100% {
        transform: translateY(0);

        opacity: 0.45;
    }

    30% {
        transform: translateY(-5px);

        opacity: 1;
    }
}


/* =========================================================
   SENT IMAGE
   ========================================================= */

.sent-image {
    display: block;

    max-width: 240px;
    max-height: 220px;

    margin-bottom: 8px;

    border-radius: 14px;

    object-fit: cover;

    border: 1px solid rgba(255, 255, 255, 0.25);
}


/* =========================================================
   CHAT INPUT AREA
   ========================================================= */

.chat-input-area {
    flex-shrink: 0;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 14px 16px;

    background: #ffffff;

    border-top: 1px solid rgba(107, 63, 36, 0.10);
}


/* ATTACHMENT BUTTON */

#attachmentButton {
    width: 42px;
    height: 42px;

    min-width: 42px;

    display: flex;

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

    border: none;

    background: #f8f0e4;

    color: #8d5524;

    border-radius: 50%;

    cursor: pointer;

    transition: 0.25s ease;
}


#attachmentButton:hover {
    background: #ead8b7;

    transform: rotate(-8deg) scale(1.05);
}


/* TEXT INPUT */

.chat-input {
    flex: 1;

    height: 44px;

    padding: 0 17px;

    border: 1px solid rgba(107, 63, 36, 0.12);

    border-radius: 24px;

    outline: none;

    background: #faf7f2;

    color: #40372f;

    font-size: 14px;

    transition: 0.25s ease;
}


.chat-input:focus {
    border-color: #c69c43;

    background: #fff;

    box-shadow:
        0 0 0 3px rgba(198, 156, 67, 0.12);
}


.chat-input::placeholder {
    color: #a69a90;
}


/* SEND BUTTON */

.chat-send {
    width: 44px;
    height: 44px;

    min-width: 44px;

    display: flex;

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

    border: none;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #8d5524,
            #c69c43);

    color: #fff;

    cursor: pointer;

    font-size: 15px;

    box-shadow:
        0 5px 15px rgba(107, 63, 36, 0.20);

    transition: 0.25s ease;
}


.chat-send:hover {
    transform: translateY(-2px) scale(1.05);

    box-shadow:
        0 8px 20px rgba(107, 63, 36, 0.25);
}


.chat-send:active {
    transform: scale(0.95);
}


.chat-send:disabled {
    opacity: 0.55;

    cursor: not-allowed;

    transform: none;
}


/* =========================================================
   ATTACHMENT PREVIEW
   ========================================================= */

#attachmentPreview {
    position: absolute;

    left: 16px;
    right: 16px;

    bottom: 74px;

    display: none;

    align-items: center;

    gap: 10px;

    padding: 10px 12px;

    background: rgba(255, 255, 255, 0.97);

    border: 1px solid rgba(107, 63, 36, 0.12);

    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12);

    z-index: 20;
}


#attachmentPreview img {
    width: 52px;
    height: 52px;

    border-radius: 10px;

    object-fit: cover;
}


.attachment-name {
    flex: 1;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;

    font-size: 12px;

    color: #6b3f24;
}


.attachment-remove {
    width: 30px;
    height: 30px;

    border: none;

    border-radius: 50%;

    background: #f5e8dc;

    color: #8d5524;

    cursor: pointer;
}


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

@media (max-width: 576px) {

    .ai-chat {
        height: 600px;

        border-radius: 20px;
    }


    .chat-header {
        padding: 15px 16px;
    }


    .ai-chat-messages {
        padding: 18px 14px;
    }


    .ai-msg {
        max-width: 94%;
    }


    .user-msg {
        padding-left: 5%;
    }


    .user-bubble {
        max-width: 88%;
    }


    .chat-input-area {
        padding: 10px;
    }

}
/* =========================================================
   FINAL SUTRIKA CHAT POLISH
   ========================================================= */

/* Keep the chatbot as one clean fixed panel */
.sutrika-chat {
    position: relative;
    height: 620px;
    max-height: 620px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Header stays fixed at the top */
.sutrika-chat .chat-header {
    flex-shrink: 0;
    position: relative;
    z-index: 5;
}

/* Only the message section scrolls */
.sutrika-chat .ai-chat-messages {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 24px 22px;
}

/* Keep AI replies compact */
.sutrika-chat .ai-msg {
    max-width: 88%;
    margin-bottom: 18px;
}

/* Don't let long AI answers become huge */
.sutrika-chat .ai-bubble {
    max-width: 620px;
    width: fit-content;
    padding: 14px 17px;
    font-size: 14px;
    line-height: 1.65;
}

/* User messages stay on the right */
.sutrika-chat .user-msg {
    display: flex;
    justify-content: flex-end;
    padding-left: 10%;
    margin-bottom: 18px;
}

.sutrika-chat .user-bubble {
    max-width: 75%;
    width: fit-content;
}

/* Input always remains at the bottom */
.sutrika-chat .chat-input-area {
    flex-shrink: 0;
    position: relative;
    z-index: 5;
}

/* Cleaner scrollbar */
.sutrika-chat .ai-chat-messages::-webkit-scrollbar {
    width: 5px;
}

.sutrika-chat .ai-chat-messages::-webkit-scrollbar-thumb {
    background: #c69c43;
    border-radius: 20px;
}

.sutrika-chat .ai-chat-messages::-webkit-scrollbar-track {
    background: transparent;
}


/* =========================================================
   FINAL MOBILE FIX
   ========================================================= */

@media (max-width: 576px) {

    .sutrika-chat {
        height: 600px;
        max-height: 600px;
        border-radius: 20px;
    }

    .sutrika-chat .ai-chat-messages {
        padding: 18px 14px;
    }

    .sutrika-chat .ai-msg {
        max-width: 94%;
    }

    .sutrika-chat .ai-bubble {
        max-width: 82%;
        font-size: 13px;
    }

    .sutrika-chat .user-msg {
        padding-left: 5%;
    }

    .sutrika-chat .user-bubble {
        max-width: 85%;
    }
}

/* =========================================================
   SUTRIKA AI PRODUCT RECOMMENDATIONS
   ========================================================= */

.sutrika-product-section {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(197, 162, 74, 0.25);
}

.sutrika-product-title {
    display: flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 12px;

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

    letter-spacing: 0.8px;
    color: #c5a24a;
}

.sutrika-product-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sutrika-product-card {
    display: flex;
    gap: 12px;

    padding: 10px;

    border-radius: 13px;

    background: #fffdf9;

    border: 1px solid rgba(197, 162, 74, 0.25);

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.sutrika-product-card:hover {
    transform: translateY(-2px);

    border-color: rgba(197, 162, 74, 0.55);

    background: rgba(255, 255, 255, 0.07);
}

.sutrika-product-image {
    width: 72px;
    height: 82px;

    object-fit: cover;

    border-radius: 9px;

    flex-shrink: 0;
}

.sutrika-product-info {
    flex: 1;
    min-width: 0;
}

.sutrika-product-info h4 {
    margin: 2px 0 4px;

    font-size: 15px;
    line-height: 1.3;

    color: #4A1024;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.sutrika-product-category {
    margin: 0 0 10px;

    font-size: 11px;

    color: #6B5A50;
    font-weight: 500;
}

.sutrika-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 8px;
}

.sutrika-product-price {
    font-size: 14px;
    font-weight: 700;

    color: #c5a24a;
}

.sutrika-view-product {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    padding: 6px 10px;

    border-radius: 7px;

    background: #6b1e35;

    color: #f6f0e6;

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

    text-decoration: none;

    transition: all 0.2s ease;
}

.sutrika-view-product:hover {
    background: #8b2947;

    color: #ffffff;

    transform: translateX(2px);
}


/* MOBILE */

@media (max-width: 576px) {

    .sutrika-product-card {
        padding: 9px;
    }

    .sutrika-product-image {
        width: 62px;
        height: 72px;
    }

    .sutrika-product-info h4 {
        font-size: 13px;
    }

    .sutrika-product-price {
        font-size: 13px;
    }

    .sutrika-view-product {
        padding: 5px 8px;
        font-size: 10px;
    }

}


/* =========================================================
   SUTRIKA GUIDE — PREMIUM HERO MOTION
   No HTML changes required
   ========================================================= */

/* HERO BASE */
.guide-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* ---------------------------------------------------------
   1. SUBTLE BACKGROUND ZOOM
--------------------------------------------------------- */

.guide-hero::before {
    content: "";
    position: absolute;
    inset: -5%;
    background:
        radial-gradient(circle at 78% 45%,
            rgba(198, 156, 67, 0.20),
            transparent 30%),
        radial-gradient(circle at 15% 20%,
            rgba(255, 255, 255, 0.55),
            transparent 25%);
    z-index: -2;
    animation: guideHeroBreath 12s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes guideHeroBreath {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.06);
    }
}


/* ---------------------------------------------------------
   2. VERY SUBTLE LIGHT SWEEP
--------------------------------------------------------- */

.guide-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: -35%;
    width: 25%;
    height: 100%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.12),
            transparent);

    transform: skewX(-15deg);
    animation: guideLightSweep 9s ease-in-out infinite;

    pointer-events: none;
    z-index: 4;
}

@keyframes guideLightSweep {

    0% {
        left: -35%;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    45% {
        left: 115%;
        opacity: 0;
    }

    100% {
        left: 115%;
        opacity: 0;
    }
}


/* ---------------------------------------------------------
   3. HERO CONTENT ENTRANCE
--------------------------------------------------------- */

.hero-left {
    animation: guideTextReveal 1.1s cubic-bezier(.22, .61, .36, 1) both;
}

@keyframes guideTextReveal {

    from {
        opacity: 0;
        transform: translateX(-45px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}


/* ---------------------------------------------------------
   4. TAG APPEARS FIRST
--------------------------------------------------------- */

.hero-tag {
    animation:
        guideTagReveal 0.8s ease-out 0.15s both,
        guideTagGlow 4s ease-in-out 1.5s infinite;
}

@keyframes guideTagReveal {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes guideTagGlow {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    }

    50% {
        box-shadow:
            0 10px 35px rgba(198, 156, 67, 0.20);
    }
}


/* ---------------------------------------------------------
   5. HEADING DELAY
--------------------------------------------------------- */

.hero-left h1 {
    animation: guideHeadingReveal 1s ease-out 0.35s both;
}

@keyframes guideHeadingReveal {

    from {
        opacity: 0;
        transform: translateY(25px);
        letter-spacing: 3px;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: normal;
    }
}


/* ---------------------------------------------------------
   6. DESCRIPTION
--------------------------------------------------------- */

.hero-left>p {
    animation: guideParagraphReveal 0.9s ease-out 0.65s both;
}

@keyframes guideParagraphReveal {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ---------------------------------------------------------
   7. BUTTONS
--------------------------------------------------------- */

.hero-buttons {
    animation: guideButtonsReveal 0.9s ease-out 0.85s both;
}

@keyframes guideButtonsReveal {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ---------------------------------------------------------
   8. AI COUPLE — SLIGHTLY MORE PREMIUM FLOAT
--------------------------------------------------------- */

.guide-couple {
    animation:
        guideCoupleEntrance 1.2s cubic-bezier(.22, .61, .36, 1) both,
        guideCoupleFloat 5s ease-in-out 1.2s infinite;
}

@keyframes guideCoupleEntrance {

    from {
        opacity: 0;
        transform: translateX(45px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes guideCoupleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


/* ---------------------------------------------------------
   9. AI GLOW
--------------------------------------------------------- */

.hero-glow {
    animation:
        guideGlowAppear 1.2s ease-out both,
        guideGlowPulse 5s ease-in-out 1.2s infinite;
}

@keyframes guideGlowAppear {

    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes guideGlowPulse {

    0%,
    100% {
        opacity: 0.65;
        transform: scale(1);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}


/* ---------------------------------------------------------
   10. SPEECH BOX — INDEPENDENT FLOAT
--------------------------------------------------------- */

.speech-box {
    animation:
        guideSpeechReveal 0.9s ease-out 1s both,
        guideSpeechFloat 4s ease-in-out 2s infinite;
}

@keyframes guideSpeechReveal {

    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes guideSpeechFloat {

    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -8px;
    }
}


/* ---------------------------------------------------------
   11. FLOATING HERITAGE CIRCLES
--------------------------------------------------------- */

.floating-pattern {
    animation:
        guidePatternFloat 8s ease-in-out infinite,
        guidePatternPulse 5s ease-in-out infinite;
}

@keyframes guidePatternFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}

@keyframes guidePatternPulse {

    0%,
    100% {
        opacity: 0.12;
    }

    50% {
        opacity: 0.22;
    }
}


/* ---------------------------------------------------------
   12. BUTTON MICRO-MOTION
--------------------------------------------------------- */

.hero-buttons .btn-primary,
.hero-buttons .btn-outline {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.hero-buttons .btn-primary:hover,
.hero-buttons .btn-outline:hover {
    transform: translateY(-5px);
}


/* ---------------------------------------------------------
   13. ACCESSIBILITY
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .guide-hero::before,
    .guide-hero::after,
    .hero-left,
    .hero-tag,
    .hero-left h1,
    .hero-left>p,
    .hero-buttons,
    .guide-couple,
    .hero-glow,
    .speech-box,
    .floating-pattern {
        animation: none !important;
    }

}
/* =========================================================
   SUTRIKA GUIDE — SPEECH BOX POSITION FIX
   ========================================================= */

.speech-box {
    left: 35px !important;
    top: 105px !important;
    width: 190px !important;
    z-index: 20;
}

/* Speech arrow */
.speech-box::after {
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
}


/* ==========================================================
   SUTRIKA GUIDE — TABLET HERO RESPONSIVE FIX
   SAME COMPACT STYLE AS HOME + COLLECTION + ARTISAN
   ========================================================== */

@media (min-width: 601px) and (max-width: 1024px) {

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

    .guide-hero {

        width: 100% !important;

        min-height: 420px !important;

        height: 420px !important;

        max-height: 420px !important;

        padding: 0 !important;

        overflow: hidden !important;

        display: flex !important;

        align-items: center !important;

    }


    /* =========================================
       HERO WRAPPER
       KEEP TEXT + IMAGE SIDE BY SIDE
       ========================================= */

    .guide-hero .hero-wrapper {

        width: 100% !important;

        height: 100% !important;

        display: grid !important;

        grid-template-columns: 1fr 1fr !important;

        gap: 10px !important;

        align-items: center !important;

        padding: 20px 5% !important;

        box-sizing: border-box !important;

    }


    /* =========================================
       LEFT CONTENT
       ========================================= */

    .guide-hero .hero-left {

        width: 100% !important;

        max-width: 100% !important;

        text-align: left !important;

        display: flex !important;

        flex-direction: column !important;

        justify-content: center !important;

        align-items: flex-start !important;

        z-index: 5 !important;

    }


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

    .guide-hero .hero-tag {

        padding: 7px 12px !important;

        margin-bottom: 12px !important;

        font-size: 9px !important;

        line-height: 1.2 !important;

        white-space: nowrap !important;

    }


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

    .guide-hero .hero-left h1 {

        font-size: clamp(30px,
                4vw,
                42px) !important;

        line-height: 1.08 !important;

        margin-bottom: 12px !important;

    }


    /* =========================================
       ODIA TEXT
       ========================================= */

    .guide-hero .odia {

        font-size: 24px !important;

        margin-bottom: 6px !important;

    }


    /* =========================================
       DESCRIPTION
       ========================================= */

    .guide-hero .hero-left>p {

        font-size: 11px !important;

        line-height: 1.55 !important;

        max-width: 330px !important;

        margin-bottom: 16px !important;

    }


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

    .guide-hero .hero-buttons {

        display: flex !important;

        flex-direction: row !important;

        flex-wrap: nowrap !important;

        justify-content: flex-start !important;

        align-items: center !important;

        gap: 9px !important;

    }


    .guide-hero .btn-primary,
    .guide-hero .btn-outline {

        padding: 9px 16px !important;

        font-size: 9px !important;

        white-space: nowrap !important;

        border-radius: 25px !important;

    }


    /* =========================================
       RIGHT SIDE
       ========================================= */

    .guide-hero .hero-right {

        width: 100% !important;

        height: 100% !important;

        min-height: 0 !important;

        position: relative !important;

        display: flex !important;

        justify-content: center !important;

        align-items: center !important;

        overflow: visible !important;

    }


    /* =========================================
       GOLD GLOW
       ========================================= */

    .guide-hero .hero-glow {

        width: 300px !important;

        height: 300px !important;

        max-width: 100% !important;

    }


    /* =========================================
       AI COUPLE
       ========================================= */

    .guide-hero .guide-couple {

        width: 125% !important;

        max-width: 520px !important;

        height: auto !important;

        right: -5% !important;

        bottom: auto !important;

        position: relative !important;

        z-index: 2 !important;

    }


    /* =========================================
       SPEECH BOX
       ========================================= */

    .guide-hero .speech-box {

        width: 145px !important;

        padding: 10px 12px !important;

        left: 0 !important;

        top: 48% !important;

        font-size: 9px !important;

        z-index: 10 !important;

    }


    .guide-hero .speech-box h3 {

        font-size: 12px !important;

        margin-bottom: 5px !important;

    }


    .guide-hero .speech-box p {

        font-size: 9px !important;

        line-height: 1.4 !important;

    }


    /* =========================================
       FLOATING DECORATIONS
       ========================================= */

    .guide-hero .floating-pattern {

        width: 50px !important;

        height: 50px !important;

    }


    .guide-hero .pattern1 {

        top: 60px !important;

        left: 4% !important;

    }


    .guide-hero .pattern2 {

        top: 100px !important;

        right: 4% !important;

    }


    .guide-hero .pattern3 {

        bottom: 20px !important;

        left: 45% !important;

    }

}

































/* ==========================================================
   SUTRIKA GUIDE
   COMPLETE MOBILE PHONE RESPONSIVE STYLING
   ========================================================== */


/* ==========================================================
   GENERAL MOBILE FIX
   ========================================================== */

@media (max-width: 600px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }

    body {
        margin: 0;
        padding: 0;
    }


    /* ======================================================
       HERO — LANDSCAPE MOBILE
       ====================================================== */

    .guide-hero {

        width: 100% !important;

        /*
           LANDSCAPE HERO
           NOT 100vh
           NOT 600px
           NOT 650px
        */
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;

        padding: 0 !important;
        margin: 0 !important;

        display: flex !important;
        align-items: center !important;

        overflow: hidden !important;

        position: relative !important;

        box-sizing: border-box !important;
    }


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

    .guide-hero {

        background:
            radial-gradient(circle at 85% 45%,
                rgba(198, 156, 67, 0.28),
                transparent 35%),
            linear-gradient(135deg,
                #fffaf4,
                #f7e7d2) !important;
    }


    /* ======================================================
       HERITAGE PATTERN
       ====================================================== */

    .guide-hero .hero-overlay {

        position: absolute !important;

        inset: 0 !important;

        width: 100% !important;
        height: 100% !important;

        opacity: 0.045 !important;

        pointer-events: none !important;

        z-index: 1 !important;
    }


    /* ======================================================
       HERO WRAPPER
       KEEP LEFT + RIGHT SIDE BY SIDE
       ====================================================== */

    .guide-hero .hero-wrapper {

        width: 100% !important;
        height: 100% !important;

        display: grid !important;

        /*
           LEFT = TEXT
           RIGHT = AI COUPLE
        */
        grid-template-columns: 52% 48% !important;

        gap: 0 !important;

        align-items: center !important;

        padding: 15px 4% !important;

        box-sizing: border-box !important;

        position: relative !important;

        z-index: 5 !important;
    }


    /* ======================================================
       LEFT SIDE
       ====================================================== */

    .guide-hero .hero-left {

        width: 100% !important;

        max-width: 100% !important;

        min-width: 0 !important;

        height: auto !important;

        display: flex !important;

        flex-direction: column !important;

        justify-content: center !important;

        align-items: flex-start !important;

        text-align: left !important;

        padding: 0 !important;

        margin: 0 !important;

        z-index: 10 !important;
    }


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

    .guide-hero .hero-tag {

        display: inline-block !important;

        width: fit-content !important;

        max-width: 100% !important;

        box-sizing: border-box !important;

        padding: 5px 8px !important;

        margin: 0 0 8px 0 !important;

        border-radius: 20px !important;

        background: rgba(255, 255, 255, 0.90) !important;

        color: #c69c43 !important;

        font-family: "Poppins", sans-serif !important;

        font-size: 7px !important;

        font-weight: 600 !important;

        line-height: 1.2 !important;

        letter-spacing: 0.4px !important;

        white-space: nowrap !important;

        box-shadow:
            0 5px 15px rgba(0, 0, 0, 0.08) !important;
    }


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

    .guide-hero .hero-left h1 {

        width: 100% !important;

        max-width: 190px !important;

        margin: 0 0 8px 0 !important;

        padding: 0 !important;

        font-family: "Playfair Display", serif !important;

        font-size: 22px !important;

        font-weight: 600 !important;

        line-height: 1.04 !important;

        letter-spacing: 0 !important;

        color: #6b3f24 !important;
    }


    /* ======================================================
       HELLO / ODIA TEXT
       ====================================================== */

    .guide-hero .odia {

        display: inline-block !important;

        font-size: 15px !important;

        line-height: 1 !important;

        margin: 0 0 3px 0 !important;

        color: #6b3f24 !important;
    }


    /* GOLD "SUTRIKA GUIDE" */

    .guide-hero .hero-left h1 .gold {

        color: #c69c43 !important;

        font-size: inherit !important;

        line-height: inherit !important;
    }


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

    .guide-hero .hero-left>p {

        width: 100% !important;

        max-width: 185px !important;

        margin: 0 0 10px 0 !important;

        padding: 0 !important;

        color: #555 !important;

        font-family: "Poppins", sans-serif !important;

        font-size: 8px !important;

        line-height: 1.45 !important;

        font-weight: 400 !important;
    }


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

    .guide-hero .hero-buttons {

        width: 100% !important;

        display: flex !important;

        flex-direction: row !important;

        flex-wrap: nowrap !important;

        justify-content: flex-start !important;

        align-items: center !important;

        gap: 5px !important;

        margin: 0 !important;

        padding: 0 !important;
    }


    /* BOTH HERO BUTTONS */

    .guide-hero .hero-buttons .btn-primary,
    .guide-hero .hero-buttons .btn-outline {

        width: auto !important;

        min-width: 0 !important;

        max-width: none !important;

        padding: 6px 9px !important;

        margin: 0 !important;

        border-radius: 18px !important;

        font-family: "Poppins", sans-serif !important;

        font-size: 7px !important;

        font-weight: 600 !important;

        line-height: 1.1 !important;

        white-space: nowrap !important;

        text-align: center !important;

        box-sizing: border-box !important;
    }


    /* ======================================================
       RIGHT SIDE
       ====================================================== */

    .guide-hero .hero-right {

        width: 100% !important;

        height: 100% !important;

        min-height: 0 !important;

        max-height: 100% !important;

        position: relative !important;

        display: flex !important;

        justify-content: center !important;

        align-items: center !important;

        overflow: visible !important;

        padding: 0 !important;

        margin: 0 !important;
    }


    /* ======================================================
       GOLD GLOW
       ====================================================== */

    .guide-hero .hero-glow {

        width: 190px !important;

        height: 190px !important;

        max-width: 100% !important;

        max-height: 100% !important;

        position: absolute !important;

        right: -10px !important;

        top: 50% !important;

        transform: translateY(-50%) !important;

        filter: blur(16px) !important;

        opacity: 0.7 !important;

        z-index: 1 !important;
    }


    /* ======================================================
       AI COUPLE
       ====================================================== */

    .guide-hero .guide-couple {

        width: 180px !important;

        max-width: 180px !important;

        height: auto !important;

        position: absolute !important;

        right: -18px !important;

        bottom: -5px !important;

        z-index: 3 !important;

        margin: 0 !important;
    }


    /* ======================================================
       SPEECH BOX
       ====================================================== */

    .guide-hero .speech-box {

        position: absolute !important;

        width: 105px !important;

        max-width: 105px !important;

        box-sizing: border-box !important;

        padding: 7px 8px !important;

        left: -2px !important;

        top: 48% !important;

        transform: translateY(-50%) !important;

        margin: 0 !important;

        background: #ffffff !important;

        border-radius: 12px !important;

        box-shadow:
            0 7px 18px rgba(0, 0, 0, 0.13) !important;

        z-index: 10 !important;
    }


    .guide-hero .speech-box h3 {

        margin: 0 0 4px 0 !important;

        color: #6b3f24 !important;

        font-family: "Playfair Display", serif !important;

        font-size: 9px !important;

        line-height: 1.15 !important;
    }


    .guide-hero .speech-box p {

        margin: 0 !important;

        color: #666 !important;

        font-family: "Poppins", sans-serif !important;

        font-size: 6.5px !important;

        line-height: 1.35 !important;
    }


    /* SPEECH ARROW */

    .guide-hero .speech-box::after {

        right: -7px !important;

        top: 50% !important;

        transform: translateY(-50%) !important;

        border-top: 6px solid transparent !important;

        border-bottom: 6px solid transparent !important;

        border-left: 7px solid #ffffff !important;
    }


    /* ======================================================
       FLOATING DECORATIONS
       ====================================================== */

    .guide-hero .floating-pattern {

        width: 30px !important;

        height: 30px !important;

        opacity: 0.35 !important;
    }


    .guide-hero .pattern1 {

        top: 20px !important;

        left: 4% !important;
    }


    .guide-hero .pattern2 {

        top: 35px !important;

        right: 5% !important;
    }


    .guide-hero .pattern3 {

        bottom: 15px !important;

        left: 48% !important;
    }


    /* ======================================================
       QUICK EXPLORE
       ====================================================== */

    .quick-explore {

        padding: 55px 15px !important;

        box-sizing: border-box !important;
    }


    .section-title {

        margin-bottom: 32px !important;

        padding: 0 5px !important;
    }


    .section-title p {

        font-size: 11px !important;

        margin-bottom: 7px !important;

        letter-spacing: 0.8px !important;
    }


    .section-title h2 {

        font-size: 27px !important;

        line-height: 1.15 !important;

        margin: 0 !important;
    }


    .gold-line {

        width: 55px !important;

        height: 3px !important;

        margin: 12px auto !important;
    }


    /* EXPLORE CARDS */

    .explore-grid {

        display: grid !important;

        grid-template-columns: 1fr 1fr !important;

        gap: 12px !important;
    }


    .explore-card {

        padding: 24px 12px !important;

        border-radius: 17px !important;

        box-shadow:
            0 8px 22px rgba(0, 0, 0, 0.08) !important;
    }


    .explore-card i {

        font-size: 27px !important;

        margin-bottom: 10px !important;
    }


    .explore-card h3 {

        font-size: 15px !important;

        margin-bottom: 7px !important;
    }


    .explore-card p {

        font-size: 10px !important;

        line-height: 1.5 !important;

        margin: 0 !important;
    }


    /* ======================================================
       ASK SUTRIKA
       ====================================================== */

    .ask-sutrika {

        padding: 60px 15px !important;

        box-sizing: border-box !important;
    }


    .chat-layout {

        display: flex !important;

        flex-direction: column !important;

        gap: 25px !important;

        width: 100% !important;
    }


    .chat-intro {

        width: 100% !important;

        padding: 0 !important;

        text-align: center !important;

        align-items: center !important;
    }


    .chat-intro h3 {

        font-size: 27px !important;

        line-height: 1.15 !important;

        margin-bottom: 12px !important;
    }


    .chat-intro p {

        font-size: 12px !important;

        line-height: 1.65 !important;
    }


    .chat-suggestions {

        width: 100% !important;

        display: flex !important;

        flex-direction: column !important;

        align-items: center !important;

        gap: 8px !important;
    }


    .chat-suggestions button {

        width: 100% !important;

        max-width: 300px !important;

        padding: 9px 12px !important;

        font-size: 10px !important;
    }


    /* ======================================================
       CHAT WINDOW
       ====================================================== */

    .sutrika-chat {

        width: 100% !important;

        height: 500px !important;

        min-height: 500px !important;

        max-height: 500px !important;

        border-radius: 20px !important;

        overflow: hidden !important;
    }


    .chat-header {

        min-height: 65px !important;

        padding: 9px 12px !important;

        box-sizing: border-box !important;
    }


    .chat-avatar,
    .chat-avatar img {

        width: 40px !important;

        height: 40px !important;
    }


    .chat-profile-info h3 {

        font-size: 13px !important;
    }


    .chat-profile-info p {

        font-size: 8px !important;
    }


    .sutrika-chat .ai-chat {

        height: calc(100% - 65px) !important;

        min-height: 0 !important;

        max-height: none !important;

        padding: 15px 10px !important;

        border-radius: 0 !important;

        box-sizing: border-box !important;
    }


    .ai-msg {

        gap: 7px !important;

        margin-bottom: 15px !important;
    }


    .ai-msg .avatar {

        flex: 0 0 34px !important;

        width: 34px !important;

        height: 34px !important;
    }


    .ai-msg .bubble,
    .user-msg .bubble.user {

        max-width: 88% !important;

        padding: 10px 11px !important;

        font-size: 11px !important;

        line-height: 1.55 !important;
    }


    .user-msg {

        padding-left: 20px !important;

        margin-bottom: 15px !important;
    }


    /* CHAT INPUT */

    .chat-input-area {

        padding: 8px !important;

        gap: 5px !important;
    }


    .chat-input {

        min-width: 0 !important;

        font-size: 11px !important;
    }


    .chat-send,
    .chat-attach {

        flex-shrink: 0 !important;
    }


    /* ======================================================
       RECOMMENDATIONS
       ====================================================== */

    .recommendations {

        padding: 60px 15px !important;

        box-sizing: border-box !important;
    }


    .recommend-grid {

        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 18px !important;
    }


    .recommend-card {

        border-radius: 19px !important;

        overflow: hidden !important;
    }


    .recommend-card img {

        width: 100% !important;

        height: 210px !important;

        object-fit: cover !important;
    }


    .recommend-content {

        padding: 20px !important;
    }


    .recommend-content span {

        font-size: 10px !important;
    }


    .recommend-content h3 {

        font-size: 19px !important;

        margin: 8px 0 !important;
    }


    .recommend-content p {

        font-size: 11px !important;

        line-height: 1.6 !important;

        margin-bottom: 12px !important;
    }


    .recommend-content a {

        font-size: 11px !important;
    }


    /* ======================================================
       HERITAGE STORY
       ====================================================== */

    .heritage-story {

        padding: 60px 15px !important;

        box-sizing: border-box !important;
    }


    .story-card {

        display: flex !important;

        flex-direction: column !important;

        gap: 0 !important;

        border-radius: 20px !important;

        overflow: hidden !important;
    }


    .story-left {

        padding: 25px 20px !important;

        order: 1 !important;
    }


    .story-left span {

        font-size: 11px !important;
    }


    .story-left h2 {

        font-size: 26px !important;

        line-height: 1.2 !important;

        margin: 10px 0 14px !important;
    }


    .story-left p {

        font-size: 12px !important;

        line-height: 1.7 !important;

        margin-bottom: 20px !important;
    }


    .story-left .btn-primary {

        padding: 10px 18px !important;

        font-size: 11px !important;
    }


    .story-right {

        order: 2 !important;

        width: 100% !important;

        height: 220px !important;
    }


    .story-right img {

        width: 100% !important;

        height: 220px !important;

        object-fit: cover !important;
    }


    /* ======================================================
       MEET THE ARTISANS
       ====================================================== */

    .guide-artisans {

        padding: 60px 15px !important;

        box-sizing: border-box !important;
    }


    .artisan-guide-grid {

        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 18px !important;
    }


    .artisan-guide-card {

        border-radius: 20px !important;

        overflow: hidden !important;
    }


    .artisan-guide-card img {

        width: 100% !important;

        height: 230px !important;

        object-fit: cover !important;
    }


    .artisan-content {

        padding: 20px !important;
    }


    .artisan-content h3 {

        font-size: 19px !important;

        margin-bottom: 7px !important;
    }


    .artisan-content p {

        font-size: 11px !important;

        margin-bottom: 12px !important;
    }


    .artisan-content a {

        font-size: 11px !important;
    }


    /* ======================================================
       HERITAGE TIMELINE
       ====================================================== */

    .heritage-timeline {

        padding: 60px 15px !important;

        box-sizing: border-box !important;
    }


    .timeline {

        width: 100% !important;

        max-width: 100% !important;
    }


    .timeline::before {

        left: 20px !important;

        width: 2px !important;
    }


    .timeline-item {

        display: flex !important;

        gap: 14px !important;

        margin-bottom: 32px !important;

        align-items: flex-start !important;
    }


    .circle {

        width: 40px !important;

        height: 40px !important;

        min-width: 40px !important;

        font-size: 13px !important;

        z-index: 2 !important;
    }


    .timeline-item h3 {

        font-size: 17px !important;

        margin-bottom: 6px !important;
    }


    .timeline-item p {

        font-size: 11px !important;

        line-height: 1.6 !important;

        margin: 0 !important;
    }


    /* ======================================================
       FAQ
       ====================================================== */

    .guide-faq {

        padding: 60px 15px !important;

        box-sizing: border-box !important;
    }


    .faq-container {

        width: 100% !important;

        max-width: 100% !important;
    }


    .faq-item {

        padding: 20px !important;

        border-radius: 16px !important;

        margin-bottom: 14px !important;
    }


    .faq-item h3 {

        font-size: 16px !important;

        line-height: 1.3 !important;

        margin-bottom: 8px !important;
    }


    .faq-item p {

        font-size: 11px !important;

        line-height: 1.65 !important;

        margin: 0 !important;
    }


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

    .guide-cta {

        padding: 55px 15px !important;

        box-sizing: border-box !important;
    }


    .cta-box {

        padding: 40px 20px !important;

        border-radius: 22px !important;

        box-sizing: border-box !important;
    }


    .cta-box h2 {

        font-size: 26px !important;

        line-height: 1.2 !important;

        margin-bottom: 13px !important;
    }


    .cta-box p {

        font-size: 12px !important;

        line-height: 1.65 !important;

        margin-bottom: 22px !important;
    }


    .cta-box .hero-buttons {

        display: flex !important;

        flex-direction: column !important;

        align-items: center !important;

        gap: 9px !important;
    }


    .cta-box .btn-primary,
    .cta-box .btn-outline {

        width: 100% !important;

        max-width: 230px !important;

        box-sizing: border-box !important;

        padding: 10px 16px !important;

        font-size: 11px !important;

        text-align: center !important;
    }


    /* ======================================================
       FACT BOX
       ====================================================== */

    .fact-box {

        left: 12px !important;

        right: 12px !important;

        bottom: 12px !important;

        width: auto !important;

        max-width: none !important;

        box-sizing: border-box !important;

        padding: 12px 14px !important;

        border-radius: 12px !important;

        font-size: 10px !important;

        line-height: 1.5 !important;
    }


    /* ======================================================
       BACK TO TOP
       ====================================================== */

    .backToTop {

        right: 14px !important;

        bottom: 14px !important;

        width: 43px !important;

        height: 43px !important;

        font-size: 17px !important;
    }


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

    footer {

        width: 100% !important;

        padding: 50px 15px 18px !important;

        box-sizing: border-box !important;

        overflow: hidden !important;
    }


    footer .footer-content {

        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 28px !important;

        text-align: center !important;
    }


    footer .footer-content h3,
    footer .footer-content h4 {

        font-size: 17px !important;

        margin-bottom: 10px !important;
    }


    footer .footer-content p,
    footer .footer-content a {

        font-size: 11px !important;

        line-height: 1.7 !important;
    }


    footer .copyright {

        margin-top: 30px !important;

        padding-top: 15px !important;

        font-size: 10px !important;

        line-height: 1.5 !important;
    }
}


/* ==========================================================
   390px AND BELOW
   ========================================================== */

@media (max-width: 390px) {

    .guide-hero {

        height: 285px !important;

        min-height: 285px !important;

        max-height: 285px !important;
    }


    .guide-hero .hero-wrapper {

        grid-template-columns: 53% 47% !important;

        padding: 12px 3% !important;
    }


    .guide-hero .hero-tag {

        font-size: 6.5px !important;

        padding: 4px 7px !important;
    }


    .guide-hero .hero-left h1 {

        font-size: 20px !important;

        max-width: 170px !important;
    }


    .guide-hero .odia {

        font-size: 14px !important;
    }


    .guide-hero .hero-left>p {

        font-size: 7.5px !important;

        max-width: 170px !important;

        line-height: 1.4 !important;
    }


    .guide-hero .hero-buttons {

        gap: 4px !important;
    }


    .guide-hero .hero-buttons .btn-primary,
    .guide-hero .hero-buttons .btn-outline {

        padding: 5px 7px !important;

        font-size: 6.5px !important;
    }


    .guide-hero .guide-couple {

        width: 165px !important;

        max-width: 165px !important;

        right: -20px !important;

        bottom: -4px !important;
    }


    .guide-hero .speech-box {

        width: 95px !important;

        max-width: 95px !important;

        left: -2px !important;

        padding: 6px 7px !important;
    }


    .guide-hero .speech-box h3 {

        font-size: 8px !important;
    }


    .guide-hero .speech-box p {

        font-size: 6px !important;
    }


    .section-title h2 {

        font-size: 24px !important;
    }


    .explore-grid {

        gap: 9px !important;
    }


    .explore-card {

        padding: 20px 9px !important;
    }


    .explore-card i {

        font-size: 24px !important;
    }


    .explore-card h3 {

        font-size: 14px !important;
    }


    .explore-card p {

        font-size: 9px !important;
    }
}


/* ==========================================================
   350px AND BELOW
   ========================================================== */

@media (max-width: 350px) {

    .guide-hero {

        height: 275px !important;

        min-height: 275px !important;

        max-height: 275px !important;
    }


    .guide-hero .hero-wrapper {

        grid-template-columns: 54% 46% !important;

        padding: 10px 3% !important;
    }


    .guide-hero .hero-left h1 {

        font-size: 18px !important;

        max-width: 155px !important;
    }


    .guide-hero .odia {

        font-size: 12px !important;
    }


    .guide-hero .hero-left>p {

        font-size: 7px !important;

        max-width: 150px !important;
    }


    .guide-hero .guide-couple {

        width: 150px !important;

        max-width: 150px !important;

        right: -20px !important;
    }


    .guide-hero .speech-box {

        width: 85px !important;

        max-width: 85px !important;

        padding: 5px 6px !important;
    }


    .guide-hero .speech-box h3 {

        font-size: 7px !important;
    }


    .guide-hero .speech-box p {

        font-size: 5.5px !important;
    }


    .guide-hero .hero-buttons .btn-primary,
    .guide-hero .hero-buttons .btn-outline {

        padding: 4px 6px !important;

        font-size: 6px !important;
    }


    .section-title h2 {

        font-size: 22px !important;
    }


    .recommend-card img {

        height: 190px !important;
    }


    .story-right,
    .story-right img {

        height: 190px !important;
    }


    .artisan-guide-card img {

        height: 210px !important;
    }


    .cta-box h2 {

        font-size: 23px !important;
    }
}





























