/* ==========================================
   CSS Reset & Base Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Blue & Red Theme (Inspired by Logo) */
    --gold-primary: #DC143C;
    --gold-light: #FF6B8A;
    --gold-dark: #B01030;
    --green-primary: #1a3a52;
    --green-light: #2d5a7b;
    --green-dark: #0d1f2d;
    --cream: #F0F4F8;
    --cream-dark: #E1E8ED;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray: #666666;
    --gray-light: #CCCCCC;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.2);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

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

ul {
    list-style: none;
}

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

/* ==========================================
   Header & Navigation
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #192b37;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px var(--shadow-strong);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-primary);
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo i {
    color: var(--gold-primary);
    font-size: 1.8rem;
}

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

.nav-menu li a {
    font-weight: 600;
    color: var(--white);
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B8A;
    transition: var(--transition);
}

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

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #FF6B8A;
}

.btn-nav {
    background: #DC143C;
    color: var(--white) !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px;
    font-weight: 600;
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    background: #B01030;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
}

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

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

.btn-secondary:hover {
    background: var(--green-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-strong);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* ==========================================
   Hero Slider - Professional Design
   ========================================== */
.hero-slider {
    position: relative;
    height: 100vh;
    margin-top: 0;
    padding-top: 0;
    overflow: hidden;
    z-index: 1;
}

.slider-container {
    height: 100%;
    position: relative;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 0s 1.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 1.2s ease-in-out, visibility 0s 0s;
    pointer-events: none;
}

.slide.active .slide-content {
    pointer-events: auto;
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
}

.slide-content .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 100;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.7);
    line-height: 1.2;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    font-weight: 400;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Professional Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 58, 82, 0.85);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--gold-primary);
    border-color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.4);
}

.slider-btn.prev {
    left: 2rem;
}

.slider-btn.next {
    right: 2rem;
}

/* Professional Slider Dots - Always Visible */
.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 50;
    background: rgba(26, 58, 82, 0.6);
    padding: 12px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid rgba(255,255,255,0.8);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.dot:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--gold-primary);
    border-color: var(--white);
    width: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.6);
}

/* ==========================================
   Sections
   ========================================== */
section {
    padding: 5rem 0;
}

section.hero-slider {
    padding: 0;
    margin: 0;
}

section.hero-slider + section {
    margin-top: 0;
    padding-top: 5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--green-primary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   About Intro Section
   ========================================== */
.about-intro {
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    padding-top: 5rem !important;
    margin-top: 0;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-strong);
}

.feature-card i {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--green-primary);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--gray);
}

/* ==========================================
   Tours Section
   ========================================== */
.tours-section {
    background: var(--white);
}

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

.tour-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-strong);
}

.tour-card.featured {
    border: 3px solid var(--gold-primary);
}

.tour-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

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

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

.tour-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--green-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tour-badge.gold {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
}

.tour-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-content h3 {
    font-size: 1.5rem;
    color: var(--green-primary);
    margin-bottom: 1rem;
}

.tour-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.tour-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-details i {
    color: var(--gold-primary);
}

.tour-includes {
    margin: 1rem 0 0 0;
}

.tour-includes li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.tour-includes i {
    color: var(--green-primary);
    font-size: 0.8rem;
}

.tour-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-light);
}

.btn-uniform {
    width: 100%;
    max-width: 280px;
    padding: 0.9rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.btn-uniform i {
    font-size: 0.95rem;
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.85rem;
    color: var(--gray);
}

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

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials-section {
    background: linear-gradient(135deg, var(--green-dark), var(--green-primary));
    color: var(--white);
}

.testimonials-section .section-tag {
    color: var(--gold-light);
}

.testimonials-section .section-header h2 {
    color: var(--white);
}

.testimonials-section .section-header p {
    color: var(--cream);
}

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

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.stars {
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info h4 {
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gold-light);
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--gold-dark);
}

.cta-section .btn-primary:hover {
    background: var(--green-primary);
    color: var(--white);
}

