
        .kashmir-honeymoon-page .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://kashmirtourtravel.com/kashmir-honeymoon-packages/images/kashmir-honeymoon-hero.webp');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0 100px;
            text-align: center;
        }
        
        .kashmir-honeymoon-page .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .kashmir-honeymoon-page .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
        }
        
        .kashmir-honeymoon-page .section-padding {
            padding: 80px 0;
        }
        
        .kashmir-honeymoon-page .bg-light {
            background-color: #f8f9fa !important;
        }
        
        /* Floating WhatsApp Button */
        .floating-whatsapp {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 1000;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        .floating-whatsapp:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
        }
        
        .floating-whatsapp i {
            color: white;
            font-size: 30px;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* Package Duration Selector */
        .duration-selector {
            display: flex;
            justify-content: center;
            margin: 30px 0;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .duration-btn {
            padding: 12px 25px;
            border: 2px solid #e74c3c;
            background: white;
            color: #e74c3c;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .duration-btn.active, .duration-btn:hover {
            background: #e74c3c;
            color: white;
        }
        
        /* Packages Grid */
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .package-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            position: relative;
        }
        
        .package-card:hover {
            transform: translateY(-10px);
        }
        
        .package-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }
        
        .package-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .package-card:hover .package-image img {
            transform: scale(1.1);
        }
        
        .package-duration {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .package-content {
            padding: 25px;
        }
        
        .package-content h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .package-features {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        
        .package-features li {
            padding: 8px 0;
            border-bottom: 1px solid #ecf0f1;
            position: relative;
            padding-left: 25px;
        }
        
        .package-features li:before {
            content: "✓";
            color: #27ae60;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        .package-price {
            margin: 25px 0;
            text-align: center;
        }
        
        .package-price .price {
            font-size: 2rem;
            font-weight: 700;
            color: #e74c3c;
        }
        
        .package-price .price-note {
            color: #7f8c8d;
            font-size: 0.9rem;
            display: block;
        }
        
        .package-action {
            display: flex;
            gap: 10px;
        }
        
        .package-action .btn {
            flex: 1;
            text-align: center;
            padding: 12px;
        }
        
        /* City Packages Grid */
        .city-packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .city-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .city-card:hover {
            transform: translateY(-5px);
        }
        
        .city-image {
            height: 180px;
            overflow: hidden;
        }
        
        .city-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .city-content {
            padding: 20px;
        }
        
        .city-content h4 {
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .city-price {
            color: #e74c3c;
            font-weight: 700;
            font-size: 1.2rem;
            margin: 10px 0;
        }
        
        /* Highlights Grid */
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .highlight-item {
            text-align: center;
            padding: 40px 25px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .highlight-item:hover {
            transform: translateY(-5px);
        }
        
        .highlight-icon {
            font-size: 3rem;
            color: #e74c3c;
            margin-bottom: 20px;
        }
        
        .highlight-item h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        /* Itinerary Slider */
        .itinerary-slider {
            position: relative;
            margin: 40px 0;
        }
        
        .itinerary-slide {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin: 0 15px;
        }
        
        .itinerary-day {
            font-size: 1.2rem;
            color: #e74c3c;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .itinerary-content ul {
            list-style: none;
            padding: 0;
        }
        
        .itinerary-content li {
            padding: 10px 0;
            border-bottom: 1px solid #ecf0f1;
            position: relative;
            padding-left: 25px;
        }
        
        .itinerary-content li:before {
            content: "•";
            color: #e74c3c;
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 1.5rem;
        }
        
        /* Sidebar */
        .sidebar-widget {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        }
        
        .sidebar-widget h3 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-weight: 600;
            border-bottom: 2px solid #e74c3c;
            padding-bottom: 10px;
        }
        
        .quick-contact-form input, .quick-contact-form textarea, .quick-contact-form select {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: inherit;
        }
        
        .quick-contact-form button {
            width: 100%;
            padding: 12px;
            background: #e74c3c;
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .quick-contact-form button:hover {
            background: #c0392b;
        }
        
        .offer-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #e74c3c;
            color: white;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            z-index: 1;
        }
        
        /* Testimonials */
        .testimonials-slider {
            margin: 40px 0;
        }
        
        .testimonial-item {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            margin: 0 15px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            margin: 0;
            font-size: 1.1rem;
        }
        
        .author-info p {
            margin: 0;
            color: #7f8c8d;
        }
        
        /* Accordion Styling */
        .accordion-button:not(.collapsed) {
            background-color: #fdedec;
            color: #e74c3c;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: #e74c3c;
        }
        
        .romantic-inclusions {
            background: linear-gradient(135deg, #ffe8e6, #fff);
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
        }

        .read-more-content {
            display: none;
        }

        .read-more-toggle {
            color: #e74c3c;
            cursor: pointer;
            font-weight: 600;
            margin-top: 10px;
            display: inline-block;
        }

        .read-more-toggle:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .kashmir-honeymoon-page .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .packages-grid {
                grid-template-columns: 1fr;
            }
            
            .city-packages-grid {
                grid-template-columns: 1fr;
            }
            
            .package-action {
                flex-direction: column;
            }
        }
    