/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-height: 100vh;
}

/* AdSense-friendly content area */
.ad-container {
    margin: 20px 0;
    text-align: center;
    min-height: 280px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 127, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #a0a0a0;
    border-radius: 12px;
}

.content-wrapper {
    max-width: 100%;
    word_wrap: break-word;
}

/* Improve text readability for AdSense */
p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
    color: #b0b0b0;
}

:root {
    --primary-color: #00ff7f;
    --secondary-color: #00d4ff;
    --accent-color: #4CAF50;
    --text-dark: #e0e0e0;
    --text-light: #b0b0b0;
    --background-dark: #0a0a0a;
    --background-card: rgba(255, 255, 255, 0.05);
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    --shadow: 0 10px 30px rgba(0, 255, 127, 0.1);
    --glow: 0 0 20px rgba(0, 255, 127, 0.3);
    --border-radius: 12px;
}

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

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

.logo h1 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: none;
    letter-spacing: -0.025em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-menu > li {
    margin: 0 8px;
}

.nav-menu a {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #ffffff;
    background: rgba(71, 85, 105, 0.5);
    transform: translateY(-1px);
}

.nav-menu a::after {
    display: none;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: rgba(15, 23, 42, 0.98);
    min-width: 220px;
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1000;
    border: 1px solid rgba(71, 85, 105, 0.3);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    border-radius: 4px;
    margin: 2px 8px;
}

.dropdown-menu a:hover {
    background: rgba(71, 85, 105, 0.5);
    color: #ffffff;
    transform: translateX(4px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(0, 255, 127, 0.3);
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: 80px 20px;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    min-height: 80vh;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 127, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 255, 127, 0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #b0b0b0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #000;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 127, 0.6);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: rgba(0, 255, 127, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.4);
    text-shadow: 0 0 8px rgba(0, 255, 127, 0.6);
}

.hero-image {
    flex: 1;
    text-align: center;
    margin-left: 2rem;
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 255, 127, 0.2);
    border: 1px solid rgba(0, 255, 127, 0.3);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(0, 255, 127, 0.4);
}

h3 {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 127, 0.3);
}

/* Destination Cards */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.destination-card {
    background: var(--background-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 127, 0.2);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 127, 0.2);
    border-color: var(--primary-color);
}

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.destination-card:hover img {
    filter: brightness(1);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 8px rgba(0, 255, 127, 0.6);
}

/* Tips Section */
.travel-tips-preview {
    background: rgba(0, 255, 127, 0.02);
    border-top: 1px solid rgba(0, 255, 127, 0.1);
    border-bottom: 1px solid rgba(0, 255, 127, 0.1);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tip-card {
    background: var(--background-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 127, 0.2);
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 127, 0.2);
    border-color: var(--primary-color);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 127, 0.3));
}

.tip-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.tip-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* About Preview */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

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

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 255, 127, 0.2);
    border: 1px solid rgba(0, 255, 127, 0.3);
}

/* Footer */
.footer {
    background: rgba(5, 5, 5, 0.95);
    color: white;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 255, 127, 0.2);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(0, 255, 127, 0.3);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(0, 255, 127, 0.6);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 127, 0.2);
    color: #ccc;
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 127, 0.3);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 255, 127, 0.2);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.1);
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
    color: var(--primary-color);
    filter: drop-shadow(0 0 8px rgba(0, 255, 127, 0.3));
}

.contact-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

.contact-form-section {
    background: var(--background-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 255, 127, 0.2);
}

.contact-form-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 127, 0.3);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 255, 127, 0.3);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.3);
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Partners Page Styles */
.featured-partner {
    margin: 3rem 0;
}

.partner-hero {
    background: var(--gradient);
    border-radius: var(--border-radius);
    padding: 3rem;
    color: white;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 255, 127, 0.2);
    position: relative;
}

.partner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 127, 0.1) 0%, transparent 50%);
    pointer-events: none;
    border-radius: var(--border-radius);
}

.partner-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.partner-logo img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 255, 127, 0.3);
    border: 1px solid rgba(0, 255, 127, 0.3);
}

.partner-info h2 {
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
    text-shadow: 0 0 15px rgba(0, 255, 127, 0.4);
}

.partner-services {
    background: rgba(0, 255, 127, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 127, 0.2);
}

