/* ===== PAGE SPECIFIC STYLES - PREMIUM EDITION ===== */

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
        rgba(13, 27, 15, 0.7) 0%,
        rgba(13, 27, 15, 0.85) 50%,
        rgba(13, 27, 15, 0.95) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.page-hero-content {
    position: relative;
    text-align: center;
    padding: 120px 20px 60px;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 25px;
}

.page-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-hero-content h1 .gold {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.hero-scroll span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.8); }
}

/* ===== ABOUT PAGE - STORY BENTO ===== */
.story-section {
    background: var(--dark);
    padding: 120px 0;
}

.story-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-main .lead {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 25px;
    line-height: 1.7;
}

.story-main p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.story-stat {
    text-align: center;
}

.story-stat .stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.story-stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 20px;
}

.story-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-img:hover img {
    transform: scale(1.05);
}

.story-img-1 {
    grid-row: span 2;
}

/* Parallax About */
.parallax-about {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/pexels-gantas-4323815_9a3a2.png') center/cover no-repeat fixed;
}

.parallax-about .parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 71, 42, 0.9);
}

.parallax-about .parallax-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    padding: 60px 20px;
}

.parallax-about blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 20px;
}

.parallax-about cite {
    color: var(--accent);
    font-size: 1rem;
    font-style: normal;
    letter-spacing: 1px;
}

/* Values Grid New */
.values-section {
    background: var(--dark-light);
}

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

.value-card-new {
    background: var(--dark);
    padding: 50px 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card-new:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 168, 83, 0.3);
}

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

.value-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--accent);
}

.value-card-new h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.value-card-new p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Why Section New */
.why-section-new {
    background: var(--dark);
}

.why-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-image-stack {
    position: relative;
}

.why-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.why-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.why-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 5px solid var(--dark);
}

.why-img-accent img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.why-experience-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--accent);
    color: var(--dark);
    padding: 20px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.why-experience-badge .exp-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.why-experience-badge .exp-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-list-new {
    margin: 30px 0 40px;
}

.why-item-new {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.why-check {
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.why-item-new h4 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.why-item-new p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Team Gallery */
.team-gallery-section {
    background: var(--dark-light);
}

.team-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
}

.team-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.team-img.team-wide {
    grid-column: span 2;
}

.team-img.team-tall {
    grid-row: span 2;
}

/* CTA About */
.cta-about,
.cta-contact {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

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

.cta-about .cta-overlay,
.cta-contact .cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 27, 15, 0.92) 0%, rgba(26, 71, 42, 0.88) 100%);
}

.cta-about .cta-content,
.cta-contact .cta-content {
    position: relative;
}

/* ===== TOURS PAGE ===== */
.tours-showcase {
    background: var(--dark);
}

.tour-showcase-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    background: var(--dark-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.tour-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: rgba(212, 168, 83, 0.2);
}

.tour-showcase-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.15);
}

.tour-showcase-image {
    position: relative;
    min-height: 350px;
}

.tour-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.tour-badge.popular {
    background: var(--accent);
    color: var(--dark);
}

.tour-badge.action {
    background: #e74c3c;
}

.tour-badge.custom {
    background: var(--primary);
}

.tour-showcase-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

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

.tour-header h3 {
    font-size: 1.6rem;
    color: var(--white);
}

.tour-price {
    text-align: right;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.price-unit {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tour-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.tour-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.tour-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 162, 39, 0.1);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
}

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

.tour-extra {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tour-extra i {
    color: var(--accent);
    margin-right: 8px;
}

/* Tour Gallery Break */
.tour-gallery-break {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.tour-gallery-break .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.85) 0%, rgba(13, 27, 15, 0.9) 100%);
}

.gallery-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--white);
}

.gallery-text span {
    color: var(--accent);
    margin-right: 15px;
}

