@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --acacia-green: #1a3325;
    --acacia-green-rgb: 26, 51, 37;
    --acacia-green-light: #2c533c;
    --acacia-gold: #d89f2a;
    --acacia-gold-rgb: 216, 159, 42;
    --acacia-gold-hover: #c08b20;
    --cream-bg: #faf7f2;
    --cream-bg-light: #fefdfb;
    --card-bg: #ffffff;
    --text-dark: #202422;
    --text-light: #ffffff;
    --text-muted: #57615b;
    --border-color: rgba(26, 51, 37, 0.08);
    --shadow-sm: 0 4px 12px rgba(26, 51, 37, 0.03);
    --shadow-md: 0 10px 30px rgba(26, 51, 37, 0.06);
    --shadow-lg: 0 20px 50px rgba(26, 51, 37, 0.1);
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius-sm: 8px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--cream-bg);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--acacia-green);
    line-height: 1.3;
}

p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

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

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

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background-color: var(--acacia-green);
    color: var(--text-light);
}

.section-dark h2, .section-dark h3, .section-dark p {
    color: var(--text-light);
}

.section-dark .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.section-title-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--acacia-gold);
    border-radius: 2px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 30px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-primary {
    background-color: var(--acacia-gold);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--acacia-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(216, 159, 42, 0.3);
}

.btn-secondary {
    background-color: var(--acacia-green);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--acacia-green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 51, 37, 0.2);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--acacia-green);
    color: var(--acacia-green);
}

.btn-outline:hover {
    background-color: var(--acacia-green);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    border-color: var(--text-light);
    color: var(--text-light);
}

.btn-outline-white:hover {
    background-color: var(--text-light);
    color: var(--acacia-green);
    transform: translateY(-2px);
}

/* Header & Navigation */
header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

header.scrolled {
    background-color: rgba(254, 253, 251, 0.92);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
    height: 70px;
    border-bottom: 1px solid rgba(26, 51, 37, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 24px;
    color: var(--acacia-gold);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    transition: var(--transition);
}

header.scrolled .logo-text {
    color: var(--acacia-green);
}

.logo-subtext {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--acacia-gold);
    font-weight: 700;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-light);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

header.scrolled .nav-link {
    color: var(--acacia-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--acacia-gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--acacia-gold);
}

header.scrolled .nav-link:hover {
    color: var(--acacia-gold);
}

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

.nav-phone {
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light) !important;
}

header.scrolled .nav-phone {
    background-color: rgba(26, 51, 37, 0.05);
    border-color: rgba(26, 51, 37, 0.1);
    color: var(--acacia-green) !important;
}

.nav-phone:hover {
    background-color: var(--acacia-gold);
    border-color: var(--acacia-gold);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    margin: 6px 0;
    transition: var(--transition);
}

header.scrolled .hamburger span {
    background-color: var(--acacia-green);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 51, 37, 0.8) 0%, rgba(26, 51, 37, 0.5) 50%, rgba(26, 51, 37, 0.85) 100%);
    z-index: 2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-light);
    max-width: 800px;
    margin-top: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(216, 159, 42, 0.2);
    border: 1px solid rgba(216, 159, 42, 0.4);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--acacia-gold);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    max-width: 650px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Feature Cards Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--acacia-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(216, 159, 42, 0.2);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(26, 51, 37, 0.05);
    color: var(--acacia-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.card:hover .card-icon {
    background-color: var(--acacia-gold);
    color: var(--text-light);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Flex Split Layout (Image + Text) */
.flex-split {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.flex-split:last-child {
    margin-bottom: 0;
}

.flex-split.reverse {
    flex-direction: row-reverse;
}

.flex-split-text {
    flex: 1.2;
}

.flex-split-image {
    flex: 1;
    position: relative;
}

.flex-split-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.image-border-decor {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--acacia-gold);
    border-radius: var(--border-radius-lg);
    top: 15px;
    left: 15px;
    z-index: -1;
}

.flex-split.reverse .image-border-decor {
    left: -15px;
}

.flex-split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.flex-split-text p {
    font-size: 16px;
    margin-bottom: 20px;
}

.flex-split-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.flex-split-text li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--acacia-green);
}

.flex-split-text li i {
    color: var(--acacia-gold);
    font-size: 16px;
}

/* Bar "Pod Akacjami" Specific Styles */
.bar-promo {
    background-color: var(--cream-bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.bar-promo-text h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.bar-promo-text .badge {
    display: inline-block;
    background-color: rgba(216, 159, 42, 0.15);
    color: var(--acacia-gold-hover);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.bar-menu-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.bar-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
}

.bar-menu-item i {
    color: var(--acacia-gold);
}

.bar-promo-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.bar-promo-images img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.bar-promo-images img.span-2 {
    grid-column: span 2;
    height: 220px;
}

/* Routes List */
.routes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.route-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: grid;
    grid-template-columns: 350px 1fr;
    transition: var(--transition);
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.route-img {
    position: relative;
    height: 100%;
}

.route-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.route-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--acacia-gold);
    color: var(--text-light);
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.route-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.route-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.route-title h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.route-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.route-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.route-meta span i {
    color: var(--acacia-gold);
}

.route-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--acacia-green);
    background-color: rgba(26, 51, 37, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
}

.route-price span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

.route-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.route-difficulty {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
}

