* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

:root {
    --bg: #ffffff;
    --text: #0f0f12;
    --text-light: #4c4f56;
    --primary: #6f42c1;
    --primary-700: #59339d;
    --accent: #8b5e3c;
    --muted: #f6f4f2;
    --surface: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  
    --grad-header-start: #0c0c0e;
    --grad-header-end: #2f1b66;
    --grad-footer-start: #3b2a1f;
    --grad-footer-end: #0c0c0e;
    --grad-button-start: #6f42c1;
    --grad-button-end: #8b5e3c;
}

body {
    line-height: 1.7;
    letter-spacing: 0.01em;
    color: var(--text);
    background-color: var(--bg);
}

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

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    color: var(--text);
    font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; color: var(--primary); }
h3 { font-size: 1.5rem; color: var(--accent); }

p {
    margin-bottom: 20px;
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: #1d3557;
    transition: color 0.25s ease;
}

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

a:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    padding: 4px 0;
    letter-spacing: 0.5px;
}

.logo span {
    color: #cbb2f0;
}

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


header {
    background: linear-gradient(180deg, var(--grad-header-start) 0%, var(--grad-header-end) 100%);
    backdrop-filter: saturate(160%) blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 28px;
    padding: 12px 0;
    position: relative;
}

.nav-links {
    display: flex;
    list-style: none;
    margin-left: 0;
    flex: 1;
}

.nav-links .push-right {
    margin-left: auto;
}

.nav-links li {
    margin-left: 20px;
    position: relative;
}

.nav-links a {
    font-weight: 600;
    position: relative;
    color: #f0eef9;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-image: linear-gradient(90deg, var(--grad-button-start), var(--grad-button-end));
    bottom: -5px;
    left: 0;
    transition: width 0.25s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a[aria-current="page"] {
    color: #ffffff;
}

.nav-links a[aria-current="page"]::after {
    width: 100%;
}


.has-dropdown > a::after {
    content: 'Down Arrow';
    margin-left: 8px;
    font-size: 0.8rem;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    background: var(--surface);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: var(--shadow);
    border-radius: 10px;
    min-width: 190px;
    padding: 8px;
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown li { margin: 0; }
.dropdown a {
    display: block;
    padding: 10px 12px;
    color: var(--text);
}
.dropdown a:hover { background: var(--muted); }

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 28px;
    height: 20px;
}

.hamburger span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

#nav-toggle { display: none; }

#nav-toggle:checked ~ .nav-links {
    max-height: 500px;
}

#nav-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#nav-toggle:checked ~ .hamburger span:nth-child(2) {
    opacity: 0;
}

#nav-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}


.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    padding-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}


.btn {
    display: inline-block;
    padding: 12px 22px;
    background-image: linear-gradient(135deg, var(--grad-button-start), var(--grad-button-end));
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: var(--shadow);
    transition: transform 0.15s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
    filter: brightness(1.05);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.12);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
}


.intro {
    padding: 60px 0;
    text-align: center;
}

.intro p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.destinations {
    padding: 70px 0;
    background-color: var(--muted);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.destination-card {
    background-color: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
}

.destination-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.16);
}

.card-img {
    height: 250px;
    overflow: hidden;
}

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

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

.card-content {
    padding: 20px;
}

.card-content h3 {
    margin-bottom: 10px;
}

.image-content-section {
    padding: 60px 0;
}

.image-content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.content-row:nth-child(even) .content-image {
  order: 1;
}

.content-row:nth-child(even) .content-text {
  order: 2;
}

.content-text {
    padding: 20px;
}

.content-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
}