/* Booking Section New */
.booking-section-new {
    background: var(--dark-light);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.booking-info-panel p {
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.booking-perks {
    margin-bottom: 40px;
}

.perk {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.perk-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.perk h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.perk p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.booking-call {
    background: var(--dark);
    padding: 25px;
    border-radius: var(--radius);
    text-align: center;
}

.booking-call p {
    color: var(--text);
    margin-bottom: 10px !important;
}

.call-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.booking-form-panel {
    background: var(--dark);
    padding: 45px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
}

.booking-form-new h3,
.contact-form-new h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--white);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--dark-light);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===== CONTACT PAGE ===== */
.contact-section-new {
    background: var(--dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-panel > p {
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-methods {
    display: grid;
    gap: 15px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--dark-light);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
    text-decoration: none;
    transition: var(--transition);
}

.contact-method:hover {
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateX(5px);
}

.contact-method.whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.3);
}

.method-icon {
    width: 55px;
    height: 55px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-method.whatsapp .method-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.method-info h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

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

.method-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.contact-social {
    padding-top: 20px;
}

.contact-social h4 {
    color: var(--white);
    margin-bottom: 20px;
}

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

.social-xl {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: var(--dark-light);
    border-radius: var(--radius);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    text-decoration: none;
}

.social-xl:hover {
    background: var(--accent);
    color: var(--dark);
    border-color: var(--accent);
}

.social-xl i {
    font-size: 1.3rem;
}

.contact-form-panel {
    background: var(--dark-light);
    padding: 45px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
}

/* Map Section New */
.map-section-new {
    background: var(--dark-light);
}

.map-header {
    text-align: center;
    padding: 60px 20px 40px;
    background: var(--dark);
}

.map-header h2 {
    font-size: 2rem;
    color: var(--white);
    margin: 15px 0 10px;
}

.map-header p {
    color: var(--text-muted);
}

.map-container {
    height: 450px;
}

.map-container iframe {
    filter: grayscale(100%) invert(90%) contrast(90%);
}

/* FAQ Section New */
.faq-section-new {
    background: var(--dark);
}

.faq-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item-new {
    background: var(--dark-light);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.faq-question-new {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question-new:hover {
    background: rgba(255,255,255,0.02);
}

.faq-icon {
    width: 45px;
    height: 45px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.faq-question-new h4 {
    flex: 1;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

.faq-arrow {
    color: var(--accent);
    transition: var(--transition);
}

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

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

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

.faq-answer-new p {
    padding: 0 25px 25px 90px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .tour-showcase-card {
        grid-template-columns: 350px 1fr;
    }

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

@media (max-width: 1024px) {
    .story-bento,
    .why-grid-new,
    .booking-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .tour-showcase-card {
        grid-template-columns: 1fr;
    }

    .tour-showcase-image {
        min-height: 300px;
    }

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

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

    .faq-grid-new {
        grid-template-columns: 1fr;
    }

    .why-img-accent {
        right: 20px;
        bottom: -20px;
    }

    .why-experience-badge {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 60vh;
    }

    .values-grid-new {
        grid-template-columns: 1fr;
    }

    .story-images {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .story-img-1 {
        grid-row: span 1;
    }

    .story-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .tour-showcase-content {
        padding: 25px;
    }

    .tour-header {
        flex-direction: column;
    }

    .tour-price {
        text-align: left;
    }

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

    .booking-form-panel,
    .contact-form-panel {
        padding: 30px;
    }

    .team-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .team-img.team-wide,
    .team-img.team-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

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

    .gallery-item img {
        height: 200px;
    }

    .tour-gallery-break {
        height: auto;
    }

    .social-links-xl {
        flex-direction: column;
    }

    .faq-answer-new p {
        padding-left: 25px;
    }

    .why-img-accent,
    .why-experience-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    .page-hero-content {
        padding: 100px 15px 40px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .tour-features span {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

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

    .perk,
    .contact-method {
        flex-direction: column;
        text-align: center;
    }

    .method-icon,
    .perk-icon {
        margin: 0 auto;
    }
}

/* Form Success Message */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.form-success h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.form-success p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

