/* ==========================================
   KOFFATYD - Custom Styles
   ========================================== */

/* ==========================================
   Global Styles & Variables
   ========================================== */
:root {
    --primary-color: #8B4513;
    --primary-dark: #6B3410;
    --primary-light: #A0522D;
    --secondary-color: #D4A574;
    --accent-color: #E8C4A0;
    --dark-brown: #3E2723;
    --text-dark: #2C2C2C;
    --text-light: #666;
    --light-bg: #FAF7F4;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 35px;
    font-weight: 600;
    letter-spacing: 0.5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
            box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

.btn-outline-light {
    padding: 12px 35px;
    font-weight: 600;
    letter-spacing: 0.5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-width: 2px;
}

.btn-outline-light:hover {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-bg) !important;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    padding: 20px 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.8)), to(rgba(0,0,0,0)));
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: var(--dark-brown) !important;
    -webkit-box-shadow: 0 2px 20px rgba(0,0,0,0.3);
            box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}

.brand-text {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 16px !important;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}

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

.nav-link.active {
    color: var(--accent-color) !important;
    font-weight: 600;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: var(--white);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.4) 0%, rgba(107, 52, 16, 0.3) 100%),
                url("../assets/images/circle_of_coffees.jpg") center/cover no-repeat;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.85) 0%, rgba(107, 52, 16, 0.75) 100%);
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    -webkit-animation: fadeInDown 1s ease;
            animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--accent-color);
    -webkit-animation: fadeInUp 1s ease 0.3s backwards;
            animation: fadeInUp 1s ease 0.3s backwards;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    -webkit-animation: fadeInUp 1s ease 0.5s backwards;
            animation: fadeInUp 1s ease 0.5s backwards;
}

.hero-content p {
    font-size: 1.3rem;
    -webkit-animation: fadeInUp 1s ease 0.7s backwards;
            animation: fadeInUp 1s ease 0.7s backwards;
}

.hero-content .btn {
    -webkit-animation: fadeInUp 1s ease 0.9s backwards;
            animation: fadeInUp 1s ease 0.9s backwards;
}

.pulse-button {
    -webkit-animation: pulse 2s infinite;
            animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
    0%, 100% {
        -webkit-box-shadow: 0 0 0 0 rgba(139, 69, 19, 0.7);
                box-shadow: 0 0 0 0 rgba(139, 69, 19, 0.7);
    }
    50% {
        -webkit-box-shadow: 0 0 0 20px rgba(139, 69, 19, 0);
                box-shadow: 0 0 0 20px rgba(139, 69, 19, 0);
    }
}

