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

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #0B0B0A, #312926);
            color: #f5e3b3;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        nav {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 40px;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            z-index: 1000;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.5rem;
            font-weight: 700;
            color: #e6d993;
            white-space: nowrap;
        }

        .logo span {
            color: limegreen;
        }

        .logo img {
            width: 30px;
            border-radius: 5px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }

        .nav-links li {
            margin: 0 20px;
        }

        .nav-links li a {
            text-decoration: none;
            color: #f0e9d2;
            font-weight: 500;
            transition: color 0.3s;
            cursor: pointer;
        }

        .nav-links li a:hover {
            color: #78f17d;
        }

        .btn-nav {
            background-color: #29db74;
            color: #111;
            padding: 10px 20px;
            border-radius: 8px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-nav:hover {
            background-color: #20b860;
            transform: scale(1.05);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            height: 3px;
            width: 25px;
            background: #fff;
            margin: 4px 0;
            border-radius: 5px;
            transition: 0.3s;
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(12px);
                width: 260px;
                border-radius: 20px;
                padding: 30px 25px;
                row-gap: 20px;
                transition: 0.3s ease-in-out;
                z-index: 999;
            }

            .nav-links.active {
                right: 20px;
            }

            .menu-toggle {
                display: flex;
            }

            .logo {
                font-size: 1.2rem;
            }
        }

        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 140px 8% 60px;
            min-height: 100vh;
        }

        .hero-content {
            max-width: 600px;
        }

        .badge {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            background: rgba(0, 255, 150, 0.1);
            color: #00ff9c;
            font-size: 13px;
            margin-bottom: 20px;
        }

        .hero h1 {
            font-size: 56px;
            line-height: 1.2;
            font-weight: 700;
        }

        .hero h1 span.green {
            color: #00ff9c;
        }

        /* GRADIENT STYLING FOR "Global Success" as requested */
        .hero h1 .gradient-text {
            background: linear-gradient(120deg, #00ff9c, #c084fc, #facc15);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: shimmer 4s ease infinite;
        }

        @keyframes shimmer {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

        .hero p {
            margin: 20px 0;
            color: #bbb;
            font-size: 16px;
            line-height: 1.6;
        }

        .buttons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #00ff9c;
            color: black;
            border: none;
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 255, 150, 0.3);
        }

        .btn-secondary {
            background: transparent;
            border: 1px solid #666;
            color: white;
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn-secondary:hover {
            border-color: #c084fc;
            color: #c084fc;
        }

        .hero-image {
            width: 450px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 0 40px rgba(0, 255, 150, 0.1);
        }

        .hero-image img {
            width: 100%;
            display: block;
        }

        @media (max-width: 992px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding-top: 120px;
            }

            .hero h1 {
                font-size: 40px;
            }

            .hero-image {
                width: 90%;
                margin-top: 40px;
            }

            .buttons {
                justify-content: center;
            }
        }

        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 32px;
            padding: 80px 0 40px;
            border-bottom: 1px solid rgba(252, 249, 249, 0.096);
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 32px;
            padding-right: 32px;
        }

        .stat-item {
            flex: 1;
            min-width: 150px;
            text-align: center;
            transition: transform 0.25s;
        }

        .stat-item:hover {
            transform: translateY(-6px);
        }

        .stat-number {
            font-size: 4.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #C59B4B, #9E7B3E);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            line-height: 1.1;
        }

        .stat-label {
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #F5E3B3;
            margin-top: 8px;
        }

        .services-section,
        .pricing-section,
        .blog-section {
            padding: 80px 0 70px;
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 32px;
            padding-right: 32px;
            scroll-margin-top: 80px;
        }

        .section-tag span {
            background: #302636;
            color: #A165C4;
            font-weight: 700;
            font-size: 0.85rem;
            padding: 6px 18px;
            border-radius: 40px;
            display: inline-block;
        }

        .section-title {
            text-align: center;
            font-size: 2.8rem;
            font-weight: 800;
            color: #F7E8BA;
            margin-bottom: 56px;
        }

        .section-title span {
            background: linear-gradient(120deg, #A165C4, #D0B45A);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 32px;
            margin-bottom: 56px;
        }

        .service-card {
            background: #1B231F;
            border-radius: 28px;
            padding: 36px 24px 32px;
            transition: all 0.35s;
            text-align: left;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 35px 45px -18px rgba(83, 255, 3, 0.15);
        }

        .card-icon {
            background: #FFF7E8;
            width: 64px;
            height: 64px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
        }

        .card-icon i {
            font-size: 2.4rem;
            color: #C59B4B;
        }

        .service-card h3 {
            font-size: 1.7rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #F7E8BA;
        }

        .service-desc {
            color: #ddd;
            margin-bottom: 20px;
            line-height: 1.45;
        }

        .service-feature {
            font-size: 0.85rem;
            font-weight: 500;
            color: #A165C4;
            border-top: 1px solid rgba(240, 234, 216, 0.3);
            padding-top: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn-view {
            background: #9454D4;
            border: 2px solid #EFE1B5;
            color: #EFE1B5;
            padding: 14px 42px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s;
        }

        .btn-view:hover {
            background: #EFE1B5;
            color: #9454D4;
            transform: scale(1.02);
        }

        .view-all-wrapper {
            text-align: center;
        }

        /* Pricing Section Styles */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-top: 20px;
        }

        .pricing-card {
            background: #1B231F;
            border-radius: 32px;
            padding: 40px 28px;
            transition: all 0.35s;
            text-align: center;
            border: 1px solid rgba(197, 155, 75, 0.2);
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: #C59B4B;
            box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.4);
        }

        .pricing-card.popular {
            border: 2px solid #00ff9c;
            box-shadow: 0 0 20px rgba(0, 255, 156, 0.1);
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: #00ff9c;
            color: #0B0B0A;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
        }

        .pricing-icon {
            font-size: 3rem;
            color: #C59B4B;
            margin-bottom: 20px;
        }

        .pricing-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .price {
            font-size: 3rem;
            font-weight: 800;
            color: #00ff9c;
            margin: 20px 0;
        }

        .price span {
            font-size: 1rem;
            color: #cfcba8;
            font-weight: 400;
        }

        .pricing-features {
            list-style: none;
            margin: 25px 0;
            text-align: left;
        }

        .pricing-features li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid rgba(197, 155, 75, 0.2);
        }

        .pricing-features li i {
            width: 24px;
            color: #00ff9c;
        }

        .pricing-btn {
            background: transparent;
            border: 2px solid #C59B4B;
            color: #F7E8BA;
            padding: 12px 30px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            margin-top: 20px;
        }

        .pricing-btn:hover {
            background: #C59B4B;
            color: #0B0B0A;
        }

        /* Blog Section Styles */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-top: 20px;
        }

        .blog-card {
            background: #1E261F;
            border-radius: 28px;
            overflow: hidden;
            transition: all 0.35s;
            border: 1px solid rgba(197, 155, 75, 0.2);
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-8px);
            border-color: #C59B4B;
        }

        .blog-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .blog-content {
            padding: 24px;
        }

        .blog-date {
            font-size: 0.75rem;
            color: #C59B4B;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .blog-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #F7E8BA;
        }

        .blog-excerpt {
            color: #cfcba8;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .blog-readmore {
            color: #00ff9c;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .blog-readmore:hover {
            gap: 10px;
        }

        .container-ext {
            display: flex;
            align-items: center;
            gap: 60px;
            padding: 60px;
            max-width: 1200px;
            margin: 60px auto;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 48px;
            flex-wrap: wrap;
        }

        .image-box {
            flex: 1;
            min-width: 200px;
        }

        .image-box img {
            width: 100%;
            border-radius: 24px;
        }

        .content {
            flex: 1;
        }

        .tag {
            color: #a855f7;
            font-size: 12px;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .content h1 {
            font-size: 42px;
            font-weight: bold;
            line-height: 1.3;
            margin-bottom: 20px;
            color: #F7E8BA;
        }

        .content h1 span {
            background: linear-gradient(90deg, #a855f7, #facc15);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .desc {
            color: #e2dcc8;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .list {
            list-style: none;
        }

        .list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .green-h {
            color: #22c55e;
        }

        .purple-p {
            color: #a855f7;
        }

        .why-section {
            text-align: center;
            padding: 80px 20px;
            max-width: 1280px;
            margin: 0 auto;
            scroll-margin-top: 80px;
        }

        .heading {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 60px;
            color: #F7E8BA;
        }

        .heading span {
            color: #22c55e;
        }

        .cards {
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        .card {
            max-width: 260px;
            text-align: center;
        }

        .icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
        }

        .green {
            background: rgba(34, 197, 94, 0.15);
            color: #22c55e;
        }

        .purple {
            background: rgba(168, 85, 247, 0.15);
            color: #a855f7;
        }

        .reviews-section {
            max-width: 1280px;
            margin: 40px auto 60px;
            padding: 20px 32px 60px;
            background: rgba(0, 0, 0, 0.25);
            border-radius: 60px;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            margin-top: 48px;
        }

        .review-card {
            background: #1E261F;
            border-radius: 32px;
            padding: 28px;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid rgba(197, 155, 75, 0.3);
            backdrop-filter: blur(2px);
        }

        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.5);
            border-color: #C59B4B;
        }

        .review-stars {
            color: #FFD966;
            font-size: 1.2rem;
            letter-spacing: 4px;
            margin-bottom: 18px;
        }

        .review-text {
            font-style: italic;
            line-height: 1.6;
            color: #EFE6C9;
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .review-author-info {
            display: flex;
            align-items: center;
            gap: 14px;
            border-top: 1px solid rgba(197, 155, 75, 0.4);
            padding-top: 18px;
        }

        .review-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #C59B4B;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #1E261F;
            font-size: 1.4rem;
        }

        .review-name {
            font-weight: 700;
            color: #F7E8BA;
            font-size: 1.1rem;
        }

        .review-book {
            font-size: 0.75rem;
            color: #C59B4B;
            letter-spacing: 0.5px;
        }

        .slider-container {
            max-width: 1200px;
            margin: 40px auto 80px;
            padding: 0 20px;
            position: relative;
            scroll-margin-top: 80px;
        }

        .slider-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .slider-header h2 {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #F7E8BA, #c0a86a);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .auto-toggle {
            background: rgba(255, 255, 240, 0.1);
            border: 1px solid #c0a86a;
            padding: 0.5rem 1.2rem;
            border-radius: 40px;
            cursor: pointer;
            color: #F7E8BA;
            transition: 0.2s;
        }

        .auto-toggle.active {
            background: #00ff9c;
            color: black;
            border-color: #00ff9c;
        }

        .slider-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 28px;
            padding: 0.5rem 0;
        }

        .slider-track {
            display: flex;
            gap: 1.75rem;
            transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: grab;
        }

        .book-card {
            flex: 0 0 calc(25% - 1.3125rem);
            background: #1e2a24;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.3);
            transition: all 0.3s;
            border: 1px solid rgba(220, 200, 120, 0.2);
            cursor: pointer;
        }

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

        .card-img {
            width: 100%;
            aspect-ratio: 3/4;
            overflow: hidden;
        }

        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .card-content {
            padding: 1rem 1rem 1.3rem;
        }

        .book-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #f7e8ba;
        }

        .book-description {
            font-size: 0.8rem;
            color: #c9cfb2;
            line-height: 1.4;
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            width: 44px;
            height: 44px;
            border-radius: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 12;
            color: #F7E8BA;
            font-size: 1.8rem;
            border: 1px solid #c0a86a;
        }

        .nav-left {
            left: -18px;
        }

        .nav-right {
            right: -18px;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 0.6rem;
            margin-top: 2rem;
        }

        .dot {
            width: 8px;
            height: 8px;
            background: #776e4a;
            border-radius: 20px;
            cursor: pointer;
        }

        .dot.active {
            width: 28px;
            background: #00ff9c;
        }

        @media (min-width:1024px) and (max-width:1279px) {
            .book-card {
                flex: 0 0 calc(33.333% - 1.166rem);
            }
        }

        @media (min-width:640px) and (max-width:1023px) {
            .book-card {
                flex: 0 0 calc(50% - 0.875rem);
            }
        }

        @media (max-width:639px) {
            .book-card {
                flex: 0 0 100%;
            }

            .nav-left {
                left: 4px;
            }

            .nav-right {
                right: 4px;
            }
        }

        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            z-index: 3000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: #1E1A16;
            max-width: 550px;
            width: 90%;
            border-radius: 2rem;
            padding: 2rem;
            border: 1px solid #F7E8BA30;
            box-shadow: 0 30px 40px rgba(0, 0, 0, 0.5);
            transform: scale(0.9);
            transition: transform 0.25s ease;
            max-height: 85vh;
            overflow-y: auto;
        }

        .modal-overlay.active .modal-content {
            transform: scale(1);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #F7E8BA20;
            padding-bottom: 1rem;
        }

        .modal-header h3 {
            font-size: 1.8rem;
            background: linear-gradient(135deg, #F7E8BA, #c0a86a);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: #f5e3b3;
        }

        .modal-body {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .modal-book-img {
            width: 100%;
            max-height: 260px;
            object-fit: cover;
            border-radius: 1rem;
            margin-bottom: 0.5rem;
            background: #2a2a24;
        }

        .modal-author {
            font-weight: 600;
            color: #00ff9c;
            font-size: 1.1rem;
        }

        .floating-actions {
            position: fixed;
            bottom: 28px;
            right: 28px;
            display: flex;
            gap: 16px;
            z-index: 2000;
            align-items: flex-end;
        }

        .float-btn {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.25s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            border: none;
            font-size: 28px;
        }

        .email-float {
            background: linear-gradient(135deg, #f97316, #ea580c);
            color: white;
        }

        .whatsapp-float {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
        }

        .chat-float {
            background: linear-gradient(135deg, #00ff9c, #1b9e5a);
            color: #0B0B0A;
        }

        .chat-box {
            position: fixed;
            bottom: 100px;
            right: 28px;
            width: 360px;
            height: 500px;
            background: #1E1A16;
            backdrop-filter: blur(14px);
            border-radius: 28px;
            box-shadow: 0 20px 35px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
            transform: scale(0.95);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform-origin: bottom right;
            font-family: 'Inter', sans-serif;
            z-index: 2100;
        }

        .chat-box.open {
            transform: scale(1);
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .chat-header {
            background: #2C241A;
            padding: 16px 20px;
            border-bottom: 1px solid #F7E8BA30;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-header h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #F7E8BA;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .close-chat {
            background: none;
            border: none;
            color: #aaa;
            font-size: 22px;
            cursor: pointer;
        }

        .chat-messages {
            flex: 1;
            padding: 16px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .message {
            max-width: 85%;
            padding: 10px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            line-height: 1.4;
        }

        .bot-message {
            background: #2C2A24;
            color: #f5e3b3;
            align-self: flex-start;
            border-bottom-left-radius: 4px;
        }

        .user-message {
            background: #00ff9c;
            color: #111;
            align-self: flex-end;
            border-bottom-right-radius: 4px;
        }

        .chat-input-area {
            display: flex;
            padding: 12px;
            background: #0F0E0C;
            border-top: 1px solid #F7E8BA20;
            gap: 8px;
        }

        .chat-input-area input {
            flex: 1;
            background: #2C241A;
            border: none;
            padding: 12px 14px;
            border-radius: 40px;
            color: #F7E8BA;
            font-size: 0.85rem;
            outline: none;
        }

        .chat-input-area button {
            background: #00ff9c;
            border: none;
            width: 42px;
            border-radius: 42px;
            color: #111;
            font-size: 1.2rem;
            cursor: pointer;
        }

        .footer {
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            margin-top: 60px;
            padding: 60px 40px 30px;
            border-top: 1px solid rgba(197, 155, 75, 0.3);
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 48px;
        }

        .footer-col h3 {
            color: #F7E8BA;
            font-size: 1.3rem;
            margin-bottom: 24px;
            position: relative;
            display: inline-block;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #00ff9c, #C59B4B);
            border-radius: 3px;
        }

        .footer-col p {
            color: #cfcba8;
            line-height: 1.7;
            margin-bottom: 12px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-col p i {
            width: 24px;
            color: #C59B4B;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #cfcba8;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            cursor: pointer;
        }

        .footer-links a:hover {
            color: #00ff9c;
            transform: translateX(5px);
        }

        .footer-links i {
            width: 20px;
            font-size: 0.85rem;
        }

        .social-icons {
            display: flex;
            gap: 18px;
            margin-top: 20px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #F7E8BA;
            font-size: 1.2rem;
            transition: all 0.3s;
            border: 1px solid rgba(197, 155, 75, 0.3);
            cursor: pointer;
        }

        .social-icons a:hover {
            background: #00ff9c;
            color: #0B0B0A;
            transform: translateY(-3px);
            border-color: #00ff9c;
        }

        .newsletter-form {
            display: flex;
            margin-top: 15px;
        }

        .newsletter-form input {
            flex: 1;
            background: #1E1A16;
            border: 1px solid rgba(197, 155, 75, 0.4);
            padding: 12px 14px;
            border-radius: 40px 0 0 40px;
            color: #F7E8BA;
            font-size: 0.85rem;
            outline: none;
        }

        .newsletter-form button {
            background: #00ff9c;
            border: none;
            padding: 0 18px;
            border-radius: 0 40px 40px 0;
            color: #0B0B0A;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
        }

        .newsletter-form button:hover {
            background: #c0ff80;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(240, 230, 180, 0.2);
            font-size: 0.8rem;
            color: #b89f6a;
        }

        @media (max-width: 768px) {
            .footer {
                padding: 40px 24px 25px;
            }

            .footer-container {
                gap: 32px;
            }
        }

        @media (max-width: 480px) {
            .chat-box {
                width: 95%;
                height: 80vh;
                right: 2.5%;
                bottom: 90px;
                border-radius: 20px;
            }

            .chat-header {
                border-radius: 20px 20px 0 0;
            }

            .floating-actions {
                right: 16px;
                bottom: 16px;
                gap: 12px;
            }

            .float-btn {
                width: 55px;
                height: 55px;
                font-size: 22px;
            }
        }

        /* Typing indicator animation */
        .typing-indicator {
            display: inline-flex;
            gap: 4px;
            background: #2C2A24;
            padding: 10px 14px;
            border-radius: 20px;
            align-self: flex-start;
        }

        .typing-indicator span {
            width: 8px;
            height: 8px;
            background: #C59B4B;
            border-radius: 50%;
            display: inline-block;
            animation: bounce 1.2s infinite ease-in-out;
        }

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

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

        @keyframes bounce {
            0%, 60%, 100% {
                transform: translateY(0);
                opacity: 0.5;
            }
            30% {
                transform: translateY(-6px);
                opacity: 1;
            }
        }
   