/* ==========================================
   Page Header
   ========================================== */
.page-header {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: var(--white);
    text-align: center;
    padding: 8rem 0 4rem;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--gold-light);
}

/* ==========================================
   About Page
   ========================================== */
.about-content {
    padding: 5rem 0;
    margin-top: 0px;
}

.about-intro-text {
    margin-bottom: 4rem;
    padding-top: 3rem;
}

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

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

.mv-card {
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.mv-card h3 {
    font-size: 1.8rem;
    color: var(--green-primary);
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--gray);
    line-height: 1.8;
}

.values-section {
    margin-bottom: 4rem;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--green-primary);
    margin-bottom: 3rem;
}

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

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-strong);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--green-primary);
    margin-bottom: 0.5rem;
}

.team-section {
    margin-bottom: 4rem;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--green-primary);
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.team-card {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

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

.team-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.certificates-section {
    margin-bottom: 4rem;
}

.certificates-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--green-primary);
    margin-bottom: 3rem;
}

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

.certificate-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--gold-primary);
}

.certificate-card i {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.certificate-card h4 {
    font-size: 1.2rem;
    color: var(--green-primary);
    margin-bottom: 0.5rem;
}

.stats-section {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    padding: 3rem;
    border-radius: 20px;
}

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

.stat-card {
    text-align: center;
    color: var(--white);
}

.stat-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* ==========================================
   Gallery Page
   ========================================== */
.gallery-section {
    padding: 3rem 0 5rem;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--gold-primary);
    background: transparent;
    color: var(--gold-primary);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

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

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.view-btn {
    background: var(--gold-primary);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--white);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

.view-btn:hover {
    background: var(--gold-dark);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.close-lightbox {
    position: absolute;
    top: 2rem;
    right: 3rem;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-lightbox:hover {
    color: var(--gold-primary);
}

/* ==========================================
   Contact Page
   ========================================== */
/* ==========================================
   Contact Section - Centered Professional Design
   ========================================== */
.contact-section-centered {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--cream), var(--white));
    margin-top: 10px;
}

.contact-section-centered .section-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding-top: 3rem;
}

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

.contact-info-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--gold-primary);
}

.contact-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.contact-info-card:hover .contact-icon-large {
    transform: scale(1.1) rotate(5deg);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: var(--green-primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-info-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--green-primary);
    color: var(--white);
    border-radius: 25px;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.contact-action-btn:hover {
    background: var(--gold-primary);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.contact-action-btn.whatsapp-btn {
    background: #25D366;
}

.contact-action-btn.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.05);
}

/* Social Media Section */
.social-media-section {
    text-align: center;
    padding: 3rem 0;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.social-media-section h3 {
    font-size: 1.8rem;
    color: var(--green-primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.social-links-large {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    border-radius: 20px;
    color: var(--green-primary);
    font-weight: 600;
    transition: all 0.4s ease;
    min-width: 150px;
    border: 2px solid transparent;
}

.social-card i {
    font-size: 2.5rem;
    transition: var(--transition);
}

.social-card span {
    font-size: 1rem;
}

.social-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.social-card:hover i {
    transform: scale(1.2);
}

.social-card:nth-child(1):hover {
    background: linear-gradient(135deg, #1877F2, #4267B2);
    color: var(--white);
}

.social-card:nth-child(2):hover {
    background: linear-gradient(135deg, #E1306C, #C13584);
    color: var(--white);
}

.social-card.whatsapp:hover {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
}

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

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

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

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem; /* Added spacing between form groups */
}

.form-group label {
    font-weight: 600;
    color: var(--green-primary);
    margin-bottom: 0.6rem; /* Increased spacing between label and input */
    font-size: 0.95rem;
    line-height: 1.4;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    box-sizing: border-box;
}

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

.form-group small {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.3rem;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--gray);
    font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--green-primary);
    font-weight: 600;
}

.checkbox-label a:hover {
    color: var(--gold-primary);
}

.map-section {
    padding: 3rem 0;
    background: var(--cream);
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--green-primary);
    margin-bottom: 1rem;
}

.map-section > .container > p {
    text-align: center;
    color: var(--gray);
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.faq-section {
    padding: 5rem 0;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--cream);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--green-primary);
}

