/* ======== 0. RESET & GLOBAL STYLES ======== */
:root {
    --primary-color: #4A148C;
    --secondary-color: #7B1FA2;
    --dark-color: #333;
    --light-bg: #F9F9F9;
    --text-dark: #333;
    --text-light: #fff;
    --border-color: #E0E0E0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-type: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #777;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-light {
    background-color: #fff;
    color: var(--text-dark);
    border: 1px solid #fff;
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.5rem 1rem;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* ======== 1. TOP ANNOUNCEMENT BAR ======== */
.top-announcement-bar {
    background-color: var(--dark-color);
    color: var(--text-light);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ======== 2. HEADER ======== */
.header {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    /* position: sticky; <-- દૂર કર્યું */
    z-index: 1000;
}

.navbar {
    display: grid;
    /* 3-કોલમ લેઆઉટ */
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 150px;
    /* હેડરની ઊંચાઈ */
    padding: 1rem 0;
}

/* ડાબી બાજુનો લોગો */
.nav-logo-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* ડાબી બાજુ */
}

.nav-logo-left img {
    height: 150px;
    /* લોગોની ઊંચાઈ */
    width: auto;
}

/* વચ્ચેનો કોન્ટેક્ટ */
.nav-center-contact {
    text-align: center;
    color: var(--text-dark);
}

.nav-center-contact p {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.nav-center-contact .blink-phone {
    font-size: 3rem;
    /* મોટો ફોન્ટ */
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    animation: blink-animation 1.5s infinite;
    /* બ્લિંક એનિમેશન */
}

/* બ્લિંકિંગ એનિમેશન */
@keyframes blink-animation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

/* જમણી બાજુનો લોગો */
.nav-logo-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* જમણી બાજુ */
}

.nav-logo-right img {
    height: 150px;
    /* લોગોની ઊંચાઈ */
    width: auto;
}

/* --- રિસ્પોન્સિવ હેડર --- */
@media(max-width: 768px) {
    .navbar {
        grid-template-columns: 1fr;
        /* મોબાઇલ પર એકબીજાની નીચે */
        gap: 1rem;
        min-height: auto;
        padding: 1.5rem 0;
    }

    .nav-logo-left,
    .nav-center-contact,
    .nav-logo-right {
        justify-content: center;
        /* બધું સેન્ટરમાં */
    }

    .nav-center-contact {
        order: -1;
        /* કોન્ટેક્ટ નંબર સૌથી ઉપર */
    }

    .nav-center-contact .blink-phone {
        font-size: 1.4rem;
    }
}

/* ======== 3. HERO SLIDER ======== */
.hero-slider {
    position: relative;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
}

.slide {
    width: 100%;
    flex-shrink: 0;
    color: var(--text-light);
    height: 0;
    padding-bottom: 28.57%;
    /* (400/1400) Aspect Ratio */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--primary-color);
}

.slide-1 {
    background-image: url('images/Banner-1.webp');
}

.slide-2 {
    background-image: url('images/Banner-3.webp');
}

.slide-3 {
    background-image: url('images/Banner-4.webp');
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #fff;
}

/* ======== 4. TICKER (Scrolling Line) ======== */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: #f4f4f4;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.ticker {
    white-space: nowrap;
    display: inline-block;
    animation: ticker-scroll 30s linear infinite;
}

.ticker span {
    display: inline-block;
    padding-right: 50px;
    color: #555;
    font-size: 0.9rem;
}