.route-difficulty span {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.route-difficulty .easy {
    background-color: rgba(46, 204, 113, 0.15);
    color: #27ae60;
}

.route-difficulty .medium {
    background-color: rgba(241, 196, 15, 0.15);
    color: #f1c40f;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 51, 37, 0.9) 0%, rgba(216, 159, 42, 0.4) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    z-index: 2;
}

.gallery-overlay h4 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Call to Action Banner */
.cta-banner {
    background: linear-gradient(135deg, rgba(26, 51, 37, 0.95) 0%, rgba(26, 51, 37, 0.8) 100%), url('../images/galeria/mgla.webp') no-repeat center center/cover;
    padding: 80px 0;
    text-align: center;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin: 50px 0;
    color: var(--text-light);
}

.cta-banner h2 {
    font-size: 2.8rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 30px auto;
}

.cta-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-phone-card {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 700;
    transition: var(--transition);
}

.cta-phone-card i {
    color: var(--acacia-gold);
    font-size: 22px;
}

.cta-phone-card:hover {
    background-color: var(--acacia-gold);
    border-color: var(--acacia-gold);
    transform: translateY(-3px);
}

.cta-phone-card:hover a {
    color: var(--text-light);
}

.cta-phone-card a {
    color: var(--text-light);
}

/* Pricing Grid */
.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.price-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.price-card.featured {
    border: 2px solid var(--acacia-gold);
    box-shadow: var(--shadow-md);
}

.price-card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--acacia-gold);
    color: var(--text-light);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
}

.price-card h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.price-list {
    list-style: none;
    margin-bottom: 30px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dotted var(--border-color);
}

.price-item:last-child {
    border-bottom: none;
}

.price-name {
    font-weight: 600;
    color: var(--text-dark);
}

.price-value {
    font-weight: 800;
    color: var(--acacia-green);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-header {
    padding: 24px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--acacia-green);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: var(--transition);
}

.faq-header:hover {
    background-color: rgba(26, 51, 37, 0.02);
}

.faq-header i {
    transition: var(--transition);
    color: var(--acacia-gold);
}

.faq-item.active .faq-header {
    background-color: rgba(26, 51, 37, 0.03);
}

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

.faq-body {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.faq-body p {
    padding-bottom: 24px;
    margin-bottom: 0;
    font-size: 15px;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: rgba(26, 51, 37, 0.05);
    color: var(--acacia-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-card-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-card-content p {
    font-size: 15px;
    margin-bottom: 0;
}

.contact-form-col {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.contact-form-col h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--acacia-green);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background-color: var(--cream-bg);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--acacia-gold);
    background-color: var(--card-bg);
    box-shadow: 0 0 0 4px rgba(216, 159, 42, 0.15);
}

textarea.form-control {
    border-radius: 16px;
    resize: vertical;
    min-height: 120px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    margin-top: 50px;
}

/* Lightbox Modal (For Galleries) */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 51, 37, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--acacia-gold);
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 32px;
    cursor: pointer;
    transition: var(--transition);
}

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

.lightbox-caption {
    color: var(--text-light);
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Footer */
footer {
    background-color: var(--acacia-green);
    color: var(--text-light);
    padding: 80px 0 40px 0;
    border-top: 4px solid var(--acacia-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--acacia-gold);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
}

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

.footer-col li {
    margin-bottom: 12px;
}

.footer-col li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact li i {
    color: var(--acacia-gold);
    width: 16px;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-contact li a:hover {
    color: var(--acacia-gold) !important;
    padding-left: 0 !important;
}

.partners-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.partner-logo {
    filter: grayscale(100%) opacity(0.6);
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.partner-logo:hover {
    filter: grayscale(0) opacity(0.95);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: var(--acacia-gold);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .flex-split {
        flex-direction: column !important;
        gap: 40px;
    }
    .flex-split-image img {
        height: 350px;
    }
    .image-border-decor {
        display: none;
    }
    .bar-promo {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    .price-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .route-card {
        grid-template-columns: 1fr;
    }
    .route-img {
        height: 250px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .hamburger {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--acacia-green);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px;
        transition: var(--transition);
        gap: 30px;
        z-index: 999;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-link {
        font-size: 18px;
        color: var(--text-light) !important;
    }
    header.scrolled .nav-link {
        color: var(--text-light) !important;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .partners-banner {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .cta-phone-card {
        padding: 15px 30px;
        font-size: 16px;
    }
}

/* Dropdown menu styles */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--card-bg, #ffffff);
    min-width: 190px;
    border-radius: var(--border-radius, 12px);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    padding: 8px 0;
    margin: 0;
    z-index: 1001;
    text-align: center;
}

/* Hover bridge to prevent menu from closing when mouse moves over the 10px translateY gap */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.dropdown-item {
    display: block;
    padding: 10px 16px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: rgba(26, 51, 37, 0.05);
    color: var(--acacia-green);
}

/* Show dropdown on hover (desktop only) */
@media (min-width: 769px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeInDropdown 0.25s ease-out forwards;
    }
}

@keyframes fadeInDropdown {
    from { opacity: 0; transform: translateX(-50%) translateY(18px); }
    to { opacity: 1; transform: translateX(-50%) translateY(10px); }
}

/* Mobile dropdown styles */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-item.dropdown.open .dropdown-menu {
        display: block;
    }
    
    .dropdown-item {
        padding: 8px 0;
        font-size: 14px;
        color: var(--text-muted);
    }
    
    .dropdown-item:hover {
        background: transparent;
        color: var(--acacia-green);
    }
}