.faq-question i {
    color: var(--gold-primary);
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ==========================================
   Registration Page
   ========================================== */
.registration-section {
    padding: 3rem 0 5rem;
}

.registration-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.registration-info {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    padding: 2rem;
    border-radius: 20px;
    color: var(--white);
    height: fit-content;
}

.registration-info h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.info-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-box {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.contact-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-box p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}

.contact-btn:hover {
    background: rgba(255,255,255,0.3);
}

.contact-btn.whatsapp:hover {
    background: #25D366;
}

.registration-form-wrapper {
    background: var(--white);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    color: var(--green-primary);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--gray);
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem; /* Increased spacing between major form sections */
}

.form-section {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem; /* Added spacing between sections */
}

.form-section h3 {
    font-size: 1.3rem;
    color: var(--green-primary);
    margin-bottom: 2rem; /* Increased spacing after section heading */
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section h3 i {
    color: var(--gold-primary);
}

/* Room Type Radio Buttons */
.room-type-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    white-space: nowrap;
    padding: 0.5rem 0;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--gold-primary);
}

.radio-label span {
    font-size: 0.95rem;
    color: var(--gray);
}

@media (max-width: 768px) {
    .room-type-options {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .radio-label {
        padding: 0.4rem 0;
    }
    
    .radio-label span {
        font-size: 0.9rem;
    }
}

.form-agreements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-submit {
    text-align: center;
}

.form-note {
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Success Modal */
.success-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    align-items: center;
    justify-content: center;
}

.success-modal.active {
    display: flex;
}

.success-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    animation: fadeInUp 0.5s ease-out;
}

.success-content i {
    font-size: 5rem;
    color: var(--green-primary);
    margin-bottom: 1rem;
}

.success-content h2 {
    font-size: 2rem;
    color: var(--green-primary);
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--green-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    /* Filter entfernt - Originalfarbe des Logos bleibt erhalten */
    object-fit: contain;
}

.footer-logo i {
    color: var(--gold-primary);
    font-size: 1.8rem;
}

