@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@600;700;800;900&family=Playfair+Display:ital,wght@1,400;1,600&family=Permanent+Marker&display=swap');

:root {
    /* Brand Colors */
    --primary:        #2D6A4F;
    --primary-dark:   #1e4d38;
    --accent:         #F4A261;
    --accent-dark:    #e08040;
    --navy:           #1D3557;

    /* Neutral Palette */
    --bg-color:       #F8F9FA;
    --bg-card:        #FFFFFF;
    --text-primary:   #111827;
    --text-secondary: #6B7280;
    --border-color:   #E5E7EB;

    /* Status */
    --success:        #52B788;
    --danger:         #E63946;

    /* Typography */
    --font-body:      'Poppins', sans-serif;
    --font-heading:   'Montserrat', sans-serif;
    --font-brand:     'Permanent Marker', cursive;

    /* Misc */
    --radius:         16px;
    --shadow:         0 4px 24px rgba(0,0,0,0.06);
    --shadow-hover:   0 12px 32px rgba(0,0,0,0.12);
    --transition:     0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.3;
}

/* Typography Helpers */
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: var(--accent);
    color: #fff !important;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(244,162,97,0.35);
}

.btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244,162,97,0.45);
}

.btn-outline {
    background: transparent;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(45,106,79,0.3);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.navbar-brand span {
    color: var(--accent);
}

.navbar-logo {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}



.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Glass/Card Container Replacement (Keeping class name for compatibility) */
.glass-container {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all var(--transition);
}

.glass-container:hover {
    box-shadow: var(--shadow-hover);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--navy);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: var(--navy);
    color: #fff;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3, .footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.footer-col a {
    display: block;
    color: #cbd5e1;
    margin-bottom: 0.75rem;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}

/* Tour Cards (Global overrides) */
.best-seller-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
}

 / *   M o b i l e   N a v b a r   F i x e s   * / 
 @ m e d i a   ( m a x - w i d t h :   9 9 2 p x )   { 
         . n a v b a r   { 
                 f l e x - d i r e c t i o n :   c o l u m n ; 
                 p a d d i n g :   1 r e m ; 
                 g a p :   1 r e m ; 
                 p o s i t i o n :   r e l a t i v e ; 
         } 
         . n a v - l i n k s   { 
                 p o s i t i o n :   s t a t i c ; 
                 t r a n s f o r m :   n o n e ; 
                 f l e x - w r a p :   w r a p ; 
                 j u s t i f y - c o n t e n t :   c e n t e r ; 
                 w i d t h :   1 0 0 % ; 
                 g a p :   1 r e m ; 
         } 
         . n a v - a c t i o n s   { 
                 f l e x - w r a p :   w r a p ; 
                 j u s t i f y - c o n t e n t :   c e n t e r ; 
                 w i d t h :   1 0 0 % ; 
                 g a p :   0 . 5 r e m ; 
         } 
         . h e r o ,   . p a c k a g e s - h e a d e r   { 
                 m a r g i n - t o p :   0   ! i m p o r t a n t ; 
                 p a d d i n g - t o p :   2 r e m   ! i m p o r t a n t ; 
         } 
         . a u t h - c o n t a i n e r ,   . l e g a l - c o n t a i n e r ,   . d a s h b o a r d - c o n t a i n e r   { 
                 m a r g i n - t o p :   2 r e m   ! i m p o r t a n t ; 
         } 
 } 
 
 
 