.ticker span i {
    color: var(--secondary-color);
    margin-right: 8px;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ======== 5. GEMSTONE COLLECTION (Categories) - Scroller ======== */
.categories {
    background-color: #fff;
}

.category-grid {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 1rem 0.5rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-grid::-webkit-scrollbar {
    display: none;
}

.category-item {
    flex-basis: 19%;
    flex-shrink: 0;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-icon-bg {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    margin-bottom: 0;
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.category-icon-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.category-item span {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-dark);
    padding: 1rem 0.75rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4.5em;
}

.category-grid {
    cursor: grab;
    cursor: -webkit-grab;
    user-select: none;
}

.category-grid.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

@media(max-width: 992px) {
    .category-grid {
        gap: 1rem;
    }

    .category-item {
        flex-basis: 31%;
    }
}

@media(max-width: 768px) {
    .category-item {
        flex-basis: 48%;
    }
}

@media(max-width: 480px) {
    .category-item {
        flex-basis: 60%;
    }
}

/* ======== 6. TRUST BADGES ======== */
.trust-badges {
    background-color: var(--light-bg);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    justify-items: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 150px;
}

.trust-item .trust-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.trust-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    line-height: 1.4;
}

@media(max-width: 992px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media(max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* ======== 7. STYLE STATEMENT ======== */
.style-statement {
    background-color: #fff;
}

.style-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.style-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.style-card:hover {
    transform: scale(1.02);
}

.style-card.card-large {
    min-height: 350px;
}

.style-card-content {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.style-card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

@media(max-width: 768px) {
    .style-grid {
        grid-template-columns: 1fr;
    }

    .style-card.card-large {
        min-height: 250px;
    }

    .style-card-content {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ======== 8. YOUR STYLE, YOUR BUDGET ======== */
.budget-section {
    background-color: var(--light-bg);
}

.budget-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.budget-card {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.budget-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.budget-card img {
    width: 60%;
    height: auto;
    object-fit: cover;
}

.budget-info {
    width: 40%;
    background-color: var(--primary-color);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    text-align: center;
}

.budget-info span {
    font-size: 1rem;
    font-weight: 400;
}

.budget-info strong {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
}

@media(max-width: 992px) {
    .budget-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .budget-grid {
        grid-template-columns: 1fr;
    }
}

/* ======== 9. SHOP BY INTENTION ======== */
.intention-section {
    background-color: #fff;
}

.intention-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.intention-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.intention-card:hover {
    transform: scale(1.03);
}

.intention-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
}

.intention-overlay h3 {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

@media(max-width: 992px) {
    .intention-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .intention-card {
        height: 250px;
    }
}

@media(max-width: 768px) {
    .intention-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intention-overlay h3 {
        font-size: 0.9rem;
    }
}

/* ======== 10. FOUNDER'S MESSAGE ======== */
.founder-message {
    /* HTML માંથી background-image આવશે */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 450px;
    position: relative;
    padding: 4rem 0;
}

.founder-content-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 400px;
}

.founder-message-box {
    flex-basis: 50%;
    position: relative;
}

.message-overlay {
    background: rgba(0, 0, 0, 0.65);
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 100%;
    color: var(--text-light);
    text-align: right;
}

.founder-quote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.founder-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    color: var(--primary-color);
}

.founder-title {
    font-size: 0.85rem;
    opacity: 0.8;
}

@media(max-width: 992px) {
    .founder-message-box {
        flex-basis: 70%;
    }

    .message-overlay {
        text-align: center;
    }
}

@media(max-width: 768px) {
    .founder-message {
        min-height: 350px;
    }

    .founder-content-wrapper {
        min-height: 300px;
    }

    .founder-message-box {
        flex-basis: 100%;
    }

    .message-overlay {
        padding: 1.5rem;
    }

    .founder-quote {
        font-size: 1rem;
    }

    .founder-name {
        font-size: 1rem;
    }
}

/* ======== 11. TESTIMONIALS SECTION (Carousel Version) ======== */
.testimonials-section {
    background-color: var(--light-bg);
}

.testimonial-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 0 1.5rem;
    margin: 0 -1.5rem;
}

.testimonial-slides {
    display: flex;
}

.testimonial-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    margin: 0 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    width: calc(25% - 1.5rem);
}

.testimonial-card>i.fas.fa-user {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-rating {
    margin-bottom: 1rem;
    color: #f0ad4e;
}

.testimonial-message {
    font-size: 1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    min-height: 100px;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-city {
    font-size: 0.9rem;
    color: #777;
}

@media(max-width: 992px) {
    .testimonial-card {
        width: calc(50% - 1.5rem);
    }
}

@media(max-width: 768px) {
    .testimonial-card {
        width: calc(100% - 1.5rem);
    }
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dots .dot.active {
    background-color: var(--primary-color);
}

/* ======== 12. VISIT OUR STORES ======== */
.store-locator-section {
    background-color: #fff;
}

.store-locator-wrapper {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.store-image-box {
    flex-basis: 50%;
}

.store-image-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.store-content-box {
    flex-basis: 50%;
}

.store-content-box .section-title {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.store-content-box .section-subtitle {
    text-align: left;
    margin-bottom: 2rem;
}

/* આ લાઇન મેં સુધારી છે */
.store-content-box .btn-outline {
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
}

@media(max-width: 768px) {
    .store-locator-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .store-content-box .section-title,
    .store-content-box .section-subtitle {
        text-align: center;
    }

    .store-content-box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .store-content-box .section-title {
        font-size: 2rem;
    }
}

/* ======== 13. FOOTER (New Version) ======== */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-column .footer-logo {
    /* જૂની font સ્ટાઇલ કાઢી નાખો */
    color: var(--text-light);
    margin-bottom: 1rem;
    display: inline-block;
}

/* આ નવો કોડ ઉમેરો */
.footer-column .footer-logo img {
    height: 150px;
    border: 1px solid #fff;
    /* ફૂટર લોગો થોડો મોટો રાખી શકાય */
    width: auto;
}

.footer-column .footer-about-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 350px;
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-column .contact-list {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-column .contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.footer-column .contact-list li i {
    font-size: 1rem;
    width: 25px;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.9);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@media(max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-column.about-us {
        grid-column: 1 / -1;
    }
}

@media(max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ======== RESPONSIVE (Mobile Menu) ======== */
@media(max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        padding: 1rem 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}