:root {
    /* Brand Colors */
    --primary-brown: #5d4037;
    --dark-brown: #3e2723;
    --light-brown: #8d6e63;
    --beige: #d7ccc8;
    --light-beige: #efebe9;
    --white: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing & Transitions */
    --transition: all 0.3s ease;
    --section-padding: 5rem 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-padding);
}

.bg-light {
    background-color: var(--light-beige);
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1.5rem;
}

.d-block {
    display: block;
    width: 100%;
}

/* Typography */
h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    color: var(--dark-brown);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--primary-brown);
    margin-bottom: 1.5rem;
}

.divider.center {
    margin: 0 auto 1.5rem auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-brown);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-brown);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(93, 64, 55, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-brown);
    border: 2px solid var(--primary-brown);
}

.btn-outline:hover {
    background-color: var(--primary-brown);
    color: var(--white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
    background-color: #f7f3ec;
    /* Cream/Beige solid background */
    border-bottom: 1px solid rgba(93, 64, 55, 0.1);
}

.navbar.scrolled {
    background-color: #f7f3ec;
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-btn {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
}

.icon-btn:hover {
    color: var(--primary-brown);
}

.text-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 400;
    transition: var(--transition);
}

.text-link:hover {
    color: var(--primary-brown);
    text-decoration: underline;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: #3a2618;
}

.brand-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 400;
    color: #3a2618;
    margin-top: 5px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu li a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-main);
    transition: var(--transition);
}

.nav-menu li a:hover {
    color: var(--light-brown);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-brown);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero-saree.png') center/cover no-repeat;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(62, 39, 35, 0.3);
    /* Dark brown overlay, reduced opacity */
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 1200px;
    /* Use container width */
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    /* Allow inner left alignment */
    flex-direction: column;
}

.hero-left {
    align-items: flex-start;
    text-align: left;
}

.hero-left .main-heading,
.hero-left .hero-description {
    max-width: 60%;
}

.hero-left .hero-buttons {
    align-self: center;
    width: 100%;
}

.hero-overline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-content h1 {
    color: #fcf9f2;
    /* Light cream/white */
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: none;
    line-height: 1.1;
    font-weight: 400;
    /* More elegant, less bold */
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    width: 100%;
}

.hero-buttons .btn-primary {
    background-color: #2b201a;
    color: var(--white);
    font-weight: 400;
    text-transform: none;
}

.hero-buttons .btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-weight: 400;
    text-transform: none;
}

.hero-buttons .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-pill {
    border-radius: 50px;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    letter-spacing: 0;
}

.btn-outline.btn-sm {
    border: 1px solid var(--text-main);
    color: var(--text-main);
    text-transform: none;
    font-weight: 400;
}

.btn-outline.btn-sm:hover {
    background-color: var(--primary-brown);
    border-color: var(--primary-brown);
    color: var(--white);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator i {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

@keyframes bounce {

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

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* About Section */
.about-header {
    margin-bottom: 2rem;
}

.about-header h2.section-title {
    font-family: var(--font-heading);
}

.about-content.editorial-wrap {
    display: block; /* Overriding previous flex constraints */
}

/* Clearfix for floated image */
.editorial-wrap::after {
    content: "";
    display: table;
    clear: both;
}

.about-image-float {
    float: left;
    width: 40%;
    margin: 0 40px 20px 0;
    border-radius: 20px;
    box-shadow: -15px 15px 0 var(--beige);
}

.editorial-wrap p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    line-height: 1.8;
}

.clear-float {
    clear: both;
}

@media (max-width: 768px) {
    .about-image-float {
        float: none;
        width: 100%;
        margin: 0 0 20px 0;
    }
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Founder Profile Section */
.founder-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.founder-text {
    width: 60%;
}

.founder-image {
    width: 40%;
}

.founder-image img {
    width: 100%;
    border-radius: 50px 0 50px 0;
    box-shadow: 20px 20px 0px #f3eee7;
    display: block;
}

.founder-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    line-height: 1.8;
}

.founder-text h2.section-title {
    font-family: var(--font-heading);
}

.founder-philosophy {
    text-align: center;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--primary-brown);
    font-family: var(--font-heading);
    padding: 2rem 4rem;
    margin: 2rem 0;
    border-top: 1px solid var(--beige);
    border-bottom: 1px solid var(--beige);
    line-height: 1.6;
}

/* Additional Animations */
.fade-in-scroll-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.fade-in-scroll-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-right-scroll {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.slide-in-right-scroll.visible {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .founder-content {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .founder-text, .founder-image {
        width: 100%;
    }
    
    .founder-philosophy {
        padding: 1.5rem;
    }
}

/* Featured Collections Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(62, 39, 35, 0.9), transparent);
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Showstopper Section */
.showstopper-bg {
    background: url('https://images.unsplash.com/photo-1605021200251-8288ebf25603?auto=format&fit=crop&q=80&w=2000') center/cover fixed;
    height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.showstopper-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(239, 235, 233, 0.85);
    /* Light beige overlay */
}

.showstopper-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 0;
}

.showstopper-content p {
    font-size: 1.1rem;
}

/* Cards Grid (Workshops) */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background: var(--white);
    border: 1px solid var(--beige);
    border-radius: 4px;
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    box-shadow: 0 10px 30px rgba(93, 64, 55, 0.1);
    transform: translateY(-5px);
    border-color: var(--light-brown);
}

.card-body {
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* Events */
.event-list {
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 2rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.event-item:hover {
    border-left: 5px solid var(--primary-brown);
    transform: translateX(5px);
}

.event-date {
    background: var(--light-beige);
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    min-width: 90px;
    margin-right: 2rem;
    border: 1px solid var(--beige);
}

.event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-brown);
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: 700;
}

.event-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.event-details p {
    color: var(--text-muted);
}

.event-details i {
    color: var(--primary-brown);
    margin-right: 0.5rem;
}

/* Weaver Communities Section */
.large-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.intro-text p {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.cluster-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.cluster-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    overflow: hidden;
}

.cluster-row.reverse {
    flex-direction: row-reverse;
}

.cluster-text, .cluster-img {
    flex: 1;
}

.cluster-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
}