.partner-services h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(0, 255, 127, 0.3);
}

.travel-partners {
    margin: 4rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.partner-card {
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 127, 0.2);
    border-top: 4px solid var(--primary-color);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 127, 0.2);
    border-color: var(--primary-color);
}

.partner-card h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
    text-shadow: 0 0 8px rgba(0, 255, 127, 0.3);
}

.partner-category {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.partner-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.partner-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.partner-features li {
    padding: 0.3rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.partner-card .btn {
    width: 100%;
    justify-content: center;
    background: var(--primary-color);
    font-size: 1rem;
    padding: 12px 20px;
}

.partner-placeholder {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 2px dashed var(--primary-color);
}

.placeholder-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.placeholder-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.partnership-benefits {
    margin: 4rem 0;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Page-specific styles */
.page-header {
    margin-top: 70px;
    padding: 60px 0;
    background: var(--gradient);
    color: white;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 127, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 255, 127, 0.5);
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: #b0b0b0;
    position: relative;
    z-index: 1;
}

.content-section {
    padding: 60px 0;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 127, 0.3);
}

.article-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.article-content img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 255, 127, 0.2);
    border: 1px solid rgba(0, 255, 127, 0.3);
}

.breadcrumb {
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 255, 127, 0.2);
}

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

.breadcrumb a:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(0, 255, 127, 0.6);
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 127, 0.3);
}

