/* EXPERIENCE PAGE STYLES */

/* Clean, showroom background */
body {
    background-color: #FDFBF7;
    /* Same as landing page warm white */
    color: #2c2c2c;
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 60px;
    /* Top padding clears nav if any */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* HEADER */
.exp-header {
    text-align: center;
    margin-bottom: 60px;
}

.exp-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    /* Thin/Elegant */
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.exp-subline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    color: #666;
    text-transform: uppercase;
}

/* GRID LAYOUT */
.exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Desktop: Side by side */
    gap: 40px;
    align-items: stretch;
}

/* CARD STYLES */
.exp-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.exp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.featured-card {
    border: 1px solid rgba(229, 115, 115, 0.3);
    /* Subtle accent border for premium */
}

/* CARD IMAGE */
.exp-card-image {
    width: 100%;
    height: 350px;
    /* Hero height */
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.exp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.exp-card:hover .exp-card-image img {
    transform: scale(1.03);
    /* Tiny zoom */
}

/* CARD CONTENT */
.exp-card-content {
    padding: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.exp-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.exp-card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.5;
}

.exp-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
    flex-grow: 1;
}

.exp-features li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 10px;
    padding-left: 14px;
    position: relative;
}

.exp-features li::before {
    content: '•';
    color: #d4a373;
    /* Gold/Bronze accent */
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1rem;
}

/* FOOTER & CTA */
.exp-footer {
    border-top: 1px solid #eee;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.exp-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
}

.btn-primary {
    background-color: #1a1a1a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #333;
    transform: translateX(3px);
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s forwards ease-out;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards ease-out;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
    .exp-grid {
        grid-template-columns: 1fr;
        /* Stacked */
        gap: 30px;
    }

    .exp-title {
        font-size: 2rem;
    }

    .exp-card-image {
        height: 250px;
        /* Shorter on mobile */
    }

    .exp-footer {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* COMPARISON STRIP */
.exp-comparison {
    margin-top: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #444;
    background: #fff;
    /* Card background */
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    /* Subtle lift */
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    /* Vertical padding inside card */
    overflow: hidden;
}

.comp-row {
    display: grid;
    grid-template-columns: 1.8fr 1.1fr 1.1fr;
    /* Adjusted ratios */
    padding: 16px 0px;
    /* Remove horizontal padding fro borders */
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.comp-row:last-child {
    border-bottom: none;
}

/* Zebra Striping for distinctiveness */
.comp-row:nth-child(odd):not(.header-row) {
    background-color: #fafafa;
}

.comp-row:hover:not(.header-row) {
    background-color: #f0f0f0;
    /* Darker hover */
}

.header-row {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: #1a1a1a;
    padding-bottom: 15px;
    margin-bottom: 0px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    /* clear separation */
    background-color: #fff;
}

.comp-col {
    text-align: center;
    padding: 0 15px;
    /* Add internal padding */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* VERTICAL DIVIDERS */
/* Add border to the right of the Feature column */
.comp-col.feature {
    text-align: left;
    color: #333;
    font-weight: 600;
    justify-content: flex-start;
    padding-left: 30px;
    /* Extra left padding for feature */
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    /* Divider 1 */
}

/* Add border to the right of the Middle (Signature) column */
.comp-col:nth-child(2) {
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    /* Divider 2 */
}

.comp-col.dash {
    color: #ccc;
    font-weight: 300;
}

/* Checkmark color - Gold Accent for Premium feel */
/* Only apply to icons in body rows, NOT the header */
.comp-row:not(.header-row) .comp-col:not(.feature):not(.dash) {
    color: #d4a373;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Header Text Color (reset) */
.header-row .comp-col {
    color: #1a1a1a !important;
    /* Force black for headers */
    font-weight: 600;
    font-size: 1.1rem;
}

/* LOGISTICS FOOTER */
.exp-logistics {
    margin-top: 60px;
    text-align: center;
    padding-top: 20px;
}

.exp-logistics p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 0.5px;
}

/* SLIDESHOW FOR MEMORIES CARD */
.exp-card-image.slideshow-wrapper {
    position: relative;
    isolation: isolate;
}

.exp-card-image.slideshow-wrapper img.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: 1;
}

.exp-card-image.slideshow-wrapper img.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Ensure hover zoom still works on active image */
.exp-card:hover .exp-card-image.slideshow-wrapper img.slide.active {
    transform: scale(1.03);
}

/* Navigation Arrows */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    color: #1a1a1a;
    font-size: 1.2rem;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    /* Hidden by default, shown on hover */
}

.exp-card:hover .slide-nav {
    opacity: 1;
}

.slide-nav:hover {
    background: #1a1a1a;
    color: #fff;
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}