/* ==========================================================================
   PREMIUM LINK TRAVELS - GLOBAL STYLESHEET
   ========================================================================== */

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

/* CSS Variables for Luxury Theme */
:root {
    --bg-primary: #050b14;
    --bg-secondary: #0a1220;
    --bg-tertiary: #0e192c;
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --gold: #d4af37;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --gold-dark: #b89326;
    
    --sky-blue: #0ea5e9;
    --sky-blue-glow: rgba(14, 165, 233, 0.3);
    --sky-blue-light: #38bdf8;
    
    --glass-bg: rgba(10, 18, 32, 0.75);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-border-hover: rgba(212, 175, 55, 0.25);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    
    --font-heading: 'Sora', sans-serif;
    --font-subheading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset and Global Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
}

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

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

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

ul {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    background: none;
    border: none;
    color: inherit;
}

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
    border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.section-title span {
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.section-title h2 strong {
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
}

/* Glassmorphism Card Template */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 12px 40px 0 rgba(212, 175, 55, 0.15);
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-family: var(--font-subheading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--gold-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    border-color: var(--sky-blue);
    background: rgba(14, 165, 233, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--sky-blue-glow);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background: #20ba59;
}

/* Global Navigation Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-medium);
    padding: 1.5rem 0;
}

header.scrolled {
    padding: 0.8rem 0;
    background: rgba(5, 11, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.logo span {
    color: var(--gold);
    position: relative;
}

.logo i {
    color: var(--gold);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px var(--gold-glow));
}

.nav-menu {
    display: flex;
    gap: 2.2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-subheading);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--sky-blue));
    transition: var(--transition-medium);
}

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

.nav-link.active {
    color: var(--gold);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-secondary);
        backdrop-filter: blur(20px);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: var(--transition-medium);
        z-index: 1000;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
}

/* Floating Shapes Background */
.bg-glow-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: float 20s infinite alternate ease-in-out;
}

.bg-glow-1 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    top: -10%;
    right: 5%;
}

.bg-glow-2 {
    width: 500px;
    height: 500px;
    background: var(--sky-blue);
    bottom: 10%;
    left: -10%;
    animation-delay: -5s;
}

.bg-glow-3 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    top: 60%;
    right: -5%;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(40px, -40px) scale(1.15);
    }
    100% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   PAGE SPECIFIC LAYOUTS & COMPONENT DESIGN
   ========================================================================== */

/* 1. Hero Template */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
    z-index: 10;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    z-index: -2;
    animation: zoomBackground 30s infinite alternate ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 11, 20, 0.4) 0%, var(--bg-primary) 95%);
    z-index: -1;
}

@keyframes zoomBackground {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-family: var(--font-subheading);
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 5px rgba(212, 175, 55, 0.1); }
    100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 40%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-indicator .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollMouse 1.5s infinite;
}

@keyframes scrollMouse {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.6rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

/* Inner Page Hero template */
.inner-hero {
    position: relative;
    height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 6rem;
    overflow: hidden;
}

.inner-hero .hero-bg {
    animation: none;
}

.inner-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 40%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.inner-hero .breadcrumb {
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
}

.inner-hero .breadcrumb span {
    color: var(--gold);
}

@media (max-width: 768px) {
    .inner-hero {
        height: 40vh;
    }
    .inner-hero h1 {
        font-size: 2.2rem;
    }
}

/* Global Container Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* 2. Trust Section (Why Choose Us) */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.trust-card {
    padding: 3rem 2rem;
    text-align: center;
}

.trust-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(14, 165, 233, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--gold);
    font-size: 2rem;
    transition: var(--transition-medium);
}

.trust-card:hover .trust-icon-box {
    color: #000;
    background: var(--gold);
    transform: rotateY(180deg);
    box-shadow: 0 0 20px var(--gold-glow);
}

.trust-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* 3. Destination Showcase Cards */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 10;
}

@media (max-width: 480px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}

.dest-card {
    height: 480px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-medium);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dest-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.dest-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.dest-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 18, 32, 0) 30%, rgba(10, 18, 32, 0.8) 70%, var(--bg-secondary) 100%);
    z-index: 2;
    transition: var(--transition-medium);
}

.dest-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(10, 18, 32, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    z-index: 3;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.dest-info-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.2rem;
    z-index: 3;
    transition: var(--transition-medium);
}

.dest-info-box h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dest-info-box p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    opacity: 0.85;
    line-height: 1.5;
}

.dest-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.25rem;
}