.content-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.content-image img {
    width: 100%;
    aspect-ratio: 16/11;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-caption {
    padding: 15px;
    background: white;
    text-align: center;
}

.gallery-caption h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.gallery-caption p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 28px;
    background-image: linear-gradient(180deg, #ffffff 0%, #f2f2f4 100%);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 26px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: radial-gradient(circle at 30% 30%, var(--primary), var(--primary-700));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}


.contact {
    padding: 80px 0;
    background-color: var(--muted);
}

.contact-form {
    max-width: 640px;
    margin: 0 auto;
    background-color: var(--surface);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: var(--shadow);
    transition: transform 0.15s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.submit-btn:hover {
    background-color: var(--primary-700);
    transform: translateY(-2px);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.12);
}


.contact-hero {
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
                url('images/p1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.contact-hero .container {
    text-align: center;
}

.contact-hero h1,
.contact-hero p,
.contact-hero .btn {
    margin-left: auto;
    margin-right: auto;
}


.contact-hero .btn {
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.contact-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.contact-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    line-height: 1.6;
}

.contact-section {
    padding: 4rem 0;
    background: #f9f9fb;
}

.form-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.form-centered h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.form-centered p {
    margin-bottom: 2rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.form-group .required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.15);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    display: block;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}


.newsletter-form {
    display: flex;
    margin-top: 1rem;
    max-width: 300px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px 0 0 6px;
}

.newsletter-form button {
    padding: 10px 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}


footer {
    background: linear-gradient(180deg, var(--grad-footer-start) 0%, var(--grad-footer-end) 100%);
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a8dadc;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.carousel {
    margin-top: 0;
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: slideFade 18s infinite ease-in-out;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 6s; }
.slide:nth-child(3) { animation-delay: 12s; }

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.slide-caption {
    position: absolute;
    left: 50%;
    bottom: 8%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    padding: 16px 22px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.slide-caption h2 { color: #fff; margin-bottom: 6px; }
.slide-caption p { color: #f1faee; margin: 0; }

@keyframes slideFade {
    0% { opacity: 0; }
    6% { opacity: 1; }
    30% { opacity: 1; }
    36% { opacity: 0; }
    100% { opacity: 0; }
}


.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(3px);
}

.modal:target { display: flex; }

.modal-content {
    background: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    overflow: hidden;
}

.modal-content img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.modal-content img:hover {
    transform: scale(1.03);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: #aaa;
    cursor: pointer;
}

.modal-close:hover { color: #000; }

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 3rem 0;
}

.hero-section .hero-content {
    text-align: left;
}

.hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.hero-image img {
    width: 100%;
    aspect-ratio: 16/8;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}


@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

@media screen and (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        flex-direction: column;
        position: static;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 1;
        align-items: flex-start;
    }
   
    .nav-links li {
        margin: 8px 0;
    }
    .nav-links .push-right { margin-left: 0; }
    .has-dropdown:focus-within .dropdown,
    .has-dropdown:hover .dropdown {
        display: block;
        position: static;
        padding-left: 15px;
    }
   
    .hero h1 {
        font-size: 2.4rem;
    }
   
    .hero p {
        font-size: 1rem;
    }
   
    .destinations-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
   
    .image-content-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
   
    .image-content-row:nth-child(even) {
        flex-direction: column;
    }
   
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
   
    .content-image img {
        height: 250px;
    }
   
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
   
    .social-links {
        justify-content: center;
    }

    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 0;
    }
    .hero-section .hero-content { text-align: center; }
    .hero-section h1 { font-size: 2.3rem; }
    .hero-image img { height: 240px; border-radius: 10px; }

    .contact-hero { height: 60vh; }
    .contact-hero h1 { font-size: 2.5rem; }
    .form-grid { grid-template-columns: 1fr; }
    .contact-section { padding: 3rem 0; }

    .modal-content img { height: 220px; }
}

@media screen and (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .btn { padding: 10px 18px; font-size: 0.9rem; }
    .section-title h2 { font-size: 1.8rem; }
    .carousel { height: 45vh; }
    .slide-caption { left: 50%; bottom: 6%; padding: 12px 16px; }
    .slide-caption h2 { font-size: 1.2rem; }
    .slide-caption p { font-size: 0.9rem; }

    .hero-section h1 { font-size: 2rem; }
    .hero-image img { height: 200px; }

    .contact-hero h1 { font-size: 2.2rem; }
    .btn-large { padding: 12px 24px; font-size: 1rem; }

    .modal-content img { height: 180px; border-radius: 8px; }
}


.bg-gradient-sakura,
.bg-gradient-ocean,
.bg-gradient-sunrise {
    background-image: linear-gradient(135deg, var(--grad-sakura-start), var(--grad-sakura-end));
}

.text-gradient-primary {
    background-image: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

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


.header-left {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between; 
  gap: 24px; 
  
}

.header-left .nav-links {
  margin-left: auto;
  flex: 0 0 auto; 
}


.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 28px;
    margin-left: auto;            
}
.nav-links li {
    position: relative;
}
.nav-links a {
    font-weight: 600;
    color: #f0eef9;
    position: relative;
    padding: 8px 0;
    text-decoration: none;
}
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-image: linear-gradient(90deg, var(--grad-button-start), var(--grad-button-end));
    bottom: -5px;
    left: 0;
    transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
    width: 100%;
}
.nav-links a[aria-current="page"] {
    color: #ffffff;
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 28px;
    height: 20px;
}
.hamburger span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}
#nav-toggle {
    display: none;
}