@keyframes pulse {
    0%, 100% {
        -webkit-box-shadow: 0 0 0 0 rgba(139, 69, 19, 0.7);
                box-shadow: 0 0 0 0 rgba(139, 69, 19, 0.7);
    }
    50% {
        -webkit-box-shadow: 0 0 0 20px rgba(139, 69, 19, 0);
                box-shadow: 0 0 0 20px rgba(139, 69, 19, 0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 3;
    -webkit-animation: bounce 2s infinite;
            animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 2rem;
    text-decoration: none;
    opacity: 0.8;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.scroll-indicator a:hover {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateX(-50%) translateY(0);
                transform: translateX(-50%) translateY(0);
    }
    40% {
        -webkit-transform: translateX(-50%) translateY(-20px);
                transform: translateX(-50%) translateY(-20px);
    }
    60% {
        -webkit-transform: translateX(-50%) translateY(-10px);
                transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateX(-50%) translateY(0);
                transform: translateX(-50%) translateY(0);
    }
    40% {
        -webkit-transform: translateX(-50%) translateY(-20px);
                transform: translateX(-50%) translateY(-20px);
    }
    60% {
        -webkit-transform: translateX(-50%) translateY(-10px);
                transform: translateX(-50%) translateY(-10px);
    }
}

/* ==========================================
   Animations
   ========================================== */
@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-50px);
                transform: translateY(-50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(-50px);
                transform: translateY(-50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

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

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

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(-50px);
                transform: translateX(-50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(-50px);
                transform: translateX(-50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(50px);
                transform: translateX(50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translateX(50px);
                transform: translateX(50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
}

/* ==========================================
   Image Placeholders
   ========================================== */
.image-placeholder,
.video-placeholder,
.placeholder-media {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 60px 20px;
    border-radius: 8px;
    color: #999;
    text-align: center;
    min-height: 300px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.placeholder-media {
    min-height: 100%;
    height: 100%;
    border-radius: 0;
}

.image-placeholder:hover,
.video-placeholder:hover {
    background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
}

.image-placeholder i,
.video-placeholder i,
.placeholder-media i {
    font-size: 4rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.image-placeholder p,
.video-placeholder p,
.placeholder-media p {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.image-placeholder small,
.video-placeholder small,
.placeholder-media small {
    margin-top: 5px;
    display: block;
    font-size: 0.9rem;
}

/* ==========================================
   Stat Box
   ========================================== */
.stat-box {
    text-align: center;
    padding: 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.stat-box:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
}

.stat-box h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-box p {
    margin: 0;
    color: var(--text-light);
    font-weight: 500;
}

/* ==========================================
   Tour Feature Cards
   ========================================== */
.tour-feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    -webkit-box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.tour-feature-card:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-box-shadow: 0 20px 50px rgba(139, 69, 19, 0.15);
            box-shadow: 0 20px 50px rgba(139, 69, 19, 0.15);
    border-color: var(--secondary-color);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.tour-feature-card:hover .icon-wrapper {
    -webkit-transform: rotate(360deg) scale(1.1);
            transform: rotate(360deg) scale(1.1);
}

.icon-wrapper i {
    font-size: 2rem;
    color: var(--white);
}

.tour-feature-card h4 {
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.tour-feature-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* ==========================================
   Dark Section Overlay
   ========================================== */
.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 1;
}

section.bg-dark {
    position: relative;
}

section.bg-dark .container {
    position: relative;
    z-index: 2;
}

/* ==========================================
   Included Items
   ========================================== */
.included-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.included-item:hover {
    background: rgba(255,255,255,0.1);
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
}

.item-icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.item-content h5 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.item-content p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* ==========================================
   Timeline
   ========================================== */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: -webkit-gradient(linear, left top, left bottom, from(var(--primary-color)), to(var(--secondary-color)));
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.timeline-item {
    position: relative;
    padding-left: 90px;
    margin-bottom: 60px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    -webkit-box-shadow: 0 5px 20px rgba(139, 69, 19, 0.4);
            box-shadow: 0 5px 20px rgba(139, 69, 19, 0.4);
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    -webkit-box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    -webkit-box-shadow: 0 15px 50px rgba(139, 69, 19, 0.15);
            box-shadow: 0 15px 50px rgba(139, 69, 19, 0.15);
}

.timeline-content h4 {
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.timeline-content strong {
    color: var(--primary-color);
}

/* ==========================================
   Gallery
   ========================================== */
.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    -webkit-box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    -webkit-transform: scale(1.05) rotate(2deg);
            transform: scale(1.05) rotate(2deg);
    -webkit-box-shadow: 0 20px 40px rgba(139, 69, 19, 0.25);
            box-shadow: 0 20px 40px rgba(139, 69, 19, 0.25);
}

.gallery-item .image-placeholder {
    border-radius: 0;
    min-height: 350px;
}

.video-placeholder {
    min-height: 400px;
    border-radius: 15px;
    margin-top: 30px;
}

.video-placeholder i {
    font-size: 5rem;
    color: var(--primary-color);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.video-placeholder:hover i {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    color: var(--primary-dark);
}

/* ==========================================
   Testimonials
   ========================================== */
.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    -webkit-box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-card:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-box-shadow: 0 20px 50px rgba(139, 69, 19, 0.15);
            box-shadow: 0 20px 50px rgba(139, 69, 19, 0.15);
    border-left-color: var(--primary-color);
}

.testimonial-card .stars {
    color: #FFC107;
    font-size: 1.1rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
}

.testimonial-author strong {
    color: var(--dark-brown);
    font-size: 1.1rem;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-info-box {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 15px;
    -webkit-box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.info-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
}

.info-icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
}

.info-item h5,
.info-item h6 {
    color: var(--dark-brown);
    margin-bottom: 5px;
}

.info-item p {
    margin: 0;
    color: var(--text-light);
}

.form-control,
.form-select {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    -webkit-box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.15);
            box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.15);
}

.form-label {
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

/* ==========================================
   Social Links
   ========================================== */
.social-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: var(--white);
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-dark);
    -webkit-transform: translateY(-5px) rotate(360deg);
            transform: translateY(-5px) rotate(360deg);
    color: var(--white);
}

/* ==========================================
   Footer
   ========================================== */
footer {
    background: var(--dark-brown) !important;
}

footer .brand-text {
    font-size: 2rem;
}

footer hr {
    border-color: rgba(255,255,255,0.1);
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

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

.newsletter-form .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}

.newsletter-form .form-control::-webkit-input-placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form .form-control::-moz-placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form .form-control:-ms-input-placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form .form-control::-ms-input-placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

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

/* ==========================================
   Scroll to Top Button
   ========================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1000;
    -webkit-box-shadow: 0 5px 20px rgba(139, 69, 19, 0.4);
            box-shadow: 0 5px 20px rgba(139, 69, 19, 0.4);
}

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

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

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-content {
        padding: 30px 20px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 24px;
    }

    .navbar-collapse {
        background-color: var(--dark-brown);
        padding: 1rem;
        border-radius: 0 0 8px 8px;
    }

    .nav-link {
        margin: 5px 0;
    }

    .nav-link::after {
        display: none;
    }
    
    .stat-box h3 {
        font-size: 2.5rem;
    }
    
    .tour-feature-card,
    .testimonial-card,
    .contact-info-box {
        padding: 30px 20px;
    }
    
    .included-item {
        padding: 20px;
    }
}

/* ==========================================
   Print Styles
   ========================================== */
@media print {
    .navbar,
    .scroll-to-top,
    .scroll-indicator {
        display: none;
    }
}

