@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-card: #ffffff;
    --bg-card-hover: #fcfcfc;
    --border-color: #eeeeee;
    --color-primary: #3c6df0; /* Scraped Cobalt Blue */
    --color-secondary: #1f67e7; /* Scraped Royal Blue */
    --color-accent: #ff643d; /* Scraped Coral Orange */
    --text-primary: #222222;
    --text-secondary: #555555;
    --text-muted: #777777;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(60, 109, 240, 0.12);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

body::before {
    background: radial-gradient(circle, rgba(60, 109, 240, 0.12) 0%, rgba(31, 103, 231, 0) 70%);
}

body::after {
    background: radial-gradient(circle, rgba(31, 103, 231, 0.08) 0%, rgba(60, 109, 240, 0) 70%);
}

.hero-booking-panel {
    background: rgba(240, 246, 255, 0.95);
    border-color: rgba(60, 109, 240, 0.15);
    box-shadow: 0 10px 40px rgba(60, 109, 240, 0.08);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #1e293b;
    border-radius: 8px;
}

.testimonial-card {
    background: #ffffff;
    border-color: #eeeeee;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.google-g-logo {
    opacity: 0.95;
}

header {
    background: rgba(255, 255, 255, 0.9);
}

.top-bar {
    background: #fafafa;
}

footer {
    background: #fafafa;
    border-color: #eeeeee;
}





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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background mesh gradients */
body::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, rgba(0, 114, 255, 0) 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(100px);
    animation: drift 20s infinite alternate ease-in-out;
}

body::after {
    content: '';
    position: absolute;
    top: 40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.07) 0%, rgba(0, 240, 255, 0) 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(100px);
    animation: drift-reverse 25s infinite alternate ease-in-out;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(100px, 80px) scale(1.15);
    }
}

@keyframes drift-reverse {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(-120px, -50px) scale(0.9);
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

/* Header & Navigation */
.top-bar {
    background-color: #000000 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 5%;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff !important;
}

.top-info {
    display: flex;
    gap: 20px;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-socials {
    display: flex;
    gap: 15px;
}

.top-socials a:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

header {
    position: relative;
    background: #ffffff !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #000000 !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--color-primary) !important;
}

.logo i {
    color: var(--color-primary) !important;
}

.logo span {
    color: var(--color-primary);
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111111;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.cta-btn {
    background: linear-gradient(135deg, #ff4d4d 0%, #d63031 100%);
    color: #ffffff;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(214, 48, 49, 0.3);
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-30deg);
    transition: 0.75s;
}

.cta-btn:hover::before {
    left: 120%;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 48, 49, 0.5);
    color: #ffffff;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 0 8%;
    gap: 50px;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.8)), url('img/hero.jpg') no-repeat center center/cover;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tag {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-tag::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: var(--color-primary);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #00f0ff 0%, #3c6df0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: #e2e8f0;
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.1);
    transform: translateY(-3px);
}


/* Glass Interactive Quick Booking card */
.hero-booking-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.hero-booking-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.panel-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

.panel-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    color: #1e293b;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(60, 109, 240, 0.12);
}

.panel-form select option {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
}

.panel-form button {
    width: 100%;
    padding: 14px;
    margin-top: 10px;
}

/* Section styling */
section {
    padding: 100px 8%;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-secondary);
}

/* About Section styling */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #000000;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.experience-badge h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
}

.experience-badge p {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-top: 4px;
}

.feature-item h4 {
    font-family: var(--font-heading);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Services section pricing design */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 35px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-8px);
    border-color: rgba(0, 240, 255, 0.2);
    box-shadow: var(--shadow-soft);
}

.service-card:hover .service-img {
    transform: scale(1.06);
}

.service-card-top {
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 240, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-checklist {
    list-style: none;
    margin-bottom: 25px;
}

.service-checklist li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-checklist li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: bold;
}

.service-price-box {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-val {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
}

.service-card-btns {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-card-primary {
    flex: 1;
    background: linear-gradient(135deg, #3c6df0 0%, #1f67e7 100%);
    color: #ffffff !important;
    font-weight: 700;
    padding: 10px 0;
    font-size: 0.85rem;
    text-align: center;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(60, 109, 240, 0.25);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-card-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(60, 109, 240, 0.45);
    color: #ffffff !important;
}

.btn-card-secondary {
    flex: 1;
    background: linear-gradient(135deg, #a61c1c 0%, #7d1010 100%);
    color: #ffffff !important;
    font-weight: 700;
    padding: 10px 0;
    text-align: center;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 12px rgba(125, 16, 16, 0.25);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-card-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(125, 16, 16, 0.45);
    color: #ffffff !important;
}

/* Reviews Testimonial Section */
.testimonials-section {
    background-color: var(--bg-secondary);
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.testimonial-card {
    min-width: calc(50% - 15px);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    position: relative;
    display: flex;
    flex-direction: column;
}

.google-g-logo {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 18px;
    height: 18px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/c/c1/Google_%22G%22_logo.svg') no-repeat center center/contain;
    opacity: 0.8;
}

.testimonial-header {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.user-info h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.user-meta-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.local-guide-label {
    color: #f2a154;
    font-weight: 600;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.rating {
    color: #ffb703;
    display: flex;
    gap: 2px;
    font-size: 0.85rem;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonial-card p.content {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.nav-dot {
    width: 10px;
    height: 10px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.nav-dot.active {
    background: var(--color-primary);
    width: 25px;
    border-radius: 10px;
}

/* Contact page styling */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 240, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.3rem;
}

.info-card-content h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 4px;
}

.info-card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.contact-form-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}

/* Footer Section */
footer {
    background-color: #000000 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 8% 40px 8%;
    color: #ffffff !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about .desc {
    color: #cccccc !important;
    font-size: 0.9rem;
    margin-top: 15px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #cccccc !important;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Floating widgets */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.whatsapp-widget:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Modal Popup for booking confirmation */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 9, 18, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-icon {
    font-size: 4rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.modal-box h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.modal-box p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

/* Responsive queries */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 50px;
        min-height: auto;
    }

    .hero-content {
        align-items: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-tag {
        justify-content: center;
    }

    .hero-tag::before {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition-smooth);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .top-bar {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .testimonials-slider {
        flex-direction: column;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}
