* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #d4a017;
            --dark-gold: #b8860b;
            --light-gold: #f4e4c1;
            --maroon: #800000;
            --dark: #1a1a1a;
            --white: #ffffff;
            --gray: #f5f5f5;
        }

        body {
            font-family: 'Myanmar3', 'Padauk', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, var(--maroon) 0%, var(--dark) 100%);
            color: var(--white);
            text-align: center;
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '☸';
            position: absolute;
            font-size: 300px;
            opacity: 0.05;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .header h1 {
            font-size: 56px;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: fadeInDown 1s ease;
        }

        .header .subtitle {
            font-size: 28px;
            color: var(--gold);
            margin-bottom: 15px;
            animation: fadeInUp 1s ease 0.3s both;
        }

        .header .tagline {
            font-size: 18px;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 30px;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .btn-group {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.9s both;
        }

        .btn {
            display: inline-block;
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--gold);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(212, 160, 23, 0.4);
        }

        .btn-primary:hover {
            background: var(--dark-gold);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 160, 23, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--gold);
        }

        .btn-secondary:hover {
            background: var(--gold);
            color: var(--white);
        }

        /* Navigation */
        .nav {
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .nav-logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--maroon);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Sections */
        .section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 42px;
            color: var(--maroon);
            margin-bottom: 15px;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--gold);
            margin: 15px auto;
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: #666;
            margin-bottom: 50px;
        }

        /* About Section */
        .about {
            background: var(--gray);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 32px;
            color: var(--maroon);
            margin-bottom: 20px;
        }

        .about-text p {
            font-size: 18px;
            margin-bottom: 15px;
            color: #555;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .stat-box {
            background: var(--white);
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .stat-box:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 36px;
            font-weight: bold;
            color: var(--gold);
        }

        .stat-label {
            font-size: 14px;
            color: #666;
            margin-top: 5px;
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--gold);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .service-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 24px;
            color: var(--maroon);
            margin-bottom: 15px;
        }

        .service-card p {
            color: #666;
            font-size: 16px;
        }

        /* Tour Packages */
        .tours {
            background: linear-gradient(135deg, var(--light-gold) 0%, var(--gray) 100%);
        }

        .tours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .tour-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .tour-card:hover {
            transform: scale(1.02);
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }

        .tour-header {
            background: linear-gradient(135deg, var(--maroon), var(--dark));
            color: var(--white);
            padding: 30px;
            text-align: center;
        }

        .tour-header h3 {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .tour-duration {
            display: inline-block;
            background: var(--gold);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
        }

        .tour-body {
            padding: 30px;
        }

        .tour-features {
            list-style: none;
            margin-bottom: 25px;
        }

        .tour-features li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .tour-features li::before {
            content: '✓';
            color: var(--gold);
            font-weight: bold;
            font-size: 18px;
        }

        .tour-price {
            text-align: center;
            font-size: 24px;
            color: var(--maroon);
            font-weight: bold;
            margin-bottom: 20px;
        }

        .tour-price span {
            font-size: 14px;
            color: #666;
            font-weight: normal;
        }

        /* Destinations */
        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .destination-card {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 300px;
            background: linear-gradient(135deg, var(--maroon), var(--dark));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
            color: var(--white);
            transition: all 0.3s;
        }

        .destination-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            z-index: 1;
        }

        .destination-card > * {
            position: relative;
            z-index: 2;
        }

        .destination-card h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .destination-card p {
            font-size: 14px;
            opacity: 0.9;
        }

        .destination-card:hover {
            transform: translateY(-5px);
        }

        /* Testimonials */
        .testimonials {
            background: var(--dark);
            color: var(--white);
        }

        .testimonials .section-title {
            color: var(--gold);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: rgba(255,255,255,0.05);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .testimonial-text {
            font-style: italic;
            font-size: 18px;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .author-info h4 {
            color: var(--gold);
            font-size: 16px;
        }

        .author-info p {
            font-size: 14px;
            opacity: 0.7;
        }

        .stars {
            color: var(--gold);
            font-size: 20px;
            margin-bottom: 15px;
        }

        /* Contact */
        .contact-section {
            background: linear-gradient(135deg, var(--maroon), var(--dark));
            color: var(--white);
        }

        .contact-section .section-title {
            color: var(--gold);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info h3 {
            font-size: 28px;
            color: var(--gold);
            margin-bottom: 25px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }

        .contact-icon {
            font-size: 24px;
            color: var(--gold);
        }

        .contact-item div h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .contact-item div p, .contact-item div a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-item div a:hover {
            color: var(--gold);
        }

        .contact-form {
            background: rgba(255,255,255,0.05);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            color: var(--gold);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 10px;
            background: rgba(255,255,255,0.05);
            color: var(--white);
            font-size: 16px;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(255,255,255,0.1);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        /* Footer */
        .footer {
            background: var(--dark);
            color: rgba(255,255,255,0.6);
            text-align: center;
            padding: 40px 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-social {
            margin-bottom: 20px;
        }

        .footer-social a {
            display: inline-block;
            margin: 0 15px;
            font-size: 24px;
            color: var(--gold);
            transition: transform 0.3s;
        }

        .footer-social a:hover {
            transform: translateY(-5px);
        }

        .footer p {
            font-size: 14px;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 36px;
            }

            .header .subtitle {
                font-size: 20px;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: block;
            }

            .about-content,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .about-stats {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 32px;
            }

            .btn-group {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
        }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--dark);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gold);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--dark-gold);
        }
