/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

:root {
    --primary-color: #aa1e1f;
    --secondary-color: #000000;
    --light-gray: #f5f5f7;
    --medium-gray: #86868b;
    --dark-gray: #333333;
    --white: #ffffff;
    --text-color: #1d1d1f;
    --accent-color: #b30000;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --primary-navy: #0f1c3f;
    --accent-red: #aa1e1f;
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --text-gray: #475569;
    --color-white: #ffffff;
    --color-ivory: #fff4e8;
    --blue: #22518a;
    --border-radius: 8px;
    --shadow-card: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --warm-cream: #faf6f0;
    --warm-tan: #e8d5b7;
    --leather-brown: #8b5e3c;
    --gold: #c9a84c;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --transition: 0.3s ease;

}

body {
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    padding-top: 70px;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: var(--shadow);
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  text-align: left; /* Better for readability than centered */
}
@media (max-width: 768px) {
    .hero-content { flex-direction: column; text-align: center; }
}
.hero-text { flex: 1; }
.trust-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: flex-start;
}

.trust-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #e2e8f0;
}


.trust-item svg { margin-right: 5px; fill: #4ade80; } /* Green for trust */

.btn-green {
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    border: none;
    margin-top: 10px;
}
.btn-green:hover { background-color: #128C7E; }
.no-underline {
  text-decoration: none;
  gap: 10px;
  font-size: 1.2rem;
  padding: 15px;
}
.phone-btn {
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn:hover {
    background-color: #e68600;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #333333;
}

/* Header Styles */
.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
}

.mobile-menu-toggle {
    display: block;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
}

/* Hero Section */

.hero {
background:
linear-gradient(
to right,
rgba(0,0,0,0.82),
rgba(0,0,0,0.45)
),
url('prime.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-white);
  padding: 100px 0;
  text-align: center;
}
.w20 {
  width: 20px;
}
.wpLogo {
  width: 30px;
  height: 30px;
}
.hero h1 { font-size: 2.2rem; margin-bottom: 15px; }
.hero p { color: #e2e8f0; font-size: 1.1rem; margin-bottom: 30px; }
.cta-box {
  background: var(--color-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  max-width: 500px;
  margin: 0 auto;
  color: var(--text-dark);
  border-top: 5px solid var(--accent-red);
  position: relative;
  overflow: visible; /* important so the sticker isn't clipped */
}

.badge-24 {
  background: var(--primary-navy);
  color: var(--color-white);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 10px;
}


/* Services Section */
.services {
    padding: 3rem 0;
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img {
    height: 200px;
    background-color: var(--medium-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background-size: cover; /* or use 'contain' depending on your need */
    background-position: center;
    background-repeat: no-repeat;
}
.airport {
    background-image: url("airport.jpg");
}
.business {
    background-image: url("business.jpg");
}
.city {
    background-image: url("vlora-city.jpg");
}

.service-content {
    padding: 1.5rem;
}

/* Why Choose Us Section */
.why-us {
    padding: 3rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 3rem 0;
    background-color: var(--light-gray);
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
}

/* Pricing Section */
.pricing {
    padding: 3rem 0;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.pricing-table th, .pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-table th {
    background-color: var(--primary-color);
    color: var(--white);
}

.pricing-table tr:nth-child(even) {
    background-color: var(--light-gray);
}

.common-trips {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.trip-card {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trip-name {
    font-weight: 600;
}

.trip-price {
    font-weight: 700;
    color: var(--primary-color);
}

/* FAQ Section */
.faq {
    padding: 3rem 0;
    background-color: var(--light-gray);
}

.accordion {
    margin-bottom: 1rem;
}

.accordion-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.accordion-header:after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 700;
}

.accordion-header.active:after {
    content: '-';
}

.accordion-content {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    padding: 1rem;
    border-top: 1px solid var(--light-gray);
}

/* Contact Section */
.contact {
    padding: 3rem 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
}
.contact-card p {
    text-align: center;
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

.footer-links h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: var(--white);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    font-size: 0.875rem;
    color: var(--medium-gray);
}

/* Whatsapp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 99;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    font-size: 30px;
    color: white;
}


/* Get a Quote From */
.form-container {
    margin:0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    text-align: center;
}



.quote-btn {
    margin-top: 20px;
    width: 100%;
    font-size: 1.1rem;
}

input[type="text"] {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    margin-top: 15px;
}

input[type="text"]:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: white;
    transform: translateY(-2px);
}

/* Tours page start */
 /* Itinerary Timeline */
.timeline {
    position: relative;
    margin: 3rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: #dc2626;
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
    display: flex;
    align-items: center;
}

.timeline-image {
    margin: 0 auto;
    display:block;
    align-items: center;`   
    text-align: center;
    border-radius: 12px;
    margin-bottom: 1rem;
    width:100%;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid #f0f0f0;
    transition: all 0.3s;
}

.timeline-content:hover {
    border-color: #dc2626;
}

p {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
               Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1.17rem;
  line-height: 1.6;
  color: #222222;             
  text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #dc2626;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 3px #dc2626;
}


.cta-button {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.cta-button:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.book-btn {
    margin: 0 auto;
    display: block;
    background: #dc2626;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    margin-top: 1rem;
    font-size: 1.18rem;
}

.book-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}
.timeline-header {
    text-align: center;
}



.location-title {
    color: #dc2626;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-icon {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #dc2626;
}

/* Gallery Start */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.gallery-placeholder {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
}
/* Gallery End */



/* Booking Form */
.booking-form {
    background: #f8f8f8;
    padding: 3rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #dc2626;
}

.form-submit {
    grid-column: 1 / -1;
    background: #dc2626;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: #b91c1c;
}

/* Tours page end */


/* Media Queries for Responsive Design */
@media (min-width: 768px) {
    p {
        font-size: 1.225rem;
        padding: 0;
    }
    h1 {
        font-size: 2.5rem;
    }

    .mobile-menu-toggle {
        display: none;
    }

    nav {
        display: block;
        position: static;
        box-shadow: none;
    }

    nav ul {
        display: flex;
    }

    nav ul li {
        padding: 0 1rem;
        border-bottom: none;
    }

    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }

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

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .contact-methods {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .common-trips {
        grid-template-columns: repeat(3, 1fr);
    }
}




/* START MENU */

.nav-backdrop {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    pointer-events: none;
}

.header {
    background-color: var(--accent-red);
    height: 70px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,.15);
}

.logo-box { display: flex; align-items: center; height: 70px; text-decoration: none; }
.logo-img  { height: 60px; width: auto; }

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 4px;
    margin-right: 20px;
}
.nav-menu li { position: relative; }
.nav-menu a {
    color: var(--color-ivory);
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 1rem;
    transition: .3s;
    border-radius: 4px;
}

.logoText { 
    color: var(--color-ivory);
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: .3s;
    border-radius: 4px;
}

.nav-menu a:hover { background: rgba(255,255,255,.15); }

.right-actions { display: flex; align-items: center; gap: 15px; }

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-navy);
    color: var(--color-ivory);
    text-decoration: none;
    padding: 8px 18px 8px 14px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,.25);
    white-space: nowrap;
}
.phone-icon { width: 16px; height: 16px; flex-shrink: 0; animation: phonePulse 1.6s ease-in-out infinite; }

@keyframes phonePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .6; transform: scale(1.25); }
}

.btn-text   { display: flex; flex-direction: column; line-height: 1.2; }
.btn-top    { font-size: 9px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.btn-number { font-size: 14px; font-weight: 800; }


.hamburger {
    display: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    background: transparent;
    border: none;
    border-radius: 6px;
    padding: 0;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s;
}

.hamburger:hover { background: rgba(255,255,255,.12); }

.hamburger .bar {
    display: block;
    position: absolute;
    left: 8px;
    width: 24px;
    height: 2px;
    background: var(--color-ivory);
    border-radius: 2px;
    transition:
    transform  0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity    0.3s cubic-bezier(0.4, 0, 0.2, 1),
    top        0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger .bar:nth-child(1) { top: 11px; }
.hamburger .bar:nth-child(2) { top: 19px; }
.hamburger .bar:nth-child(3) { top: 27px; }

@media (max-width: 768px) {

    .logo-img {
    height: 36px;
    }
    .logo-box {
    height: 70px;
    }

    .call-btn {
padding: 8px 12px 8px 10px;
gap: 7px;
}
.btn-number {
font-size: 13px;
}
.header {
padding: 0 4%;
}



.hamburger { display: flex; }
.nav-backdrop {
    display: block;
    pointer-events: none; /* still inactive until open */
}

.nav-backdrop.visible {
    opacity: 1;
    pointer-events: auto; /* ← only clickable when menu is open */
}

.nav-menu {
    display: block;
    list-style: none;
    margin: 0;
    padding: 6px 0 12px;
    gap: 0;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 999;
    background: var(--accent-red);
    box-shadow: 0 16px 48px rgba(0,0,0,.35);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition:
    opacity    0.22s cubic-bezier(0.4, 0, 0.2, 1),
    transform  0.22s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.22s step-end;
}
    .nav-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition:
        opacity    0.22s cubic-bezier(0.4, 0, 0.2, 1),
        transform  0.22s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.22s step-start;
    }
    .nav-menu li {
    position: static;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.12);
    /* Stagger entrance: start hidden */
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav-menu li:last-child { border-bottom: none; }
    .nav-menu.is-open li:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.04s; }
    .nav-menu.is-open li:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.09s; }
    .nav-menu.is-open li:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.13s; }
    .nav-menu.is-open li:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.17s; }
    .nav-menu.is-open li:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 0.21s; }
    .nav-menu.is-open li:nth-child(6) { opacity: 1; transform: translateX(0); transition-delay: 0.25s; }
    .nav-menu.is-open li:nth-child(7) { opacity: 1; transform: translateX(0); transition-delay: 0.29s; }
    .nav-menu.is-open li:nth-child(8) { opacity: 1; transform: translateX(0); transition-delay: 0.33s; }
    .nav-menu.is-open li:nth-child(9) { opacity: 1; transform: translateX(0); transition-delay: 0.33s; }
    .nav-menu.is-open li:nth-child(10) { opacity: 1; transform: translateX(0); transition-delay: 0.33s; }
    .nav-menu.is-open li:nth-child(11) { opacity: 1; transform: translateX(0); transition-delay: 0.33s; }
    .nav-menu.is-open li:nth-child(12) { opacity: 1; transform: translateX(0); transition-delay: 0.33s; }
    .nav-menu.is-open li:nth-child(13) { opacity: 1; transform: translateX(0); transition-delay: 0.33s; }


    .nav-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 24px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--color-ivory);
    transition: background 0.15s ease, padding-left 0.15s ease;
    }

    .nav-menu a::after {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid rgba(255,255,255,.55);
    border-top:   2px solid rgba(255,255,255,.55);
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: transform 0.15s ease, border-color 0.15s ease;
    }

    .nav-menu a:hover {
    background: rgba(0,0,0,.18);
    padding-left: 32px;
    }
    .nav-menu a:hover::after {
    border-color: rgba(255,255,255,.9);
    transform: rotate(45deg) translate(2px, -2px);
    }
}
/* END MENU */