:root {
    /* Colors inspired by the reference */
    --clr-bg: #fdfaf6;
    --clr-text-dark: #111111;
    --clr-text-gray: #555555;
    --clr-nav-btn-bg: #f0e1cf;
    --clr-accent: #111111;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg);
    color: var(--clr-text-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 5rem; /* Ensure space for fixed header */
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.header.scrolled {
    padding: 1rem 4rem;
    background: rgba(253, 250, 246, 0.85); /* Matches --clr-bg with opacity */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--clr-text-dark);
}

.logo-img {
    height: 32px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a,
.lang-switch a {
    text-decoration: none;
    color: var(--clr-text-dark);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.nav a:hover,
.lang-switch a:hover {
    opacity: 0.6;
}

.nav a.nav-btn {
    background-color: var(--clr-nav-btn-bg);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
}

.nav a.nav-btn:hover {
    opacity: 1;
    background-color: #e5d2bc;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-switch a {
    opacity: 0.5;
}

.lang-switch a.active {
    opacity: 1;
    font-weight: 700;
}

.lang-switch span {
    color: var(--clr-text-dark);
    opacity: 0.3;
}

/* Hero Content Split Layout */
.hero-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 0 0 4rem;
}

/* Left Column - Text */
.hero-text-col {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 5rem;
    padding-bottom: 4rem;
    animation: fadeIn 1s ease forwards;
}

.over-heading {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-gray);
    margin-bottom: 1rem;
    font-weight: 500;
}

.main-heading {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 2rem;
    color: var(--clr-text-dark);
}

.main-heading strong {
    font-weight: 600;
}

.description {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.trigger {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--clr-text-gray);
}

.trigger strong {
    color: var(--clr-text-dark);
    font-weight: 600;
}

.trigger-icon {
    font-size: 1.5rem;
    color: var(--clr-accent);
    flex-shrink: 0;
    margin-top: -0.15rem;
}

.micro-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--clr-text-gray);
    margin-top: 0.5rem;
    opacity: 0.8;
}

.btn-black {
    display: inline-block;
    align-self: flex-start;
    background: var(--clr-accent);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    transition: transform 0.3s ease, background 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-black:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Outline Text "Beauty" -> "Zanzibar" */
.outline-text {
    position: absolute;
    bottom: 10%;
    left: 0;
    font-family: var(--font-heading);
    font-size: 7rem;
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
    z-index: -1;
    pointer-events: none;
    user-select: none;
}

/* Circular Badge overlapping right image */
.circular-badge {
    position: absolute;
    right: -60px; /* Overlaps into the right column */
    bottom: 25%;
    width: 120px;
    height: 120px;
    background: var(--clr-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    color: #fff;
}

.badge-text-path {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: spin 15s linear infinite;
}

.badge-text-path text {
    fill: #fdfaf6;
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 3.5px;
    font-weight: 500;
    text-transform: uppercase;
}

.badge-center-icon {
    font-size: 1.5rem;
    color: #fdfaf6;
}

/* Right Column - Image */
.hero-image-col {
    padding-right: 4rem;
    padding-bottom: 4rem;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: imageReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes imageReveal {
    from { opacity: 0; clip-path: inset(0 100% 0 0); }
    to { opacity: 1; clip-path: inset(0 0 0 0); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* How It Works Section */
.how-it-works {
    background: #ffffff;
    padding: 6rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--clr-text-dark);
    line-height: 1.2;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-icon {
    font-size: 3rem;
    color: var(--clr-accent);
    margin-bottom: 1.5rem;
    background: var(--clr-bg);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--clr-text-dark);
}

.step-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--clr-text-gray);
}

.lifehack-box {
    background: var(--clr-bg);
    padding: 2rem 3rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.lifehack-icon {
    font-size: 2.5rem;
    color: #ff6b00;
    flex-shrink: 0;
}

.lifehack-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--clr-text-dark);
}

/* Zanzibar Experience Section (Dark/Coffee Theme) */
.zanzibar-experience {
    background: #1a1511;
    color: #fdfaf6;
    padding: 8rem 2rem;
}

.experience-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.section-heading.light-heading {
    color: #fdfaf6;
    margin-bottom: 1.5rem;
}

.experience-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(253, 250, 246, 0.8);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 1.5rem;
}