.contact-methods {
    display: flex;
    flex-direction: column;
```
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 255, 127, 0.2);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.1);
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
    color: var(--primary-color);
    filter: drop-shadow(0 0 8px rgba(0, 255, 127, 0.3));
}

.contact-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

.contact-form-section {
    background: var(--background-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 255, 127, 0.2);
}

.contact-form-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 127, 0.3);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 255, 127, 0.3);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.3);
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Partners Page Styles */
.featured-partner {
    margin: 3rem 0;
}

.partner-hero {
    background: var(--gradient);
    border-radius: var(--border-radius);
    padding: 3rem;
    color: white;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 255, 127, 0.2);
    position: relative;
}

.partner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 127, 0.1) 0%, transparent 50%);
    pointer-events: none;
    border-radius: var(--border-radius);
}

.partner-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.partner-logo img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 255, 127, 0.3);
    border: 1px solid rgba(0, 255, 127, 0.3);
}

.partner-info h2 {
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
    text-shadow: 0 0 15px rgba(0, 255, 127, 0.4);
}

.partner-services {
    background: rgba(0, 255, 127, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 127, 0.2);
}

.partner-services h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(0, 255, 127, 0.3);
}

.travel-partners {
    margin: 4rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.partner-card {
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 127, 0.2);
    border-top: 4px solid var(--primary-color);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 127, 0.2);
    border-color: var(--primary-color);
}

.partner-card h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
    text-shadow: 0 0 8px rgba(0, 255, 127, 0.3);
}

.partner-category {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.partner-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.partner-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.partner-features li {
    padding: 0.3rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.partner-card .btn {
    width: 100%;
    justify-content: center;
    background: var(--primary-color);
    font-size: 1rem;
    padding: 12px 20px;
}

.partner-placeholder {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 2px dashed var(--primary-color);
}

.placeholder-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.placeholder-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.partnership-benefits {
    margin: 4rem 0;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Page-specific styles */
.page-header {
    margin-top: 70px;
    padding: 60px 0;
    background: var(--gradient);
    color: white;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 127, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 255, 127, 0.5);
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: #b0b0b0;
    position: relative;
    z-index: 1;
}

.content-section {
    padding: 60px 0;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 127, 0.3);
}

.article-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.article-content img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 255, 127, 0.2);
    border: 1px solid rgba(0, 255, 127, 0.3);
}

.breadcrumb {
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 255, 127, 0.2);
}

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

.breadcrumb a:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(0, 255, 127, 0.6);
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 127, 0.3);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 255, 127, 0.2);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.1);
}

.contact-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
    color: var(--primary-color);
    filter: drop-shadow(0 0 8px rgba(0, 255, 127, 0.3));
}

.contact-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

.contact-form-section {
    background: var(--background-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 255, 127, 0.2);
}

.contact-form-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 127, 0.3);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 255, 127, 0.3);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.3);
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Partners Page Styles */
.featured-partner {
    margin: 3rem 0;
}

.partner-hero {
    background: var(--gradient);
    border-radius: var(--border-radius);
    padding: 3rem;
    color: white;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 255, 127, 0.2);
    position: relative;
}

.partner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 127, 0.1) 0%, transparent 50%);
    pointer-events: none;
    border-radius: var(--border-radius);
}

.partner-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.partner-logo img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 255, 127, 0.3);
    border: 1px solid rgba(0, 255, 127, 0.3);
}

.partner-info h2 {
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
    text-shadow: 0 0 15px rgba(0, 255, 127, 0.4);
}

.partner-services {
    background: rgba(0, 255, 127, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 127, 0.2);
}

.partner-services h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(0, 255, 127, 0.3);
}

.travel-partners {
    margin: 4rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.partner-card {
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 127, 0.2);
    border-top: 4px solid var(--primary-color);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 127, 0.2);
    border-color: var(--primary-color);
}

.partner-card h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
    text-shadow: 0 0 8px rgba(0, 255, 127, 0.3);
}

.partner-category {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.partner-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.partner-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.partner-features li {
    padding: 0.3rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.partner-card .btn {
    width: 100%;
    justify-content: center;
    background: var(--primary-color);
    font-size: 1rem;
    padding: 12px 20px;
}

.partner-placeholder {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    border: 2px dashed var(--primary-color);
}

.placeholder-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.placeholder-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.partnership-benefits {
    margin: 4rem 0;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Page-specific styles */
.page-header {
    margin-top: 70px;
    padding: 60px 0;
    background: var(--gradient);
    color: white;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 127, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 255, 127, 0.5);
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: #b0b0b0;
    position: relative;
    z-index: 1;
}

.content-section {
    padding: 60px 0;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-content h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 127, 0.3);
}

.article-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.article-content img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 255, 127, 0.2);
    border: 1px solid rgba(0, 255, 127, 0.3);
}

.breadcrumb {
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 255, 127, 0.2);
}

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

.breadcrumb a:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(0, 255, 127, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        border-bottom: 1px solid rgba(0, 255, 127, 0.2);
    }

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

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

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

    .hero-image {
        margin-left: 0;
        margin-top: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        text-align: center;
    }

    .destinations-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partner-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-intro {
        font-size: 1.1rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glowing effects for interactive elements */
.btn:hover,
.destination-card:hover,
.tip-card:hover,
.partner-card:hover {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 5px rgba(0, 255, 127, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 255, 127, 0.4);
    }
    100% {
        box-shadow: 0 0 5px rgba(0, 255, 127, 0.2);
    }
}

/* Back to top button styling */
.back-to-top {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) !important;
    color: #000 !important;
    border: 2px solid var(--primary-color) !important;
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.3) !important;
}

.back-to-top:hover {
    box-shadow: 0 0 25px rgba(0, 255, 127, 0.6) !important;
}

.form-status {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    display: none;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #b0b0b0;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    min-width: 18px;
    height: 18px;
    background-color: #fff;
    border: 2px solid #e1e5e9;
    border-radius: 3px;
    position: relative;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: black;
    font-size: 12px;
    font-weight: bold;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    background: var(--primary-color);
    color: black;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(103, 126, 234, 0.3);
}

.btn-icon {
    font-size: 1.2rem;
}

.alternative-contact {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--background-card);
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(0, 255, 127, 0.2);
}

.alternative-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.alternative-contact a:hover {
    text-decoration: underline;
}

.faq-section {
    margin-top: 4rem;
}

.faq-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 127, 0.3);
}

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

.faq-item {
    background: var(--background-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
    border: 1px solid rgba(0, 255, 127, 0.2);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-shadow: 0 0 8px rgba(0, 255, 127, 0.3);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glowing effects for interactive elements */
.btn:hover,
.destination-card:hover,
.tip-card:hover,
.partner-card:hover {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 5px rgba(0, 255, 127, 0.2);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 255, 127, 0.4);
    }
    100% {
        box-shadow: 0 0 5px rgba(0, 255, 127, 0.2);
    }
}

/* Back to top button styling */
.back-to-top {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) !important;
    color: #000 !important;
    border: 2px solid var(--primary-color) !important;
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.3) !important;
}

.back-to-top:hover {
    box-shadow: 0 0 25px rgba(0, 255, 127, 0.6) !important;
}