.dest-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.dest-duration i {
    color: var(--gold);
}

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

.dest-price span {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
}

.dest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(212, 175, 55, 0.3);
}

.dest-card:hover .dest-image-wrapper img {
    transform: scale(1.1);
}

.dest-card:hover .dest-gradient {
    background: linear-gradient(180deg, rgba(10, 18, 32, 0.1) 0%, rgba(10, 18, 32, 0.8) 60%, var(--bg-secondary) 100%);
}

/* 4. Services Grid (Minimal and Luxurious) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.service-card {
    padding: 3rem 2.2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(14, 165, 233, 0.2);
    color: var(--sky-blue);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition-medium);
}

.service-card:hover .service-icon {
    color: #fff;
    background: var(--sky-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--sky-blue-glow);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.6;
}

.service-bullet-list {
    margin-bottom: 2rem;
}

.service-bullet-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.service-bullet-list li i {
    color: var(--gold);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-family: var(--font-subheading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: auto;
}

.service-link i {
    transition: var(--transition-fast);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* 5. Testimonial Section */
.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 1rem;
}

.testimonial-card {
    padding: 3.5rem 3rem;
    text-align: center;
    border-radius: 24px;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.15);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 300;
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.3rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold);
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-top: 0.2rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 15px var(--gold-glow);
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

/* 6. Instagram Showcase Section */
.instagram-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.instagram-handle {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.instagram-handle:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--gold-glow);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 10;
    margin-bottom: 4rem;
}

.instagram-card {
    border-radius: 20px;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--glass-shadow);
}

.instagram-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.instagram-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 18, 32, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: var(--transition-medium);
    z-index: 2;
}

.instagram-stats {
    display: flex;
    gap: 2rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.instagram-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instagram-stats i {
    color: var(--gold);
}

.instagram-tag {
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.instagram-card:hover img {
    transform: scale(1.1);
}

.instagram-card:hover .instagram-hover {
    opacity: 1;
}

.instagram-cta-wrapper {
    text-align: center;
}

/* 7. About Page Components */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story-img {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-story-img img {
    width: 100%;
    border-radius: 24px;
    transition: var(--transition-slow);
}

.about-story-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 18, 32, 0) 60%, var(--bg-primary) 100%);
}

.about-story-text h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-story-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-story-text p strong {
    color: var(--gold);
}

@media (max-width: 992px) {
    .about-story {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Animated Stats Counters */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--gold) 30%, var(--sky-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Core Values cards */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    padding: 2.5rem 2rem;
}

.value-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

/* 8. Visa Assistance Page Components */
.visa-process-timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 2rem 0;
}

.visa-process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--sky-blue) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 4rem;
    position: relative;
    width: 50%;
    padding: 0 3rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-primary);
    border: 4px solid var(--gold);
    position: absolute;
    top: 5px;
    z-index: 10;
    transition: var(--transition-medium);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -12px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12px;
}

.timeline-item:hover .timeline-dot {
    background: var(--gold);
    box-shadow: 0 0 15px var(--gold);
}

.timeline-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.2);
    display: block;
    margin-bottom: 0.5rem;
}

.timeline-item:hover .timeline-number {
    color: var(--gold);
}

.timeline-card {
    padding: 2.5rem;
}

.timeline-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.timeline-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .visa-process-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 3rem;
        padding-right: 0;
        text-align: left !important;
        margin-bottom: 3rem;
    }
    
    .timeline-dot {
        left: 8px !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-dot {
        right: auto;
    }
}

