/* 
   Travel Companion - Elite Professional Edition
   Redesign: Ultra-Premium Luxury Travel Aesthetic
   Theme: Midnight Gold & Glassmorphism
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Italianno&display=swap');

:root {
    --midnight: #020617;
    --navy-deep: #0f172a;
    --gold: #D4AF37;
    --gold-glow: #f59e0b;
    --champagne: #FDFCF0;
    --white: #FFFFFF;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-400: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --transition-smooth: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--midnight);
    color: var(--slate-100);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Hide default cursor for premium feel */
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    z-index: 9999;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
}

@media (max-width: 1024px) {
    body { cursor: auto; }
    .cursor-dot, .cursor-outline { display: none; }
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Layout */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 160px 0;
    position: relative;
}

.section-title {
    margin-bottom: 100px;
}

.section-title h4 {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.section-title h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--white);
}

/* Luxury Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: var(--transition-smooth);
}

nav.fixed {
    padding: 15px 0;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    text-decoration: none;
    color: var(--white);
    letter-spacing: -1px;
}

.logo span { 
    color: var(--gold); 
    font-style: italic;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 50px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--slate-400);
    font-weight: 500;
    font-size: 0.9rem;
    transition: 0.4s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: 0.4s;
}

.nav-links a:hover { 
    color: var(--white); 
}

.nav-links a.active {
    color: var(--white);
}

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

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

/* Immersive Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transform: scale(1.1);
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(2, 6, 23, 0.4) 50%, var(--midnight) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 700;
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: var(--slate-400);
    max-width: 600px;
    line-height: 1.8;
}

.btn-group {
    display: flex;
    gap: 25px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 45px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-gold {
    background: var(--gold);
    color: var(--midnight);
}

.btn-gold:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--white);
}

/* Professional About */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 120px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding: 40px;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 70%;
    border-left: 2px solid var(--gold);
    border-top: 2px solid var(--gold);
    z-index: 1;
}

.about-image {
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    border-radius: 2px;
}

.about-image img {
    width: 100%;
    display: block;
    transition: 1.5s ease;
}

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

.about-stats {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--gold);
    padding: 40px;
    color: var(--midnight);
    z-index: 3;
}

.about-stats h3 { font-size: 3rem; margin-bottom: 5px; }
.about-stats p { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }

.signature {
    font-family: 'Italianno', cursive;
    font-size: 4rem;
    color: var(--gold);
    margin-top: 40px;
    opacity: 0.8;
}

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

.service-card {
    background: var(--glass);
    padding: 80px 60px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--gold), transparent);
    opacity: 0;
    transition: 0.6s;
}

.service-card:hover {
    transform: translateY(-20px);
    border-color: var(--gold);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 40px;
    display: block;
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 25px;
}

.service-card p {
    color: var(--slate-400);
    font-size: 1.1rem;
}

/* Elite Gallery */
.gallery-stagger {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    height: 800px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(1deg);
}

.gallery-item.large { grid-column: span 8; grid-row: span 2; }
.gallery-item.tall { grid-column: span 4; grid-row: span 2; }
.gallery-item.small { grid-column: span 4; grid-row: span 1; }

.gallery-label {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s;
}

.gallery-label h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 5px; }
.gallery-label span { color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em; }

.gallery-item:hover .gallery-label {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(2,6,23,0.9));
    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
    z-index: 1;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Tour Plan Details */
.tour-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 60px;
    margin-bottom: 40px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.tour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.tour-card:hover {
    border-color: var(--gold);
    transform: translateX(10px);
}

.tour-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tour-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tour-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.tour-info {
    flex: 1;
    min-width: 250px;
}

.tour-info h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 10px;
}

.tour-info p {
    color: var(--slate-400);
    font-size: 1rem;
}

.tour-price {
    background: var(--gold);
    color: var(--midnight);
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
}

.tour-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
}