.bento-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #2a231d;
}

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

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

.bento-text {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-icon {
    font-size: 2.5rem;
    color: #e5d2bc;
    margin-bottom: 1.5rem;
}

.bento-text h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #fdfaf6;
    line-height: 1.3;
}

.bento-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(253, 250, 246, 0.7);
}

.bento-accent {
    background: #e5d2bc;
    color: #111111;
}

.bento-accent .bento-icon {
    color: #111111;
}

.bento-accent h3 {
    color: #111111;
}

.bento-accent p {
    color: rgba(17, 17, 17, 0.8);
}

.bento-span-2 {
    grid-column: span 2;
}

/* Hotel Gallery Section */
.hotel-gallery {
    background: var(--clr-bg);
    padding: 6rem 2rem;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-caption {
    text-align: center;
    font-size: 1.1rem;
    color: var(--clr-text-gray);
    margin-bottom: 3rem;
    font-weight: 300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.item-ocean {
    grid-column: span 2;
    grid-row: span 2;
}

.item-room {
    grid-column: span 1;
    grid-row: span 1;
}

.item-pool {
    grid-column: span 1;
    grid-row: span 1;
}

.item-terrace {
    grid-column: span 2;
    grid-row: span 1;
}

.item-day {
    grid-column: span 1;
    grid-row: span 1;
}

/* Why DGUV Section */
.why-dguv {
    background: #ffffff;
    padding: 5rem 2rem;
}

.why-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
}

.why-intro {
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--clr-text-gray);
    margin-top: 1rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: var(--clr-bg);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.why-icon {
    font-size: 2.2rem;
    color: var(--clr-accent);
    margin-bottom: 1rem;
}

.why-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--clr-text-dark);
}

.why-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--clr-text-gray);
}

/* What We Check Section */
.what-we-check {
    background: var(--clr-bg);
    padding: 6rem 2rem;
}

.check-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.check-intro {
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--clr-text-gray);
    margin-top: 1rem;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.check-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

.check-card-image {
    position: relative;
    height: 250px;
}

.check-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.check-card-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem 2rem 1.5rem 2rem;
    color: #ffffff;
}

.check-card-title-overlay h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.check-card-title-overlay span {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.check-card-content {
    padding: 2rem;
    flex-grow: 1;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.check-list li:last-child {
    margin-bottom: 0;
}

.check-list iconify-icon {
    font-size: 1.8rem;
    color: var(--clr-accent);
    margin-right: 1rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.check-list div {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--clr-text-gray);
}

.check-list strong {
    color: var(--clr-text-dark);
}

/* Trigger Box */
.check-trigger {
    background: #ffffff;
    border-left: 4px solid var(--clr-accent);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    max-width: 900px;
    margin: 0 auto;
}

.trigger-icon-box {
    background: rgba(229, 210, 188, 0.3);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trigger-icon-box iconify-icon {
    font-size: 2rem;
    color: var(--clr-text-dark);
}

.trigger-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--clr-text-dark);
}

.trigger-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--clr-text-gray);
    margin: 0;
}

/* About Company Section */
.about-company {
    background-color: #1e293b;
    color: #ffffff;
    padding: 3rem 0;
}

