/* JS-Tours & Safari Zanzibar - Main Stylesheet */
/* ============================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Poppins:wght@400;600;700&family=Open+Sans:wght@300;400;600&family=Lato:wght@300;400;700&display=swap');

/* CSS Variables - Brand Colors */
:root {
    --primary-color: #2563eb;
    --secondary-color: #0891b2;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --white: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    
    /* Zanzibar Themed Colors */
    --ocean-blue: #0891b2;
    --sand-beige: #fef3c7;
    --sunset-orange: #fb923c;
    --palm-green: #059669;
    
    /* Typography */
    --font-heading: 'Montserrat', 'Poppins', sans-serif;
    --font-body: 'Open Sans', 'Lato', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container & Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-2xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-sm);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Header & Navigation */
.header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Logo Image */
.logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Legacy support for old img tag */
.logo img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.logo-text .brand-motto {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-menu li a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-color);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
    background: var(--light-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: var(--spacing-xs);
    background: none;
    border: none;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 100, 235, 0.242), rgba(18, 126, 153, 0.171)),
                url('../images/sunset_dhow_two.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 var(--spacing-md);
    animation: fadeInUp 1s ease;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: #0e7490;
    transform: translateY(-2px);
}

.btn-outline {
    background: var(--text-secondary);
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.btn-whatsapp:hover {
    background: #20ba5a;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: var(--spacing-md);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-color);
}

.card-text {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.card-footer {
    padding: var(--spacing-md);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -var(--spacing-sm);
}

.col {
    flex: 1;
    padding: 0 var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.col-2 { flex: 0 0 16.666%; max-width: 16.666%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-8 { flex: 0 0 66.666%; max-width: 66.666%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Form Elements */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-family: var(--font-body);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    cursor: pointer;
}

/* Package Card */
.package-card {
    position: relative;
    overflow: hidden;
}

.package-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    z-index: 10;
}

.package-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.package-duration {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Testimonials */
.testimonial-card {
    background: var(--light-color);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto var(--spacing-md);
    object-fit: cover;
    border: 4px solid var(--white);
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-color);
}

.testimonial-country {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

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

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20ba5a;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .navbar {
        flex-wrap: wrap;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .navbar {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        display: flex;
        max-height: 500px;
        opacity: 1;
        margin-top: 0;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
        opacity: 0;
        animation: slideDown 0.3s ease forwards;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { animation-delay: 0.35s; }
    
    .nav-menu li a {
        display: block;
        padding: var(--spacing-md);
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .col-3, .col-4, .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Google Rating Widget */
.google-rating-widget {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.google-rating-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.google-logo {
    font-size: 3rem;
    color: #4285f4;
}

.google-rating-details {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.score-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.5rem;
    justify-content: center;
}

.rating-stars i {
    color: #fbbc04;
    font-size: 1.25rem;
}

.rating-info {
    border-left: 2px solid var(--border-color);
    padding-left: 1.5rem;
}

.reviews-count {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.rating-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .google-rating-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .google-rating-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rating-info {
        border-left: none;
        border-top: 2px solid var(--border-color);
        padding-left: 0;
        padding-top: 1rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: var(--spacing-xs); }
.gap-2 { gap: var(--spacing-sm); }
.gap-3 { gap: var(--spacing-md); }

/* ================================================
   GOOGLE RATING WIDGET WITH QR CODE
   ================================================ */

/* Main Widget Container */
.google-rating-widget {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

/* Rating Display Section */
.google-rating-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Google Logo */
.google-logo {
    font-size: 3.5rem;
    color: #4285f4;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Rating Details Container */
.google-rating-details {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

/* Rating Score */
.rating-score {
    text-align: center;
}

.score-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    display: block;
    line-height: 1;
    background: linear-gradient(135deg, #4285f4, #34a853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.75rem;
    justify-content: center;
}

.rating-stars i {
    color: #fbbc04;
    font-size: 1.5rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

.rating-stars i:nth-child(1) { animation-delay: 0s; }
.rating-stars i:nth-child(2) { animation-delay: 0.2s; }
.rating-stars i:nth-child(3) { animation-delay: 0.4s; }
.rating-stars i:nth-child(4) { animation-delay: 0.6s; }
.rating-stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Rating Info */
.rating-info {
    border-left: 3px solid #4285f4;
    padding-left: 2rem;
}

.reviews-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.rating-tagline {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

/* Action Buttons */
.rating-actions {
    display: flex;
    gap: 1rem;
}

.btn-review {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(66, 133, 244, 0.3);
    transition: all 0.3s ease;
}

.btn-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(66, 133, 244, 0.4);
}

.btn-review i {
    margin-right: 0.5rem;
}

/* QR Code Section */
.qr-code-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 2.5rem;
    border-top: 2px dashed #cbd5e1;
}

/* OR Divider */
.qr-code-divider {
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
}

.qr-code-divider span {
    background: #ffffff;
    padding: 0.5rem 2rem;
    border-radius: 2rem;
    font-weight: 700;
    color: #64748b;
    font-size: 1rem;
    border: 2px solid #cbd5e1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* QR Code Container */
.qr-code-container {
    max-width: 800px;
    margin: 0 auto;
}

.qr-code-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* QR Code Image */
.qr-code-image {
    flex-shrink: 0;
}

.qr-code-image img {
    width: 200px;
    height: 200px;
    border: 4px solid #4285f4;
    border-radius: 1rem;
    padding: 1rem;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
    transition: transform 0.3s ease;
}

.qr-code-image img:hover {
    transform: scale(1.05);
}

/* QR Code Text */
.qr-code-text {
    flex: 1;
}

.qr-code-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.qr-code-text h3 i {
    color: #4285f4;
    font-size: 2rem;
}

.qr-code-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* QR Code Steps */
.qr-code-steps {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 100%);
    border-radius: 0.75rem;
    border: 2px dashed #cbd5e1;
}

.qr-code-steps span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #475569;
    font-size: 0.95rem;
}

.qr-code-steps span i {
    color: #4285f4;
}

.qr-code-steps span .fa-arrow-right {
    color: #94a3b8;
    font-size: 0.85rem;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

/* Tablet View (768px - 1024px) */
@media (max-width: 1024px) {
    .google-rating-content {
        padding: 2rem;
    }
    
    .qr-code-content {
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .qr-code-image img {
        width: 180px;
        height: 180px;
    }
}

/* Mobile View (max 768px) */
@media (max-width: 768px) {
    .google-rating-widget {
        border-radius: 1rem;
    }
    
    .google-rating-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .google-logo {
        font-size: 3rem;
    }
    
    .google-rating-details {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    
    .rating-info {
        border-left: none;
        border-top: 3px solid #4285f4;
        padding-left: 0;
        padding-top: 1.5rem;
    }
    
    .rating-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-review {
        width: 100%;
        justify-content: center;
    }
    
    /* QR Code Mobile */
    .qr-code-section {
        padding: 2rem 1.5rem;
    }
    
    .qr-code-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .qr-code-image {
        margin: 0 auto;
    }
    
    .qr-code-image img {
        width: 200px;
        height: 200px;
    }
    
    .qr-code-text h3 {
        justify-content: center;
        font-size: 1.5rem;
    }
    
    .qr-code-text p {
        font-size: 1rem;
    }
    
    .qr-code-steps {
        justify-content: center;
    }
    
    .qr-code-steps span {
        font-size: 0.85rem;
    }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
    .score-number {
        font-size: 3rem;
    }
    
    .rating-stars i {
        font-size: 1.25rem;
    }
    
    .reviews-count {
        font-size: 1.25rem;
    }
    
    .qr-code-image img {
        width: 160px;
        height: 160px;
    }
    
    .qr-code-text h3 {
        font-size: 1.3rem;
    }
    
    .qr-code-steps {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .qr-code-steps span .fa-arrow-right {
        transform: rotate(90deg);
    }
}

/* Print Styles (for printing QR code) */
@media print {
    .google-rating-content {
        display: none;
    }
    
    .qr-code-divider {
        display: none;
    }
    
    .qr-code-section {
        background: white;
        padding: 2rem;
    }
    
    .qr-code-content {
        box-shadow: none;
        border: 2px solid #000;
    }
    
    .qr-code-image img {
        border-color: #000;
    }
}
/* ================================================
   PACKAGE DETAILS PAGE STYLES
   ================================================ */

/* Package Hero Section */
.package-hero {
    position: relative;
    padding-top: 100px;
}

/* Detail Cards */
.detail-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.detail-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #4285f4;
}

.detail-title i {
    color: #4285f4;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 0.75rem;
    border-left: 4px solid #4285f4;
}

.highlight-item i {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.highlight-item span {
    font-weight: 500;
    color: #1e293b;
    line-height: 1.6;
}

/* Itinerary Timeline */
.itinerary-timeline {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    white-space: pre-line;
}

/* Inclusions/Exclusions */
.inclusion-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.inclusion-list {
    list-style: none;
    padding: 0;
}

.inclusion-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    line-height: 1.6;
}

.inclusion-list li:last-child {
    border-bottom: none;
}

.inclusion-list.included li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.25rem;
}

.inclusion-list.excluded li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Things to Bring */
.things-to-bring {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
}

/* Policy Text */
.policy-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    padding: 1.5rem;
    background: #fef3c7;
    border-radius: 0.75rem;
    border-left: 4px solid #f59e0b;
}

/* Booking Card */
.booking-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.sticky-booking {
    position: sticky;
    top: 100px;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
}

.info-item i {
    color: #4285f4;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-item div {
    flex: 1;
}

.info-item strong {
    display: block;
    color: #1e293b;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.info-item span {
    color: #64748b;
    font-size: 0.95rem;
}

/* Mobile Responsive for Package Details */
@media (max-width: 768px) {
    .detail-card {
        padding: 1.5rem 1rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-card {
        position: static;
        margin-top: 2rem;
    }
    
    .sticky-booking {
        position: static;
    }
}

/* ================================================
   END PACKAGE DETAILS STYLES
   ================================================ */