.tour-days h4 {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.tour-days p {
    color: var(--white);
    font-size: 1.1rem;
}

.tour-itinerary h4 {
    color: var(--gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.tour-itinerary ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.tour-itinerary li {
    color: var(--slate-400);
    font-size: 1rem;
}

/* Editorial Testimonials */
.testimonial-section {
    background: var(--navy-deep);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.testimonial-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-box q {
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--white);
    line-height: 1.3;
}

.testimonial-user {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.testimonial-user img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    padding: 5px;
}

/* Modern Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    padding: 100px;
    border: 1px solid var(--glass-border);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-400);
    margin-bottom: 15px;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    color: var(--white);
    font-size: 1.1rem;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--gold);
}

/* Scroll Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(60px);
    transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal="fade"] { transform: translateY(0); }
[data-reveal="left"] { transform: translateX(-60px); }
[data-reveal="right"] { transform: translateX(60px); }

/* Footer */
footer {
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.social-links a {
    color: var(--slate-400);
    font-size: 1.5rem;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 1200px) {
    .container { padding: 0 30px; }
    .contact-grid { padding: 60px; gap: 60px; }
}

@media (max-width: 1024px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .gallery-stagger { height: auto; display: flex; flex-direction: column; }
    .gallery-item { height: 400px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 3.5rem; }
    .section { padding: 100px 0; }
    .contact-form .form-row { grid-template-columns: 1fr; }
}

/* Service Detail Page Specific */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: start;
}

.service-content {
    max-width: 900px;
}

.service-form-sidebar .contact-form {
    position: relative;
}

@media (max-width: 1024px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .service-form-sidebar .contact-form {
        position: static !important;
    }
}

/* Sticky form on desktop */
.sticky-form {
    position: sticky;
    top: 120px;
    z-index: 100;
}

/* Form styling for service page */
.service-form-sidebar .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.service-form-sidebar .form-group {
    margin-bottom: 25px;
}

.service-form-sidebar .form-group label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-400);
    margin-bottom: 12px;
}

.service-form-sidebar .form-group input,
.service-form-sidebar .form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.service-form-sidebar .form-group input:focus,
.service-form-sidebar .form-group textarea:focus {
    border-color: var(--gold);
}

.service-form-sidebar .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Tour Plan Details (enhanced) */
.tour-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin: 40px 0;
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.tour-stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.tour-stat-label {
    color: var(--slate-400);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Gallery Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 23, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  overflow: auto;
  padding: 60px;
}
.lightbox.active {
  display: flex;
}
.lightbox-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 100%;
}
.lightbox img {
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  animation: lightboxFade 0.3s ease;
}
@keyframes lightboxFade {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2.5rem;
  color: var(--white);
  cursor: pointer;
  z-index: 10001;
  transition: color 0.3s;
  background: none;
  border: none;
}
.lightbox-close:hover {
  color: var(--gold);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: var(--white);
  cursor: pointer;
  z-index: 10001;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border-radius: 50%;
}
.lightbox-nav:hover {
  background: var(--gold);
  color: var(--midnight);
  border-color: var(--gold);
}
.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* Service card enhancements */
.service-card {
    background: var(--glass);
    padding: 80px 60px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.service-card:hover {
    transform: translateY(-20px);
    border-color: var(--gold);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 40px;
    display: block;
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 25px;
}

.service-card p {
    color: var(--slate-400);
    font-size: 1.1rem;
}

/* Redesigned Travemate Overview and Consultation Section */
.travemate-overview-section {
    background: radial-gradient(circle at top, var(--navy-deep) 0%, var(--midnight) 100%) !important;
    border-top: 1px solid var(--glass-border);
    padding: 120px 0;
}

.travemate-overview-section .section-title {
    margin-bottom: 60px;
    text-align: center;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

@media (max-width: 1200px) {
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.overview-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 50px 40px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.overview-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.overview-card h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 25px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.overview-card h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.overview-card-intro {
    font-size: 1.02rem;
    color: var(--slate-300);
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.overview-quote {
    font-size: 1.1rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    line-height: 1.6;
    margin-top: 25px;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

.overview-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.overview-list li {
    font-size: 1rem;
    color: var(--slate-300);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.overview-list li i {
    color: var(--gold);
    font-size: 0.95rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.overview-consultation-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
    transition: var(--transition-smooth);
}

.overview-consultation-cta:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
}

.overview-consultation-cta h4 {
    font-size: 1.25rem;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.overview-consultation-cta p {
    font-size: 0.95rem;
    color: var(--slate-400);
    line-height: 1.6;
    margin: 0;
}