.footer-col p {
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

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

.social-links a:hover {
    background: var(--gold-primary);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: var(--gold-light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: var(--cream);
    transition: var(--transition);
}

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

/* Hizmetlerimiz listesi - tıklanamaz */
.services-list li {
    color: var(--cream);
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1rem;
}

.services-list li::before {
    content: "•";
    color: var(--gold-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* İletişim bilgileri - tıklanabilir */
.contact-info li {
    margin-bottom: 0.8rem;
}

.contact-info li a {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--cream);
    transition: var(--transition);
    text-decoration: none;
}

.contact-info li a:hover {
    color: var(--gold-primary);
    transform: translateX(5px);
}

.contact-info li a:hover i {
    transform: scale(1.2);
}

.contact-info i {
    color: var(--gold-primary);
    margin-top: 0.2rem;
    min-width: 20px;
    transition: var(--transition);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--cream);
    font-size: 0.9rem;
}

/* ==========================================
   Floating Elements
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.8);
    }
}

.scroll-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gold-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--gold-dark);
    transform: translateY(-5px);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background: #192b37;
        flex-direction: column;
        padding: 2rem;
        box-shadow: -5px 0 20px var(--shadow-strong);
        transition: var(--transition);
        align-items: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .logo img {
        height: 35px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        min-height: 80px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        min-height: 50px;
    }
    
    .slide-content {
        min-height: 300px;
    }
    
    /* Mobile Slider Navigation */
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-btn.prev {
        left: 0.5rem;
    }
    
    .slider-btn.next {
        right: 0.5rem;
    }
    
    /* Mobile Slider Dots */
    .slider-dots {
        bottom: 1rem;
        padding: 8px 15px;
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 30px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .tours-grid,
    .features-grid,
    .testimonials-grid,
    .values-grid,
    .team-grid,
    .certificates-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .social-links-large {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-card {
        min-width: 100%;
        padding: 1.5rem;
    }
    
    .registration-grid {
        grid-template-columns: 1fr;
    }
    
    /* ==========================================
       KAYIT FORMU - MOBİL DÜZELTMELER
       ========================================== */
    .registration-section {
        padding: 2rem 0 3rem;
    }
    
    .registration-section .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .registration-info {
        padding: 1.5rem;
        border-radius: 15px;
        margin-bottom: 1.5rem;
    }
    
    .registration-info h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .info-item {
        margin-bottom: 1rem;
    }
    
    .info-item i {
        font-size: 1.2rem;
    }
    
    .info-item h3 {
        font-size: 1rem;
    }
    
    .contact-box {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .registration-form-wrapper {
        padding: 0;
        width: 100%;
        overflow-x: hidden;
    }
    
    .form-header {
        margin-bottom: 1.5rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .form-header p {
        font-size: 0.9rem;
    }
    
    .registration-form {
        gap: 1.5rem;
        width: 100%;
    }
    
    .form-section {
        padding: 1.25rem;
        border-radius: 12px;
        margin-bottom: 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
        flex-wrap: wrap;
    }
    
    .form-section h3 i {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 16px; /* iOS zoom engellemek için */
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group small {
        font-size: 0.8rem;
    }
    
    /* Radio butonları mobilde alt alta */
    .form-section div[style*="display: flex"][style*="gap: 1.5rem"] {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .form-section label[style*="display: flex"][style*="align-items: center"] {
        padding: 0.5rem 0;
    }
    
    .form-agreements {
        gap: 0.75rem;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .checkbox-label input[type="checkbox"] {
        min-width: 18px;
        min-height: 18px;
        margin-top: 0.1rem;
    }
    
    .form-submit {
        padding: 0 0.5rem;
    }
    
    .form-submit .btn-large {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
    
    .form-note {
        font-size: 0.85rem;
    }
    
    /* Success Modal Mobile */
    .success-content {
        margin: 1rem;
        padding: 2rem 1.5rem;
        max-width: calc(100% - 2rem);
    }
    
    .success-content i {
        font-size: 3.5rem;
    }
    
    .success-content h2 {
        font-size: 1.5rem;
    }
    
    .success-content p {
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .scroll-top {
        bottom: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .tour-card {
        margin: 0 1rem;
    }
    
    /* ==========================================
       KAYIT FORMU - ÇOK KÜÇÜK EKRANLAR
       ========================================== */
    .page-header {
        padding: 6rem 0 3rem;
        margin-top: 70px;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .registration-section {
        padding: 1.5rem 0 2rem;
    }
    
    .registration-section .container {
        padding: 0 10px;
    }
    
    .registration-info {
        padding: 1.25rem;
    }
    
    .registration-info h2 {
        font-size: 1.3rem;
    }
    
    .info-item {
        gap: 0.75rem;
    }
    
    .info-item i {
        font-size: 1.1rem;
    }
    
    .info-item h3 {
        font-size: 0.95rem;
    }
    
    .info-item p {
        font-size: 0.85rem;
    }
    
    .contact-box {
        padding: 1rem;
    }
    
    .contact-btn {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .form-header h2 {
        font-size: 1.3rem;
    }
    
    .form-section {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .form-section h3 {
        font-size: 1rem;
        gap: 0.4rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        border-radius: 8px;
    }
    
    .checkbox-label {
        font-size: 0.8rem;
    }
    
    .checkbox-label a {
        word-break: break-word;
    }
    
    .form-submit .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .form-note {
        font-size: 0.8rem;
    }
    
    /* Footer mobile fixes */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col ul {
        text-align: left;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
    
    .footer-bottom p {
        line-height: 1.6;
    }
}