.nav-overlay { display: none; }

@media (max-width: 768px) {
  .hamburger { display: flex; margin-left: auto; }
  .header-left { gap: 0; }


  .header-left .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    max-height: none;         
    overflow-y: auto;          
    background: #0c0c0e;
    flex-direction: column;
    padding: 90px 20px 20px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    gap: 0;
  }

  .nav-links li { margin: 8px 0; }
  .nav-links a {
    display: block;
    padding: 14px 16px;
    font-size: 1.1rem;
    color: #f0eef9;
    border-radius: 8px;
  }
  .nav-links a:hover { background: rgba(255, 255, 255, 0.1); }

  
  #nav-toggle:checked ~ .header-left .nav-links { right: 0; }


  #nav-toggle:checked ~ .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  #nav-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
  #nav-toggle:checked ~ .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    backdrop-filter: blur(2px);
    cursor: pointer;
  }
  #nav-toggle:checked ~ .nav-overlay { display: block; }
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
}

.header-left .nav-links {
  margin-left: auto;
}
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 28px;
    margin-left: auto;            
}
.nav-links li {
    position: relative;
}
.nav-links a {
    font-weight: 600;
    color: #f0eef9;
    position: relative;
    padding: 8px 0;
    text-decoration: none;
}
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-image: linear-gradient(90deg, var(--grad-button-start), var(--grad-button-end));
    bottom: -5px;
    left: 0;
    transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
    width: 100%;
}
.nav-links a[aria-current="page"] {
    color: #ffffff;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 28px;
    height: 20px;
}
.hamburger span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}
#nav-toggle {
    display: none;
}
.nav-overlay { display: none; }
@media (max-width: 768px) {
  .hamburger { display: flex; margin-left: auto; }
  .header-left { gap: 0; }

  .header-left .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    max-height: none;          
    overflow-y: auto;           
    background: #0c0c0e;
    flex-direction: column;
    padding: 90px 20px 20px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    gap: 0;
  }

  .nav-links li { margin: 8px 0; }
  .nav-links a {
    display: block;
    padding: 14px 16px;
    font-size: 1.1rem;
    color: #f0eef9;
    border-radius: 8px;
  }
  .nav-links a:hover { background: rgba(255, 255, 255, 0.1); }


  #nav-toggle:checked ~ .header-left .nav-links { right: 0; }

  #nav-toggle:checked ~ .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  #nav-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
  #nav-toggle:checked ~ .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    backdrop-filter: blur(2px);
    cursor: pointer;
  }
  #nav-toggle:checked ~ .nav-overlay { display: block; }
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
}

.header-left .nav-links {
  margin-left: auto;
}


.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 28px;
    margin-left: auto;           
}
.nav-links li {
    position: relative;
}
.nav-links a {
    font-weight: 600;
    color: #f0eef9;
    position: relative;
    padding: 8px 0;
    text-decoration: none;
}
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-image: linear-gradient(90deg, var(--grad-button-start), var(--grad-button-end));
    bottom: -5px;
    left: 0;
    transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
    width: 100%;
}
.nav-links a[aria-current="page"] {
    color: #ffffff;
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    width: 28px;
    height: 20px;
}
.hamburger span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}
#nav-toggle {
    display: none;
}


.nav-overlay { display: none; }


@media (max-width: 768px) {
  .hamburger { display: flex; margin-left: auto; }
  .header-left { gap: 0; }


  .header-left .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    max-height: none;          
    overflow-y: auto;          
    background: #0c0c0e;
    flex-direction: column;
    padding: 90px 20px 20px;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    gap: 0;
  }

  .nav-links li { margin: 8px 0; }
  .nav-links a {
    display: block;
    padding: 14px 16px;
    font-size: 1.1rem;
    color: #f0eef9;
    border-radius: 8px;
  }
  .nav-links a:hover { background: rgba(255, 255, 255, 0.1); }

  #nav-toggle:checked ~ .header-left .nav-links { right: 0; }


  #nav-toggle:checked ~ .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  #nav-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
  #nav-toggle:checked ~ .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }


  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    backdrop-filter: blur(2px);
    cursor: pointer;
  }
  #nav-toggle:checked ~ .nav-overlay { display: block; }
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between; 
  gap: 24px; 
}


.header-left .nav-links {
  margin-left: auto;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.testimonial-card blockquote {
    font-style: italic;
    color: #444;
    margin: 0 0 15px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-card figcaption {
    font-weight: 600;
    color: #2c3e50;
    margin-top: 10px;
}