/* Checklist Grid */
.checklist-container {
    margin-top: 4rem;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.checklist-card {
    padding: 2.5rem;
}

.checklist-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checklist-card h3 i {
    color: var(--gold);
}

.checklist-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-list li {
    display: flex;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.checklist-list li i {
    color: var(--sky-blue);
    font-size: 1rem;
    margin-top: 0.2rem;
}

/* 9. Contact Page Components */
.contact-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

@media (max-width: 992px) {
    .contact-section-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card-box {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    width: 100%;
    text-align: left;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-medium);
}

.contact-card-box:hover .contact-card-icon {
    transform: scale(1.1);
}

.contact-card-box.whatsapp .contact-card-icon {
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.3);
}

.contact-card-box.email .contact-card-icon {
    color: #ea4335;
    border-color: rgba(234, 67, 53, 0.3);
}

.contact-card-box.instagram .contact-card-icon {
    color: #e1306c;
    border-color: rgba(225, 48, 108, 0.3);
}

.contact-card-box.phone .contact-card-icon {
    color: var(--sky-blue);
    border-color: rgba(14, 165, 233, 0.3);
}

.contact-card-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.contact-card-details p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact-card-action {
    font-family: var(--font-subheading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition-fast);
}

.contact-card-box.whatsapp .contact-card-action { color: #25d366; }
.contact-card-box.email .contact-card-action { color: #ea4335; }
.contact-card-box.instagram .contact-card-action { color: #e1306c; }
.contact-card-box.phone .contact-card-action { color: var(--sky-blue); }

.contact-card-box:hover .contact-card-action {
    gap: 0.6rem;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hours-card {
    padding: 2.5rem;
}

.hours-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hours-card h3 i {
    color: var(--gold);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 0.5rem;
}

.hours-row.active {
    color: var(--text-primary);
}

.hours-row span:last-child {
    font-weight: 600;
}

.hours-row.active span:last-child {
    color: var(--gold);
}

.map-placeholder {
    height: 300px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-secondary);
    text-align: center;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--gold);
    animation: bounceMap 2s infinite alternate ease-in-out;
}

@keyframes bounceMap {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* 10. Floating CTA/Banner Section (Newsletter Style) */
.cta-banner {
    padding: 6rem 0;
    position: relative;
}

.cta-banner-card {
    padding: 4.5rem 3rem;
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-banner-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 40%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-banner-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.4rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-form input {
    flex-grow: 1;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--text-muted);
}

.newsletter-form button {
    background: var(--gold);
    color: #000;
    font-family: var(--font-subheading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

@media (max-width: 600px) {
    .cta-banner-card {
        padding: 3rem 1.5rem;
    }
    
    .cta-banner-content h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        background: none;
        border: none;
        padding: 0;
        gap: 1rem;
    }
    
    .newsletter-form input {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50px;
        padding: 1rem 1.5rem;
    }
    
    .newsletter-form button {
        padding: 1rem;
        width: 100%;
    }
}

/* 11. Footer */
footer {
    background-color: #03060c;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 5rem 0 2rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-info-col p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-social-icon:hover {
    color: #fff;
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-subheading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.8rem;
    position: relative;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a i {
    font-size: 0.8rem;
    opacity: 0;
    transition: var(--transition-fast);
}

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

.footer-links a:hover i {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 1.1rem;
    margin-top: 0.1rem;
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-insta-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.footer-insta-img {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.footer-insta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-fast);
}

.footer-insta-img::after {
    content: '\f16d';
    font-family: 'Font Awesome 6 Brands';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 18, 32, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: var(--transition-fast);
    font-size: 1rem;
}

.footer-insta-img:hover img {
    transform: scale(1.1);
}

.footer-insta-img:hover::after {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   8. SCROLL PROGRESS INDICATOR & FLOATING SUPPORT WIDGET
   ========================================================================== */

/* Top Horizontal Page Scroll Progress */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(5, 11, 20, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
    pointer-events: none;
}

.scroll-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--sky-blue) 100%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transition: width 0.1s ease-out;
}

/* Floating WhatsApp FAB + Circle Level Progress */
.floating-support {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    animation: bounceFAB 2.5s infinite alternate ease-in-out;
}

@keyframes bounceFAB {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.floating-support:hover {
    transform: scale(1.1) translateY(-3px);
    animation-play-state: paused;
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    transform: rotate(-90deg);
}

.progress-ring__circle, 
.progress-ring__circle--value {
    transition: stroke-dashoffset 0.1s ease-out;
}

.progress-ring__circle--value {
    stroke-dasharray: 163.36; /* 2 * PI * r = 2 * 3.14159 * 26 = 163.36 */
    stroke-dashoffset: 163.36;
    filter: drop-shadow(0 0 3px var(--gold));
}

.support-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 2;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.floating-support:hover .support-icon-box {
    background: #20ba59;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.support-tooltip {
    position: absolute;
    right: 70px;
    background: var(--bg-secondary);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-primary);
    font-family: var(--font-subheading);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
    white-space: nowrap;
    box-shadow: var(--glass-shadow);
}

.floating-support:hover .support-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .floating-support {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }
    .progress-ring {
        width: 50px;
        height: 50px;
    }
    /* Recalculate circle coordinates for 50px size dynamically */
    .progress-ring cx, 
    .progress-ring cy {
        cx: 25;
        cy: 25;
    }
    .support-icon-box {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    .support-tooltip {
        display: none; /* Hide on extremely small screen widths */
    }
}

