/* 
* Travel Dünya Seyahati - Modern Travel Platform CSS
* Version: 1.0
* Author: Travel Dünya Team
* 2024
*/

/* === Base Styles === */
:root {
    --primary-color: #3498db;
    --primary-dark: #2980b9;
    --secondary-color: #e67e22;
    --secondary-dark: #d35400;
    --tertiary-color: #27ae60;
    --tertiary-dark: #219650;
    --light-color: #f5f8fa;
    --dark-color: #2c3e50;
    --gray-color: #95a5a6;
    --light-gray: #ecf0f1;
    --border-color: #e0e0e0;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --black: #000000;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-sm: 4px;
    --section-spacing: 80px;
    --container-width: 1200px;
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

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

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

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1.5rem;
}

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

ul, ol {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: var(--section-spacing) 0;
}

/* === Current Time Display === */
.current-time {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 5px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

/* === Header Styles === */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 40px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
}

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

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    height: 3px;
    width: 25px;
    background-color: var(--dark-color);
    margin-bottom: 5px;
    border-radius: 3px;
    transition: var(--transition);
}

/* === Button Styles === */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--white);
}

.btn-tertiary {
    background-color: var(--tertiary-color);
    color: var(--white);
}

.btn-tertiary:hover {
    background-color: var(--tertiary-dark);
    color: var(--white);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

/* === Hero Section === */
.hero {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-content .btn {
    margin-right: 15px;
    margin-bottom: 15px;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
}

/* === Features Section === */
.features {
    text-align: center;
    background-color: var(--white);
}

.features h2 {
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    background-color: var(--primary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* === Popular Destinations === */
.popular-destinations {
    background-color: var(--light-color);
    text-align: center;
}

.popular-destinations h2 {
    margin-bottom: 3rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.destination-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-content {
    padding: 20px;
    text-align: left;
}

.destination-content h3 {
    margin-bottom: 10px;
}

.destination-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* === Testimonials === */
.testimonials {
    background-color: var(--white);
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 3rem;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial {
    flex: 0 0 calc(33.333% - 20px);
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: left;
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* === Footer === */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--light-gray);
    margin-bottom: 0;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--light-gray);
    transition: var(--transition);
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--light-gray);
}

.footer-contact p svg {
    margin-right: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

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

.footer-info p {
    margin-bottom: 0;
    color: var(--light-gray);
}

.footer-policy-links a {
    color: var(--light-gray);
    margin-left: 20px;
}

.footer-policy-links a:hover {
    color: var(--primary-color);
}

/* === Cookie Notice === */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 15px 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.cookie-content a {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* === Page Header === */
.page-header {
    background-color: var(--light-color);
    text-align: center;
    padding: 60px 0;
}

.page-header h1 {
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* === About Section === */
.about-section {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
}

/* === Mission Vision === */
.mission-vision {
    background-color: var(--light-color);
}

.mission-vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.mission, .vision {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.mission-icon, .vision-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission h2, .vision h2 {
    margin-bottom: 20px;
}

.mission p, .vision p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* === Expertise === */
.expertise {
    background-color: var(--white);
    text-align: center;
}

.expertise h2 {
    margin-bottom: 3rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.expertise-card {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: left;
    box-shadow: var(--box-shadow);
}

.expertise-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.expertise-card h3 {
    margin-bottom: 15px;
}

.expertise-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* === Company Stats === */
.company-stats {
    background-color: var(--light-color);
    text-align: center;
}

.company-stats h2 {
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-text {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* === Contact Info Section === */
.contact-info-section {
    background-color: var(--white);
    text-align: center;
}

.contact-info-section h2 {
    margin-bottom: 3rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-info-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info-card h3 {
    margin-bottom: 15px;
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.contact-info-card p:last-child {
    margin-bottom: 0;
}

/* === Registration Section === */
.registration-section {
    background-color: var(--white);
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.registration-form-container {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.registration-form-container h2 {
    margin-bottom: 30px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    font-weight: normal;
}

.login-link {
    text-align: center;
    margin-top: 20px;
}

.login-link a {
    color: var(--primary-color);
    font-weight: 600;
}

/* === Subscription Plans === */
.subscription-plans {
    background-color: var(--white);
}

.subscription-plans h2 {
    margin-bottom: 30px;
    text-align: center;
}

.subscription-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.subscription-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: var(--transition);
}

.subscription-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.subscription-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.subscription-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.subscription-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: var(--border-radius-sm);
}

.subscription-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.subscription-header h3 {
    margin-bottom: 15px;
}

.subscription-price {
    margin-bottom: 0;
}

.subscription-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.subscription-price .period {
    font-size: 1rem;
    color: var(--text-light);
}

.subscription-features {
    padding: 30px;
}

.subscription-features ul {
    list-style: none;
    margin: 0;
}

.subscription-features ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-color);
}

.subscription-features ul li svg {
    margin-right: 10px;
    color: var(--tertiary-color);
    flex-shrink: 0;
}

.subscription-features ul li.feature-disabled {
    color: var(--gray-color);
}

.subscription-features ul li.feature-disabled svg {
    color: var(--gray-color);
}

.subscription-action {
    padding: 0 30px 30px;
    text-align: center;
}

/* === Registration Benefits === */
.registration-benefits {
    background-color: var(--light-color);
    text-align: center;
}

.registration-benefits h2 {
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.benefit-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* === Success Popup === */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    display: none;
}

.success-popup-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.success-popup-icon {
    color: var(--tertiary-color);
    margin-bottom: 20px;
}

.success-popup-content h3 {
    margin-bottom: 15px;
}

.success-popup-content p {
    margin-bottom: 25px;
    color: var(--text-light);
}

/* === FAQ Section === */
.faq-section {
    background-color: var(--white);
}

.faq-search {
    display: flex;
    margin-bottom: 30px;
}

.faq-search input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-top-left-radius: var(--border-radius-sm);
    border-bottom-left-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
}

.faq-search button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-top-right-radius: var(--border-radius-sm);
    border-bottom-right-radius: var(--border-radius-sm);
    cursor: pointer;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.category-button {
    background-color: var(--light-color);
    border: none;
    padding: 8px 15px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.category-button.active,
.category-button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.faq-list {
    margin-bottom: 30px;
}

.faq-item {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-not-found {
    text-align: center;
    padding: 40px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    display: none;
}

.faq-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.faq-step {
    display: flex;
    align-items: center;
}

.step-number {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 10px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius-sm);
}

.contact-method svg {
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-method h4 {
    margin-bottom: 5px;
}

.response-time {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.payment-method {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 15px;
    border-radius: var(--border-radius-sm);
}

.payment-method svg {
    color: var(--primary-color);
    margin-right: 10px;
}

/* === Contact CTA === */
.contact-cta {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

.contact-cta h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.contact-cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-cta .btn {
    background-color: var(--white);
    color: var(--primary-color);
}

.contact-cta .btn:hover {
    background-color: var(--light-color);
}

/* === Blog Section === */
.blog-section {
    background-color: var(--white);
}

.blog-filters {
    margin-bottom: 40px;
}

.search-box {
    display: flex;
    margin-bottom: 20px;
}

.search-box input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-top-left-radius: var(--border-radius-sm);
    border-bottom-left-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
}

.search-box button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-top-right-radius: var(--border-radius-sm);
    border-bottom-right-radius: var(--border-radius-sm);
    cursor: pointer;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-btn {
    background-color: var(--light-color);
    border: none;
    padding: 8px 15px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.category-btn.active,
.category-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.post-category {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 15px;
}

.post-date, .post-read-time {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-right: 15px;
}

.featured-post-content h2 {
    margin-bottom: 15px;
}

.featured-post-content p {
    margin-bottom: 25px;
    color: var(--text-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-image .post-category {
    position: absolute;
    top: 10px;
    left: 10px;
}

.blog-card-content {
    padding: 20px;
}

.blog-card-content .post-meta {
    margin-bottom: 10px;
}

.blog-card-content h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.blog-card-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.read-more {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
}

.read-more svg {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover svg {
    transform: translateX(5px);
}

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

.pagination-prev,
.pagination-next {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-weight: 500;
}

.pagination-prev svg {
    margin-right: 5px;
}

.pagination-next svg {
    margin-left: 5px;
}

.pagination-prev.disabled,
.pagination-next.disabled {
    color: var(--gray-color);
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 10px;
}

.pagination-numbers a,
.pagination-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: var(--text-color);
    font-weight: 500;
}

.pagination-numbers a.active,
.pagination-numbers a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* === Newsletter === */
.newsletter {
    background-color: var(--light-color);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 25px;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    margin-bottom: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-top-left-radius: var(--border-radius-sm);
    border-bottom-left-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
}

.newsletter-form button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.newsletter-privacy {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* === Contact Section === */
.contact-section {
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2,
.contact-form-container h2 {
    margin-bottom: 30px;
}

.info-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
}

.info-icon {
    background-color: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-text h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-text p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.info-text p:last-child {
    margin-bottom: 0;
}

.social-connect {
    margin-top: 40px;
}

.social-connect h3 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.social-icon {
    background-color: var(--light-color);
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.contact-form-container {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* === Map Section === */
.map-section {
    background-color: var(--light-color);
    text-align: center;
}

.map-section h2 {
    margin-bottom: 30px;
}

.map-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.map-overlay p {
    margin-bottom: 20px;
}

/* === FAQ Quick Section === */
.faq-quick-section {
    background-color: var(--white);
}

.faq-quick-section h2 {
    margin-bottom: 30px;
    text-align: center;
}

.faq-quick-list {
    margin-bottom: 30px;
}

.faq-quick-item {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-quick-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-quick-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-quick-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-quick-answer p {
    color: var(--text-light);
    margin-bottom: 0;
}

.faq-quick-more {
    text-align: center;
}

/* === Team Section === */
.team-intro {
    background-color: var(--white);
}

.team-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.team-intro-text h2 {
    margin-bottom: 20px;
}

.team-intro-text p {
    color: var(--text-light);
}

.team-intro-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.team-members {
    background-color: var(--light-color);
    text-align: center;
}

.team-members h2 {
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    margin-bottom: 5px;
}

.team-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--text-light);
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    gap: 10px;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--light-color);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* === Company Culture === */
.company-culture {
    background-color: var(--white);
    text-align: center;
}

.company-culture h2 {
    margin-bottom: 3rem;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.culture-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.culture-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.culture-card h3 {
    margin-bottom: 15px;
}

.culture-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* === Join Team === */
.join-team {
    background-color: var(--light-color);
}

.join-team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.join-team-text h2 {
    margin-bottom: 20px;
}

.join-team-text p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.join-team-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* === Blog Post Header === */
.blog-post-header {
    background-color: var(--light-color);
    padding: 60px 0 30px;
    text-align: center;
}

.blog-post-header h1 {
    margin: 10px 0 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post-header .post-meta {
    justify-content: center;
    margin-bottom: 0;
}

.post-author {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.post-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

/* === Blog Post Featured Image === */
.blog-post-featured-image {
    padding: 0;
}

.blog-post-featured-image img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

/* === Blog Post Content === */
.blog-post-content {
    background-color: var(--white);
    padding: 60px 0;
}

.post-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.post-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
}

.post-intro {
    font-size: 1.2rem;
    color: var(--text-color);
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
}

.post-content h2 {
    margin: 40px 0 20px;
    color: var(--dark-color);
}

.post-content p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.post-quote {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    border-left: 5px solid var(--primary-color);
}

.post-quote p {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0;
}

.post-image {
    margin: 30px 0;
}

.post-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
}

.post-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

.post-tips {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.post-tips h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.post-tips ul {
    margin-bottom: 0;
}

.post-cta {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 40px 0 20px;
    text-align: center;
}

.post-cta h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.post-cta p {
    color: var(--light-color);
    margin-bottom: 20px;
}

.post-cta .btn {
    background-color: var(--white);
    color: var(--primary-color);
}

.post-cta .btn:hover {
    background-color: var(--light-color);
}

/* === Post Sidebar === */
.post-sidebar > div {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.author-box {
    text-align: center;
}

.author-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
}

.author-box h3 {
    margin-bottom: 5px;
}

.author-box p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.author-box p.author-bio {
    text-align: left;
    font-size: 0.95rem;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.author-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.share-box h3 {
    margin-bottom: 20px;
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.share-button.facebook {
    background-color: #3b5998;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.pinterest {
    background-color: #bd081c;
}

.share-button.linkedin {
    background-color: #0077b5;
}

.share-button:hover {
    transform: translateY(-3px);
    color: var(--white);
}

.related-posts h3 {
    margin-bottom: 20px;
}

.related-post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.related-post-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    margin-right: 15px;
}

.related-post-item h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.related-post-item a {
    color: var(--dark-color);
}

.related-post-item a:hover {
    color: var(--primary-color);
}

.related-post-item span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.tags-box h3 {
    margin-bottom: 20px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background-color: var(--white);
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    color: var(--text-color);
    transition: var(--transition);
}

.tag:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* === Post Navigation === */
.post-navigation {
    background-color: var(--light-color);
    padding: 40px 0;
}

.post-navigation-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.prev-post, .next-post {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.prev-post:hover, .next-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.prev-post a, .next-post a {
    color: var(--text-color);
}

.prev-post span, .next-post span {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

.prev-post h4, .next-post h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.next-post {
    text-align: right;
}

/* === Comments === */
.comments {
    background-color: var(--white);
    padding: 60px 0;
}

.comments h2 {
    margin-bottom: 30px;
}

.comment-form {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
}

.comment-form h3 {
    margin-bottom: 20px;
}

.comment-list {
    margin-top: 40px;
}

.comment {
    display: flex;
    margin-bottom: 30px;
}

.comment.reply {
    margin-left: 50px;
}

.comment-avatar {
    margin-right: 20px;
}

.comment-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-header h4 {
    margin-bottom: 0;
}

.comment-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.comment-text p {
    margin-bottom: 10px;
}

.comment-actions a {
    color: var(--primary-color);
    font-weight: 500;
}

.load-more-comments {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--light-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-color);
    font-weight: 500;
    margin-top: 20px;
}

.load-more-comments:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* === Media Queries === */
@media (max-width: 1200px) {
    .container {
        max-width: 992px;
    }

    .hero-content {
        padding: 40px 0;
    }

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

    .features-grid, 
    .destinations-grid, 
    .stats-grid, 
    .contact-info-grid,
    .benefits-grid,
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 768px;
    }

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

    .hero-image {
        position: static;
        width: 100%;
        height: 400px;
    }

    .hero .container {
        display: flex;
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content, 
    .mission-vision-content, 
    .registration-content, 
    .team-intro-content, 
    .join-team-content,
    .contact-content,
    .post-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .featured-post-image {
        height: 300px;
    }

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

    .info-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 576px;
    }

    nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

    .footer-content, 
    .features-grid, 
    .destinations-grid, 
    .stats-grid, 
    .contact-info-grid,
    .benefits-grid,
    .culture-grid,
    .blog-grid,
    .expertise-grid,
    .team-grid,
    .subscription-cards {
        grid-template-columns: 1fr;
    }

    .post-navigation-links {
        grid-template-columns: 1fr;
    }

    .next-post {
        text-align: left;
    }

    .comment.reply {
        margin-left: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hero-content {
        padding: 30px 0;
    }

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

    .hero-image {
        height: 300px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-policy-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-policy-links a {
        margin-left: 0;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .post-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: auto;
    }

    .comment {
        flex-direction: column;
    }

    .comment-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .post-header .post-meta {
        flex-direction: column;
        gap: 10px;
    }
}
