:root {
    --u-red: #cd3c32;
    --u-red-hover: #b0332a;
    --u-dark: #0f0f0f;
    --u-light: #ffffff;
    --u-soft-red: #fff5f5;
    --u-gray: #6e6e73;
}

body { 
    font-family: 'Inter', -apple-system, sans-serif; 
    background: var(--u-light); 
    color: var(--u-dark); 
}

/* Modern Split Hero */
.hero-v5 {
    padding: 30px 0 30px;
    background: linear-gradient(135deg, #fff 0%, var(--u-soft-red) 100%);
    overflow: hidden;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 850;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-image-wrap {
    position: relative;
    z-index: 1;
}

.hero-main-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    transform: rotate(-2deg);
    transition: 0.5s ease;
}

.hero-main-img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Floating "Instant" Badge */
.floating-badge {
    position: absolute;
    bottom: 20px;
    left: -30px;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Destination Cards */
.dest-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.dest-card:hover img {
    transform: scale(1.1);
}

.dest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(205, 60, 50, 0.2);
}

.btn-main {
    background: var(--u-red);
    color: white;
    border: none;
    padding: 18px 45px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-main:hover {
    background: var(--u-red-hover);
    color: white;
    box-shadow: 0 15px 30px rgba(205, 60, 50, 0.3);
}

/* About Page Enhancements */
.value-card,
.feature-card,
.milestone-card {
    transition: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.value-card:hover,
.feature-card:hover,
.milestone-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(205, 60, 50, 0.15);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-square {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

/* Services Page */
.anchor-offset {
    scroll-margin-top: 100px;
}

.service-pill {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--u-dark);
    padding: 12px 26px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid rgba(205, 60, 50, 0.15);
    transition: 0.3s;
}

.service-pill:hover {
    background: var(--u-red);
    color: white;
    border-color: var(--u-red);
    box-shadow: 0 15px 30px rgba(205, 60, 50, 0.25);
}

.step-card {
    background: white;
    border: 1px solid rgba(205, 60, 50, 0.1);
    border-radius: 24px;
    padding: 30px 25px;
    height: 100%;
    transition: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(205, 60, 50, 0.12);
}

.step-card-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--u-soft-red);
    color: var(--u-red);
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.step-number-light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--u-red);
}

.product-visual {
    transition: 0.4s;
}

/* Brand-styled accordion (overrides default Bootstrap look) */
.brand-accordion .accordion-item {
    border: 1px solid rgba(205, 60, 50, 0.12);
    border-radius: 16px !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.brand-accordion .accordion-button {
    font-weight: 700;
    color: var(--u-dark);
    background: white;
    box-shadow: none;
    padding: 20px 24px;
}

.brand-accordion .accordion-button:not(.collapsed) {
    color: var(--u-red);
    background: var(--u-soft-red);
}

.brand-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(205, 60, 50, 0.2);
}

.brand-accordion .accordion-button::after {
    filter: invert(28%) sepia(65%) saturate(1975%) hue-rotate(335deg) brightness(90%) contrast(92%);
}

.brand-accordion .accordion-body {
    padding: 5px 24px 24px;
    color: var(--u-gray);
    font-size: 0.97rem;
    line-height: 1.6;
}

.brand-accordion-dark .accordion-item {
    border-color: rgba(255, 255, 255, 0.12);
    background: transparent;
}

.brand-accordion-dark .accordion-button {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.brand-accordion-dark .accordion-button:not(.collapsed) {
    background: var(--u-red);
    color: white;
}

.brand-accordion-dark .accordion-body {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.75);
}

/* News & Contact Pages */
.form-control-brand {
    width: 100%;
    border: 1.5px solid rgba(205, 60, 50, 0.15);
    border-radius: 16px;
    padding: 16px 20px;
    font-size: 0.98rem;
    color: var(--u-dark);
    background: white;
    transition: 0.25s;
}

.form-control-brand:focus {
    outline: none;
    border-color: var(--u-red);
    box-shadow: 0 0 0 4px rgba(205, 60, 50, 0.12);
}

textarea.form-control-brand {
    min-height: 150px;
    resize: vertical;
}

.social-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--u-soft-red);
    color: var(--u-red);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
    flex-shrink: 0;
}

.social-circle:hover {
    background: var(--u-red);
    color: white;
    transform: translateY(-4px);
}

.date-badge {
    display: inline-block;
    background: var(--u-soft-red);
    color: var(--u-red);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.date-badge-dark {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.press-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: white;
    border: 1px solid rgba(205, 60, 50, 0.08);
    border-radius: 16px;
    padding: 18px 22px;
    text-decoration: none;
    color: var(--u-dark);
    transition: 0.3s;
    height: 100%;
}

.press-list-item:hover {
    border-color: var(--u-red);
    box-shadow: 0 10px 25px rgba(205, 60, 50, 0.1);
    transform: translateX(4px);
}

.press-list-item .press-list-date {
    font-size: 0.78rem;
    color: var(--u-gray);
    white-space: nowrap;
}

.quote-banner {
    background: var(--u-dark);
    color: white;
    border-radius: 40px;
    padding: 60px;
}

.map-frame-wrap {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    line-height: 0;
}

/* Gallery Page */
.filter-pill {
    border: 1px solid rgba(205, 60, 50, 0.15);
    cursor: pointer;
}

.filter-pill.active {
    background: var(--u-red);
    color: white;
    border-color: var(--u-red);
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 70%);
    color: white;
    opacity: 0;
    transition: 0.35s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-tag {
    display: inline-block;
    background: var(--u-red);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 8px;
}

.gallery-overlay h5 {
    color: white;
    margin: 0;
    font-weight: 700;
}

/* Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 85vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.lightbox-caption {
    color: white;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    background: var(--u-red);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-nav:hover {
    background: var(--u-red);
}

.lightbox-prev { left: 25px; }
.lightbox-next { right: 25px; }

@media (max-width: 767px) {
    .lightbox-nav { width: 40px; height: 40px; font-size: 1rem; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

/* Responsive Tweaks */
@media (max-width: 991px) {
    .hero-v5 { text-align: center; padding-top: 100px; }
    .hero-image-wrap { margin-top: 50px; }
    .floating-badge { left: 50%; transform: translateX(-50%); }
    .about-hero { text-align: center; }
    .about-hero ul.d-flex { justify-content: center; }
    .services-hero { text-align: center; }
    .services-hero ul.d-flex.mb-4,
    .services-hero .d-flex.gap-3 { justify-content: center; }
}