  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f0f4ff 0%, #f8f0ff 50%, #fff4f0 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .top-bar {
            background: linear-gradient(135deg, #8b5cf6, #f97316);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info {
            display: flex;
            gap: 24px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .navbar {
            padding: 16px 0;
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-brand .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #8b5cf6, #f97316);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .logo-text h1 {
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(135deg, #8b5cf6, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-text p {
            font-size: 14px;
            color: #666;
        }

        .nav-menu {
            display: flex;
            gap: 8px;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 16px;
            text-decoration: none;
            color: #374151;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .nav-link:hover {
            background: rgba(139, 92, 246, 0.1);
            color: #8b5cf6;
        }

        .nav-link.active {
            background: linear-gradient(135deg, #8b5cf6, #f97316);
            color: white;
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .mobile-menu-btn span {
            width: 24px;
            height: 3px;
            background: #374151;
            margin: 3px 0;
            transition: 0.3s;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Main Content */
        main {
            margin-top: 120px;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            text-align: center;
            color: white;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
    background-color: #1e3a8a;





            opacity: 0.9;
        }
.sa-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 20px 20px, rgba(255, 255, 255, 0.05) 2px, transparent 2px);
            background-size: 40px 40px;
            animation: pulse 4s ease-in-out infinite;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 800;
            margin-bottom: 24px;
           background-color: #ffffff;

            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-subtitle {
            font-size: clamp(1.2rem, 3vw, 2rem);
            margin-bottom: 24px;
            opacity: 0.9;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .hero-description {
            font-size: 18px;
            margin-bottom: 48px;
            opacity: 0.8;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .floating-elements {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .floating-circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.2;
            animation: float 6s ease-in-out infinite;
        }

        .circle-1 {
            width: 80px;
            height: 80px;
            background: #fde047;
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }

        .circle-2 {
            width: 64px;
            height: 64px;
            background: #fb923c;
            bottom: 15%;
            right: 10%;
            animation-delay: 2s;
        }

        .circle-3 {
            width: 48px;
            height: 48px;
            background: #ef4444;
            top: 50%;
            left: 15%;
            animation-delay: 1s;
        }

        /* Button Styles */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            justify-content: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, #f97316, #ef4444);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline:hover {
            background: white;
            color: #8b5cf6;
            transform: translateY(-2px);
        }

        .btn-full {
            width: 100%;
        }

        /* Section Styles */
        section {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-header h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 700;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #956eee, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            font-size: 20px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            padding: 32px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 64px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(249, 115, 22, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 16px;
            color: #1f2937;
        }

        .feature-card p {
            color: #6b7280;
            line-height: 1.6;
        }

        /* Quick Booking Section */
        .quick-booking {
            background: linear-gradient(135deg, #8b5cf6, #3b82f6, #f97316);
            color: white;
        }

        .booking-form {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 48px;
            border-radius: 16px;
            box-shadow: 0 16px 64px rgba(0, 0, 0, 0.1);
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin-bottom: 32px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-size: 14px;
            font-weight: 600;
            color: #374151;
            margin-bottom: 8px;
        }

        .input-wrapper {
            position: relative;
        }

        .input-icon {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 12px 12px 12px 40px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #8b5cf6;
        }

        /* Testimonials Section */
        .testimonials {
            background: linear-gradient(135deg, #f0f4ff, #f8f0ff);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            padding: 32px;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
        }

        .rating {
            margin-bottom: 16px;
        }

        .star {
            color: #fbbf24;
            font-size: 18px;
        }

        .testimonial-card p {
            font-style: italic;
            color: #6b7280;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .testimonial-author {
            border-top: 1px solid #e5e7eb;
            padding-top: 16px;
        }

        .testimonial-author strong {
            display: block;
            color: #1f2937;
            font-weight: 600;
        }

        .testimonial-author span {
            color: #9ca3af;
            font-size: 14px;
        }

        /* Cars Section */
        .cars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .car-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 32px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .car-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 64px rgba(0, 0, 0, 0.15);
        }

        .car-image {
            font-size: 64px;
            margin-bottom: 24px;
        }

        .car-card h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
            color: #1f2937;
        }

        .car-card p {
            color: #6b7280;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .car-features {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            margin-bottom: 24px;
        }

        .car-features span {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(249, 115, 22, 0.1));
            color: #8b5cf6;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }

        .car-price {
            font-size: 28px;
            font-weight: 700;
            color: #f97316;
            margin-bottom: 24px;
        }

        /* Tours Section */
        .tours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
        }

        .tour-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 32px;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .tour-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 64px rgba(0, 0, 0, 0.15);
        }

        .tour-image {
            font-size: 64px;
            text-align: center;
            margin-bottom: 24px;
        }

        .tour-card h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 16px;
            color: #1f2937;
        }

        .tour-card p {
            color: #6b7280;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .tour-highlights {
            margin-bottom: 24px;
        }

        .tour-highlights span {
            display: block;
            color: #4b5563;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .tour-price {
            font-size: 24px;
            font-weight: 700;
            color: #f97316;
            margin-bottom: 24px;
        }

        /* Booking Form */
        .booking-form-detailed {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 48px;
            border-radius: 16px;
            box-shadow: 0 16px 64px rgba(0, 0, 0, 0.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin-bottom: 24px;
        }

        .booking-form-detailed .form-group input,
        .booking-form-detailed .form-group select,
        .booking-form-detailed .form-group textarea {
            width: 100%;
            padding: 16px;
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            font-size: 16px;
            font-family: inherit;
            transition: border-color 0.3s ease;
        }

        .booking-form-detailed .form-group input:focus,
        .booking-form-detailed .form-group select:focus,
        .booking-form-detailed .form-group textarea:focus {
            outline: none;
            border-color: #8b5cf6;
        }

        .booking-form-detailed .form-group label {
            display: block;
            font-weight: 600;
            color: #374151;
            margin-bottom: 8px;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1f2937 10%, #6a3bd0 45%, #3b82f6 90%);
            color: #ffffff;
            padding: 64px 0 24px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-section h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 24px;
            color: white;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #fbbf24;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .footer-logo .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ae92f0, #f97316);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .footer-logo h3 {
            font-size: 20px;
            font-weight: 700;
        }

        .footer-logo p {
            font-size: 14px;
            color: #d1d5db;
        }

        .footer-section p {
            color: #d1d5db;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .social-links {
            display: flex;
            gap: 16px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #fbbf24;
            transform: translateY(-2px);
        }

        .contact-details .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            color: #d1d5db;
        }

        .contact-details .icon {
            flex-shrink: 0;
            font-size: 18px;
            color: #fbbf24;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
        }

        .destinations {
            margin-bottom: 32px;
        }

        .destinations h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            color: white;
        }

        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 16px;
        }

        .destinations-grid span {
            color: #d1d5db;
            font-size: 14px;
        }

        .copyright {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            gap: 16px;
        }

        .copyright p {
            color: #d1d5db;
            margin: 0;
        }

        .legal-links {
            display: flex;
            gap: 24px;
        }

        .legal-links a {
            color: #d1d5db;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .legal-links a:hover {
            color: #fbbf24;
        }

        .additional-info {
            text-align: center;
        }

        .additional-info p {
            color: #d1d5db;
            font-size: 12px;
            margin: 0;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hidden-mobile {
                display: none;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 16px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
                border-radius: 0 0 16px 16px;
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .copyright {
                flex-direction: column;
                text-align: center;
            }

            .legal-links {
                justify-content: center;
            }

            .destinations-grid {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }

            .booking-form {
                padding: 24px;
            }

            .booking-form-detailed {
                padding: 24px;
            }

            .feature-card,
            .car-card,
            .tour-card,
            .testimonial-card {
                padding: 24px;
            }
        }

                * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Body Styles for tours.html */
        .sas-tours-body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Navbar Styles (from index.html) */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .top-bar {
            background: linear-gradient(135deg, #8b5cf6, #f97316);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info {
            display: flex;
            gap: 24px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .navbar {
            padding: 16px 0;
        }

        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-brand .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #8b5cf6, #f97316);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .logo-text h1 {
            font-size: 24px;
            font-weight: 800;
            background: linear-gradient(135deg, #8b5cf6, #f97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo-text p {
            font-size: 14px;
            color: #666;
        }

        .nav-menu {
            display: flex;
            gap: 8px;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 16px;
            text-decoration: none;
            color: #374151;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .nav-link:hover {
            background: rgba(139, 92, 246, 0.1);
            color: #8b5cf6;
        }

        .nav-link.active {
            background: linear-gradient(135deg, #8b5cf6, #f97316);
            color: white;
            box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .mobile-menu-btn span {
            width: 24px;
            height: 3px;
            background: #374151;
            margin: 3px 0;
            transition: 0.3s;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Main Content Adjustment for Header */
        main {
            margin-top: 120px;
        }

        /* Header Section (tours.html) */
        .sas-tours-header-section {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .sas-tours-header-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="temple" patternUnits="userSpaceOnUse" width="50" height="50"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23temple)"/></svg>');
            animation: sas-tours-float 20s linear infinite;
        }

        .sas-tours-main-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #fff, #fbbf24);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: sas-tours-glow 2s ease-in-out infinite alternate;
        }

        .sas-tours-subtitle {
            font-size: 22px;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .sas-tours-description {
            font-size: 16px;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.8;
            line-height: 1.6;
        }

        /* Tour Packages Container */
        .sas-tours-packages-container {
            max-width: 1400px;
            margin: 11px auto 0;
            padding: 0 50px 60px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 10;
        }

        /* Package Card */
        .sas-tours-package-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            animation: sas-tours-slideUp 0.8s ease forwards;
            opacity: 0;
            transform: translateY(50px);
        }

        .sas-tours-package-card:nth-child(1) {
            animation-delay: 0.2s;
        }

        .sas-tours-package-card:nth-child(2) {
            animation-delay: 0.4s;
        }

        .sas-tours-package-card:nth-child(3) {
            animation-delay: 0.6s;
        }

        .sas-tours-package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        /* Card Header */
        .sas-tours-card-header {
            height: 6px;
            position: relative;
        }

        .sas-tours-arunachala-card .sas-tours-card-header {
            background: linear-gradient(135deg, #e91e63, #9c27b0);
        }

        .sas-tours-bhimavaram-card .sas-tours-card-header {
            background: linear-gradient(135deg, #2196f3, #00bcd4);
        }

        .sas-tours-annavaram-card .sas-tours-card-header {
            background: linear-gradient(135deg, #ff9800, #f44336);
        }

        /* Card Content */
        .sas-tours-card-content {
            padding: 30px;
        }

        .sas-tours-duration-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }

        .sas-tours-arunachala-card .sas-tours-duration-badge {
            background: linear-gradient(135deg, #e91e63, #9c27b0);
        }

        .sas-tours-bhimavaram-card .sas-tours-duration-badge {
            background: linear-gradient(135deg, #2196f3, #00bcd4);
        }

        .sas-tours-annavaram-card .sas-tours-duration-badge {
            background: linear-gradient(135deg, #ff9800, #f44336);
        }

        .sas-tours-package-title {
            font-size: 24px;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 10px;
        }

        .sas-tours-package-title-telugu {
            font-size: 18px;
            color: #7c3aed;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .sas-tours-rating {
            display: flex;
            gap: 4px;
            margin-bottom: 25px;
        }

        .sas-tours-star {
            color: #fbbf24;
            font-size: 18px;
        }

        /* Places Section */
        .sas-tours-places-section {
            margin-bottom: 30px;
        }

        .sas-tours-places-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            color: #374151;
            margin-bottom: 15px;
            font-size: 16px;
        }

        .sas-tours-places-list {
            list-style: none;
        }

        .sas-tours-place-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 8px 0;
            border-bottom: 1px solid #f3f4f6;
        }

        .sas-tours-place-item:last-child {
            border-bottom: none;
        }

        .sas-tours-place-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            margin-top: 6px;
            flex-shrink: 0;
        }

        .sas-tours-arunachala-card .sas-tours-place-dot {
            background: #e91e63;
        }

        .sas-tours-bhimavaram-card .sas-tours-place-dot {
            background: #2196f3;
        }

        .sas-tours-annavaram-card .sas-tours-place-dot {
            background: #ff9800;
        }

        .sas-tours-place-text {
            color: #4b5563;
            font-size: 14px;
            line-height: 1.4;
        }

        /* Features Section */
        .sas-tours-features {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .sas-tours-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #6b7280;
            font-size: 14px;
        }

        .sas-tours-feature-icon {
            color: #10b981;
            font-size: 16px;
        }

        /* Book Button */
        .sas-tours-book-button {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .sas-tours-arunachala-card .sas-tours-book-button {
            background: linear-gradient(135deg, #e91e63, #9c27b0);
        }

        .sas-tours-bhimavaram-card .sas-tours-book-button {
            background: linear-gradient(135deg, #2196f3, #00bcd4);
        }

        .sas-tours-annavaram-card .sas-tours-book-button {
            background: linear-gradient(135deg, #ff9800, #f44336);
        }

        .sas-tours-book-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .sas-tours-book-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .sas-tours-book-button:hover::before {
            left: 100%;
        }

        /* Contact Section */
        .sas-tours-contact-section {
            background: linear-gradient(135deg, #7c3aed, #f59e0b);
            padding: 30px;
            margin: 60px 20px;
            border-radius: 20px;
            text-align: center;
            color: white;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .sas-tours-contact-info {
            display: flex;
            justify-content: center;
            gap: 40px;
            align-items: center;
            flex-wrap: wrap;
        }

        .sas-tours-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            font-weight: 500;
        }

        .sas-tours-contact-icon {
            font-size: 20px;
        }

        /* Footer (from index.html) */
        .footer {
            background: linear-gradient(135deg, #1f2937 10%, #6a3bd0 45%, #3b82f6 90%);
            color: #ffffff;
            padding: 64px 0 24px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-section h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 24px;
            color: white;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #fbbf24;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .footer-logo .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ae92f0, #f97316);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .footer-logo h3 {
            font-size: 20px;
            font-weight: 700;
        }

        .footer-logo p {
            font-size: 14px;
            color: #d1d5db;
        }

        .footer-section p {
            color: #d1d5db;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .social-links {
            display: flex;
            gap: 16px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #fbbf24;
            transform: translateY(-2px);
        }

        .contact-details .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            color: #d1d5db;
        }

        .contact-details .icon {
            flex-shrink: 0;
            font-size: 18px;
            color: #fbbf24;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
        }

        .destinations {
            margin-bottom: 32px;
        }

        .destinations h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            color: white;
        }

        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 16px;
        }

        .destinations-grid span {
            color: #d1d5db;
            font-size: 14px;
        }

        .copyright {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            gap: 16px;
        }

        .copyright p {
            color: #d1d5db;
            margin: 0;
        }

        .legal-links {
            display: flex;
            gap: 24px;
        }

        .legal-links a {
            color: #d1d5db;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .legal-links a:hover {
            color: #fbbf24;
        }

        .additional-info {
            text-align: center;
        }

        .additional-info p {
            color: #d1d5db;
            font-size: 12px;
            margin: 0;
        }

        /* Animations */
        @keyframes sas-tours-slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes sas-tours-glow {
            from {
                text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
            }
            to {
                text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
            }
        }

        @keyframes sas-tours-float {
            from {
                transform: translateX(-100px);
            }
            to {
                transform: translateX(calc(100vw + 100px));
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hidden-mobile {
                display: none;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 16px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
                border-radius: 0 0 16px 16px;
            }

            .nav-menu.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .sas-tours-main-title {
                font-size: 32px;
            }

            .sas-tours-subtitle {
                font-size: 18px;
            }

            .sas-tours-packages-container {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-top: -30px;
            }

            .sas-tours-contact-info {
                flex-direction: column;
                gap: 20px;
            }

            .sas-tours-features {
                flex-direction: column;
                gap: 10px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .copyright {
                flex-direction: column;
                text-align: center;
            }

            .legal-links {
                justify-content: center;
            }

            .destinations-grid {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
        }

        /* Loading Animation */
        .sas-tours-loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            transition: opacity 0.5s ease;
        }

        .sas-tours-loading-content {
            text-align: center;
            color: white;
        }

        .sas-tours-loading-spinner {
            width: 50px;
            height: 50px;
            border: 4px solid rgba(255, 255, 255, 0.3);
            border-top: 4px solid white;
            border-radius: 50%;
            animation: sas-tours-spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes sas-tours-spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }


        .sas-tours-places-section {
    position: relative;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin: 15px 0;
}

.sas-tours-places-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
}

.places-covered-image {
    width: 100%;
    border-radius: 6px;
    margin-top: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}


 @keyframes popDance {
    0%, 100% {
      transform: scale(1) translateY(0);
      
    }
    25% {
      transform: scale(1.2) translateY(-10px);
      
    }
    50% {
      transform: scale(0.9) translateY(5px);
      
    }
    75% {
      transform: scale(1.1) translateY(-5px);
      
    }
  }

  #fixed-whatsapp-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 90px;
    height: 90px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: popDance 2s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  #fixed-whatsapp-icon:hover {
    animation-play-state: paused;
    transform: scale(1.3) translateY(-10px);
  }

  /* Fullscreen overlay */
  #loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #f97316 100%); /* Custom vibrant gradient */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      overflow: hidden;
      transition: opacity 0.7s ease-out; /* Smooth fade-out */
    }

    /* Hidden state for loader */
    #loader.hidden {
      opacity: 0;
      pointer-events: none;
    }

    /* Loader container for text and background effect */
    .text-loader {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    /* Company name text */
    .loader-text {
      color: #ffffff;
      font-family: 'Montserrat', sans-serif; /* Modern, clean font */
      font-size: 38px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 255, 255, 0.3); /* Enhanced shadow for vibrancy */
      animation: glow 2.5s ease-in-out infinite; /* Subtle glow effect */
    }

    /* Subtle tagline */
    .loader-subtext {
      color: #fff7ed; /* Light cream to complement orange in gradient */
      font-family: 'Montserrat', sans-serif;
      font-size: 16px;
      font-weight: 400;
      margin-top: 12px;
      opacity: 0.9;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
      animation: pulse 2.5s ease-in-out infinite;
    }

    /* Background compass/map effect */
    .text-loader::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 20%, transparent 60%);
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 20a30 30 0 0 0-30 30 30 30 0 0 0 30 30 30 30 0 0 0 30-30 30 30 0 0 0-30-30zm0 8a4 4 0 0 1 4 4 4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4zm0 44a22 22 0 0 1-22-22 22 22 0 0 1 22-22 22 22 0 0 1 22 22 22 22 0 0 1-22 22z" fill="rgba(255,255,255,0.2)"/></svg>');
      background-size: 110px 110px;
      background-position: center;
      transform: translate(-50%, -50%);
      animation: rotate-compass 12s linear infinite; /* Slightly slower rotation */
      z-index: -1;
    }

    /* Glow animation for main text */
    @keyframes glow {
      0%, 100% {
        text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5), 0 0 12px rgba(255, 255, 255, 0.3);
      }
      50% {
        text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.6);
      }
    }

    /* Pulse animation for subtext */
    @keyframes pulse {
      0%, 100% {
        opacity: 0.9;
        transform: scale(1);
      }
      50% {
        opacity: 1;
        transform: scale(1.02);
      }
    }

    /* Compass rotation animation */
    @keyframes rotate-compass {
      0% {
        transform: translate(-50%, -50%) rotate(0deg);
      }
      100% {
        transform: translate(-50%, -50%) rotate(360deg);
      }
    }


      .sas-tours-header-section {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #f97316 100%);
            color: #fff;
        }

        .sas-tours-main-title {
            font-family: 'Inter', sans-serif;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .sas-tours-subtitle {
            font-family: 'Segoe UI', sans-serif;
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .sas-tours-description {
            font-family: 'Segoe UI', sans-serif;
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Car Cards */
        .sas-tours-cars-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .sas-tours-car-card {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .sas-tours-car-card:hover {
            transform: translateY(-5px);
        }

        .sas-tours-card-header {
            height: 10px;
            background-size: cover;
            background-position: center;
        }

        .sas-tours-cards-header {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .sas-tours-card-content {
            padding: 20px;
        }

        .sas-tours-car-title {
            font-family: 'Inter', sans-serif;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .sas-tours-car-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 20px;
        }

        .sas-tours-feature {
            display: flex;
            align-items: center;
            font-family: 'Segoe UI', sans-serif;
            font-size: 16px;
        }

        .sas-tours-feature-icon {
            margin-right: 8px;
            font-size: 20px;
        }

        .sas-tours-book-button {
            display: block;
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, #3b82f6, #f97316);
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
            text-align: center;
        }

        .sas-tours-book-button:hover {
            background: linear-gradient(90deg, #2563eb, #ea580c);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .sas-tours-main-title {
                font-size: 36px;
            }

            .sas-tours-subtitle {
                font-size: 20px;
            }

            .sas-tours-description {
                font-size: 16px;
            }

            .sas-tours-cars-container {
                grid-template-columns: 1fr;
            }
        }