.cluster-text p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.cluster-text p span {
    font-weight: 700;
    color: var(--primary-brown);
}

.cluster-img img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.sepia-filter {
    filter: sepia(0.2) contrast(1.05) brightness(0.95);
}

.elegant-separator {
    text-align: center;
    font-size: 1.5rem;
    color: #d4c4b7;
    margin: 1rem 0;
    letter-spacing: -2px;
}

.shared-journey {
    margin-top: 6rem;
    padding: 0 2rem;
}

.emotional-weight {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--primary-brown);
    line-height: 1.6;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.slide-in-both-scroll.visible .slide-in-left,
.slide-in-both-scroll.visible .slide-in-right {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .cluster-row, .cluster-row.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    
    .large-title {
        font-size: 2.2rem;
    }
    
    .emotional-weight {
        font-size: 1.4rem;
    }
}

.feature-box h3 {
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Blog Section */
.blog.section {
    padding: 80px 0;
    background-color: var(--light-beige);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    position: relative;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background-color: #000;
}

.youtube-wrapper {
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.youtube-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.blog-video {
    width: 100%;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 3.5rem;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 10;
}

.blog-card:hover .play-overlay {
    opacity: 1;
}

.blog-info {
    padding: 1.5rem 0;
    text-align: center;
    transition: var(--transition);
}

.blog-info h3 {
    font-size: 1.2rem;
    color: var(--dark-brown);
    font-weight: 600;
}

.blog-card:hover .blog-info {
    transform: translateY(-10px);
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact-link {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-brown);
}

.align-top {
    align-items: flex-start !important;
}

.map-container {
    margin-top: 2.5rem;
    width: 100%;
}

.gmap-iframe {
    width: 100%;
    height: 300px;
    border: 1px solid #d4cdc3;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.map-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.map-actions .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.contact-wrapper {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--primary-brown);
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.contact-form-container {
    flex: 1;
    background: var(--light-beige);
    padding: 3rem;
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--dark-brown);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 25px;
    border: 1px solid var(--beige);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--beige);
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.w-100 {
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-brown);
    box-shadow: 0 0 0 2px rgba(93, 64, 55, 0.1);
}

.form-status {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 4px;
    display: none;
}

.form-status.success {
    display: block;
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.form-status.error {
    display: block;
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* Footer */
.footer {
    background-color: var(--dark-brown);
    color: var(--white);
    padding: 1.5rem 0 1.5rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    margin-bottom: 15px;
}

.footer-brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: #faf9f6;
}

.footer-brand-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 400;
    color: #d4cdc3;
    margin-top: 5px;
}

.footer-content p {
    color: var(--beige);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-brown);
    transform: translateY(-3px) scale(1.1);
    filter: brightness(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--beige);
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 4px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--dark-brown);
}

.modal-title {
    margin-bottom: 2rem;
    text-align: center;
}

/* Chatbot */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-brown);
    color: var(--white);
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(93, 64, 55, 0.4);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    height: 400px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition);
    transform-origin: bottom right;
}

.chatbot-window.hidden {
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
}

.chatbot-header {
    background-color: var(--primary-brown);
    color: var(--white);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
}

.chatbot-header span {
    cursor: pointer;
    font-size: 1.5rem;
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--light-beige);
}

.message {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
}

.bot-message {
    background-color: var(--white);
    color: var(--text-main);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.user-message {
    background-color: var(--light-brown);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.chatbot-input {
    display: flex;
    padding: 1rem;
    background: var(--white);
    border-top: 1px solid var(--beige);
}

.chatbot-input input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid var(--beige);
    border-radius: 20px;
    outline: none;
    font-family: var(--font-body);
}

.chatbot-input input:focus {
    border-color: var(--primary-brown);
}

.chatbot-input button {
    background: none;
    border: none;
    color: var(--primary-brown);
    font-size: 1.2rem;
    margin-left: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .about-content {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .navbar:not(.scrolled) .nav-menu li a {
        color: var(--dark-brown);
    }

    .nav-btn {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

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

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

.about-text b {
    color: #3a2618;
    /* Your deep brown */
    border-bottom: 1px solid rgba(58, 38, 24, 0.2);
}

.chat-email-link {
    color: #3a2618;
    font-weight: bold;
    text-decoration: underline;
}