.about-company .container {
    padding: 0;
    max-width: 1400px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.about-image-col {
    height: 100%;
    min-height: 400px;
}

.about-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text-col {
    padding: 3rem;
}

.about-company .section-heading.light-heading {
    color: #ffffff;
    text-align: left;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.trust-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.trust-list li:last-child {
    margin-bottom: 0;
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1rem;
}

.trust-icon iconify-icon {
    font-size: 1.5rem;
    color: var(--clr-accent);
}

.trust-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.trust-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.about-cta-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.about-cta-box p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: auto;
}

.btn-outline-light iconify-icon {
    margin-left: 0.5rem;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: #1e293b;
}

.btn-outline-light:hover iconify-icon {
    transform: translateX(4px);
}

/* FAQ Section */
.faq-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section .section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #ffffff;
}

.faq-item:hover {
    border-color: rgba(0,0,0,0.15);
}

.faq-item.active {
    border-color: var(--clr-accent);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    user-select: none;
    color: var(--clr-text-dark);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--clr-text-dark);
    opacity: 0.5;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item:hover .faq-icon {
    opacity: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(-180deg);
    color: var(--clr-accent);
    opacity: 1;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    color: var(--clr-text-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Form Section */
.lead-form-section {
    background: var(--clr-bg);
    padding: 4rem 0;
    position: relative;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.form-content-col {
    color: var(--clr-text-dark);
}

.form-heading {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.form-intro {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.form-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.badge-item iconify-icon {
    font-size: 1.25rem;
    background: var(--clr-nav-btn-bg);
    color: var(--clr-text-dark);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.form-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.dguv-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--clr-text-dark);
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-accent);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(240, 225, 207, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0a0a0;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.25s ease, opacity 0.25s ease;
}

.btn-submit--disabled,
.btn-submit:disabled {
    background-color: #b0b0b0 !important;
    color: #fff !important;
    cursor: not-allowed;
    opacity: 0.7;
}

.gdpr-text {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.gdpr-text iconify-icon {
    font-size: 1.25rem;
    color: #4CAF50;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.gdpr-text p {
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--clr-text-gray);
    margin: 0;
}

.gdpr-text strong {
    color: var(--clr-text-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--clr-text-dark);
    cursor: pointer;
}

/* Footer Section */
.footer {
    background-color: #2a3241;
    color: #e2e8f0;
    padding: 5rem 4rem 2rem;
    font-size: 0.95rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
}

.footer-desc {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-link-main {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e8a87c;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.footer-link-main:hover {
    opacity: 0.8;
}

.footer-link-main iconify-icon {
    font-size: 1.25rem;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-links, .footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e8a87c;
}

.footer-links iconify-icon {
    font-size: 1.25rem;
    color: #64748b;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.footer-contact iconify-icon {
    font-size: 1.25rem;
    color: #e8a87c;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #e8a87c;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    text-align: left;
}

.copyright {
    color: #94a3b8;
}

.disclaimer {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.5;
    max-width: 60%;
    margin: 0;
}

/* Legal Pages */
.legal-header {
    background-color: #1e293b;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    padding: 1.5rem 4rem;
}

.legal-header .logo-text, .legal-header .nav a {
    color: #ffffff;
}

.legal-page {
    padding: 6rem 0;
    background-color: var(--clr-bg);
    min-height: 50vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}

.legal-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--clr-text-dark);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--clr-text-dark);
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--clr-text-dark);
}

.legal-content p {
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: #475569;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: #475569;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-content a {
    color: var(--clr-accent);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .header {
        padding: 1.5rem 2rem;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--clr-bg);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(-20px);
    }
    
    .nav.nav-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav a {
        font-size: 1.5rem;
    }
    
    .nav a.nav-btn {
        font-size: 1.25rem;
        padding: 1rem 2.5rem;
        margin-top: 1rem;
    }

    .header-right {
        gap: 1rem;
    }
    
    .lang-switch {
        position: relative;
        z-index: 100;
        margin-left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
        position: relative;
        z-index: 100;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        padding: 0;
        gap: 0;
    }
    
    .hero-image-col {
        order: 1;
        width: 100%;
        height: 50vh;
        min-height: 350px;
        padding: 0;
    }
    
    .hero-img {
        /* ensure the image fills the space completely without any border-radius since it touches edges */
        border-radius: 0;
    }
    
    .hero-text-col {
        order: 2;
        padding: 4rem 2rem 4rem 2rem;
        align-items: flex-start;
        text-align: left;
    }
    
    .main-heading {
        font-size: 2.6rem;
    }
    
    .main-heading .desktop-br {
        display: none;
    }
    
    .description {
        align-items: flex-start;
    }
    
    .btn-black {
        align-self: flex-start;
    }
    
    .circular-badge {
        position: absolute;
        top: 0;
        left: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%);
        width: 100px;
        height: 100px;
        z-index: 20;
    }
    
    .outline-text {
        display: block;
        font-size: 4.5rem;
        bottom: 5%;
        left: 1rem;
    }

    .how-it-works { padding: 4rem 2rem; }
    .section-heading { font-size: 2.2rem; margin-bottom: 3rem; }
    .steps-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .lifehack-box { flex-direction: column; text-align: center; padding: 2rem; }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-span-2 {
        grid-column: span 1;
    }
    .bento-accent.bento-span-2 {
        grid-column: span 2;
    }
    .bento-image:first-child {
        grid-column: span 2;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .item-ocean { grid-column: span 2; grid-row: span 2; }
    .item-room { grid-column: span 1; }
    .item-pool { grid-column: span 1; }
    .item-terrace { grid-column: span 2; }
    .item-day { grid-column: span 2; }
    .check-grid {
        grid-template-columns: 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-image-col {
        min-height: 400px;
    }
    .about-text-col {
        padding: 4rem 2rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-content-col {
        text-align: center;
    }
    .form-badges {
        display: inline-flex;
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
    .why-dguv {
        padding: 5rem 2rem;
    }
    .check-trigger {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .faq-section {
        padding: 4rem 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .footer {
        padding: 4rem 2rem 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .disclaimer {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem 1.25rem;
    }
    .logo-img {
        height: 24px;
    }
    .logo-text {
        font-size: 0.95rem;
    }
    .mobile-menu-btn {
        font-size: 1.8rem;
    }
    
    .hero-image-col {
        height: 30vh;
        min-height: 220px;
        max-height: 250px;
    }
    
    .hero-text-col {
        padding: 3.5rem 1.25rem 1.5rem 1.25rem;
    }
    
    .circular-badge {
        width: 85px;
        height: 85px;
    }
    
    .badge-text-path text {
        font-size: 12px; /* slightly adjust for smaller circle */
    }
    
    .badge-center-icon {
        font-size: 1.2rem;
    }
    
    .over-heading {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
    
    .main-heading {
        font-size: 1.85rem;
        margin-bottom: 1rem;
        line-height: 1.1;
    }
    
    .description {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }
    
    .trigger {
        font-size: 0.85rem;
        gap: 0.75rem;
        line-height: 1.35;
    }
    
    .trigger-icon {
        font-size: 1.25rem;
        margin-top: -0.1rem;
    }
    
    .btn-black {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
    }
    
    .micro-text {
        font-size: 0.7rem;
        margin-top: 0.5rem;
    }
    
    .outline-text {
        font-size: 3rem;
        left: 0.5rem;
    }

    .how-it-works { padding: 3rem 1.5rem; }
    .section-heading { font-size: 1.8rem; margin-bottom: 2rem; }
    .step-icon { width: 60px; height: 60px; font-size: 2.2rem; margin-bottom: 1rem; }
    .step-title { font-size: 1.1rem; }
    .lifehack-box { padding: 1.5rem; }
    .lifehack-icon { font-size: 2rem; }
    .lifehack-text { font-size: 0.85rem; }
    
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .bento-span-2, 
    .bento-accent.bento-span-2,
    .bento-image:first-child {
        grid-column: span 1;
    }
    .bento-image {
        height: 250px;
    }
    .zanzibar-experience {
        padding: 4rem 1.5rem;
    }
    .experience-header {
        margin-bottom: 3rem;
    }
    .section-heading.light-heading {
        font-size: 2rem;
    }
    
    .hotel-gallery {
        padding: 3rem 1.5rem;
    }
    .gallery-caption {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 0.75rem;
    }
    .gallery-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    .item-ocean {
        grid-column: span 2 !important;
        grid-row: span 1 !important;
    }
    
    .why-dguv {
        padding: 3.5rem 1.5rem;
    }
    .why-card {
        padding: 2rem 1.5rem;
    }
    .what-we-check {
        padding: 4rem 1.5rem;
    }
    .check-card-image {
        height: 200px;
    }
    .check-card-content {
        padding: 1.5rem;
    }
    .check-trigger {
        padding: 1.5rem;
    }
    .about-company {
        padding: 0;
    }
    .about-image-col {
        min-height: 300px;
    }
    .about-text-col {
        padding: 3rem 1.5rem;
    }
    .trust-list li {
        flex-direction: column;
    }
    .trust-icon {
        margin-bottom: 1rem;
    }
    .btn-outline-light {
        width: 100%;
    }
    .lead-form-section {
        padding: 4rem 1.5rem;
    }
    .form-card {
        padding: 2rem 1.5rem;
    }
    .form-heading {
        font-size: 2rem;
    }
    .faq-section {
        padding: 3rem 1.5rem;
    }
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    .faq-answer {
        padding: 0 1.25rem;
    }
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }
}

/* ─── Form Success & Error States ─── */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    gap: 1rem;
    min-height: 300px;
}

.form-success__icon {
    font-size: 3.5rem;
    color: #4CAF50;
    line-height: 1;
}

.form-success__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--clr-text-dark);
}

.form-success__text {
    font-size: 0.95rem;
    color: var(--clr-text-gray);
    line-height: 1.6;
    max-width: 380px;
}

.form-error {
    font-size: 0.8rem;
    color: #c0392b;
    background: #fdf0ef;
    border: 1px solid #f5c6c2;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    line-height: 1.5;
}

.form-error a {
    color: #c0392b;
    text-decoration: underline;
}

/* ─── Consent Checkbox ─── */
.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
}

.consent-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.consent-checkbox__box {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 3px;
    margin-top: 1px;
    background: #f9f9f9;
    transition: border-color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consent-checkbox__box::after {
    content: '';
    display: block;
    width: 4px;
    height: 7px;
    border: 1.5px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) scale(0);
    transition: transform 0.15s ease;
}

.consent-checkbox input:checked ~ .consent-checkbox__box {
    background: #111;
    border-color: #111;
}

.consent-checkbox input:checked ~ .consent-checkbox__box::after {
    transform: rotate(45deg) scale(1);
}

.consent-checkbox input:focus-visible ~ .consent-checkbox__box {
    outline: 2px solid #111;
    outline-offset: 2px;
}

.consent-checkbox__text {
    font-size: 0.75rem;
    color: var(--clr-text-gray);
    line-height: 1.5;
}

.consent-checkbox__text a {
    color: var(--clr-text-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ─── Cookie Consent Banner ─── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #111;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner--visible {
    transform: translateY(0);
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner__text {
    flex: 1;
    min-width: 200px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #aaa;
}

.cookie-banner__text a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-body);
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    letter-spacing: 0.03em;
}

.cookie-banner__btn--accept {
    background: #fff;
    color: #111;
    border-color: #fff;
}

.cookie-banner__btn--accept:hover {
    background: var(--clr-nav-btn-bg);
    border-color: var(--clr-nav-btn-bg);
}

.cookie-banner__btn--decline {
    background: transparent;
    color: #777;
    border-color: #444;
}

.cookie-banner__btn--decline:hover {
    color: #fff;
    border-color: #888;
}

@media (max-width: 640px) {
    .cookie-banner__inner {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
