:root {
    --primary: #0a4b6c; /* Deep Ocean Blue */
    --primary-light: #6ab7c8; /* Soft Teal */
    --secondary: #e8a87c; /* Warm Sunset */
    --accent: #41b3a3; /* Seafoam Green */
    --dark: #0a2239; /* Deep Night Ocean */
    --light: #f0f7f9; /* Seafoam White */
    --text-light: #e6f4f1; /* Soft White */
    --gradient: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    --wave-gradient: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--accent) 100%
    );
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    background-color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

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

/* Header & Navigation */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
    padding: 15px 0;
}

header.scrolled {
    background-color: rgba(10, 34, 57, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

header.scrolled .logo {
    color: var(--primary-light);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

header.scrolled nav ul li a {
    color: var(--primary-light);
    text-shadow: none;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

nav ul li a:hover:after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--secondary);
}

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

header.scrolled .mobile-menu-btn {
    color: var(--primary-light);
}

/* Contact Links */
.contact-link {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.contact-link:hover {
    color: var(--secondary);
}

.contact-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.contact-link:hover:after {
    width: 100%;
}

.response-time {
    color: rgba(230, 244, 241, 0.7);
    font-size: 0.9em;
    margin-top: 10px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    filter: saturate(1.2) contrast(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 34, 57, 0.5), rgba(10, 75, 108, 0.7));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeIn 1.5s ease-in-out;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero h1:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: var(--secondary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.hero-logo {
    max-width: 380px;
    width: 380px;
    height: 380px;
    margin: 0 auto 30px auto;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    padding: 18px;
    object-fit: contain;
    display: block;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-logo:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: all 0.6s ease;
    z-index: -1;
}

.btn:hover:before {
    left: 100%;
}

.btn:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--primary);
    transform: translateY(-3px);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.scroll-down:hover {
    color: var(--secondary);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--dark);
    position: relative;
    overflow: hidden;
}

.about.wave-bg {
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-light);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    order: 2;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--secondary);
    position: relative;
    padding-bottom: 15px;
}

.about-text h3:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background-color: var(--accent);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
}

.about-image {
    order: 1;
    position: relative;
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    transform: perspective(1000px) rotateY(-5deg);

}

.about-image:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(0deg);

}

.about-image img {
    width: 100%;
    height: auto;
    max-height: 800px;
    display: block;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

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

/* Special styling for About Me section */
#contact .about-content {
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

#contact .about-image {
    max-width: 400px;
}

/* About Letter and Portrait Layout - Only for about-me section */
.about-me .about-letter {
    order: 1;
    flex: 2;
    min-width: 0; /* Prevent flex item from overflowing */
}

.about-me .about-portrait {
    order: 2;
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-width: 0; /* Prevent flex item from overflowing */
    margin-top: 50px;
}

.about-me .about-portrait img {
    width: 100%;
    height: auto;
    max-width: 350px;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.about-me .about-portrait img:hover {
    transform: scale(1.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Target only the about-me section for flex layout */
.about-me {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

/* Letter-style About Me section */
.letter-container {
    background: linear-gradient(135deg,
        rgba(10, 75, 108, 0.15) 0%,
        rgba(106, 183, 200, 0.08) 30%,
        rgba(240, 247, 249, 0.12) 60%,
        rgba(65, 179, 163, 0.06) 100%);
    padding: 40px 35px;
    border-radius: 25px 15px 30px 20px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05),
        inset 0 0 20px rgba(106, 183, 200, 0.03);
    position: relative;
    margin: 20px 0;
    border: 1px solid rgba(106, 183, 200, 0.15);
    backdrop-filter: blur(8px);
    transform: rotate(-0.5deg);
}

.letter-container::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 30px;
    width: 3px;
    height: calc(100% - 30px);
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(232, 168, 124, 0.4) 5%,
        rgba(65, 179, 163, 0.3) 25%,
        rgba(106, 183, 200, 0.4) 50%,
        rgba(65, 179, 163, 0.3) 75%,
        rgba(232, 168, 124, 0.4) 95%,
        transparent 100%);
    border-radius: 2px;
    filter: blur(0.5px);
}

.letter-greeting {
    font-family: 'Caveat', cursive !important;
    font-size: 1.8rem !important;
    font-weight: 600  !important;
    color: var(--secondary) !important;
    margin-bottom: 25px !important;
    margin-left: 15px !important;
    position: relative;
    transform: rotate(-1deg) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.letter-content {
    margin-left: 15px;
    position: relative;
}

.letter-content p {
    font-family: 'Kalam', cursive;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    text-align: left;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.letter-content p:nth-child(odd) {
    transform: rotate(0.3deg);
}

.letter-content p:nth-child(even) {
    transform: rotate(-0.2deg);
}

.letter-highlight {
    font-family: 'Caveat', cursive !important;
    font-size: 1.6rem !important;
    font-weight: 600 !important;
    color: var(--secondary) !important;
    text-align: center !important;
    margin: 30px 0 !important;
    transform: rotate(-0.5deg) !important;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.letter-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(to right,
        transparent 0%,
        var(--secondary) 20%,
        var(--secondary) 80%,
        transparent 100%);
    border-radius: 1px;
}

.letter-signature {
    margin-top: 35px;
    margin-left: 15px;
    text-align: left;
    position: relative;
}

.signature-line {
    font-family: 'Kalam', cursive;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 8px;
    opacity: 0.9;
    transform: rotate(0.2deg);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.signature-name {
    font-family: 'Caveat', cursive;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
    transform: rotate(-1.5deg);
    position: relative;
    display: inline-block;
}

.signature-flourish {
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    color: var(--primary-light);
    transform: rotate(-5deg);
    display: inline-block;
    margin-left: 15px;
    margin-top: -5px;
    opacity: 0.8;
    letter-spacing: -2px;
    animation: gentle-wave 3s ease-in-out infinite;
}

@keyframes gentle-wave {
    0%, 100% { transform: rotate(-5deg) translateY(0px); }
    50% { transform: rotate(-3deg) translateY(-1px); }
}

/* Ocean-inspired texture effect */
.letter-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        /* Wave-like patterns */
        radial-gradient(ellipse at 15% 20%, rgba(106, 183, 200, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 85% 80%, rgba(65, 179, 163, 0.06) 0%, transparent 45%),
        radial-gradient(ellipse at 45% 60%, rgba(232, 168, 124, 0.04) 0%, transparent 35%),
        /* Sand texture */
        radial-gradient(circle at 70% 30%, rgba(240, 247, 249, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 30% 70%, rgba(10, 75, 108, 0.03) 0%, transparent 30%),
        /* Organic spots */
        radial-gradient(circle at 60% 15%, rgba(65, 179, 163, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 20% 90%, rgba(106, 183, 200, 0.04) 0%, transparent 25%);
    border-radius: 25px 15px 30px 20px;
    pointer-events: none;
    opacity: 0.7;
}

/* Retreats Section */
.retreats {
    padding: 100px 0;
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.retreats::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--dark);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.retreats::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--dark);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.1);
}

/* Retreat Hero Section */
.retreat-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 50px 0;
    position: relative;
    z-index: 2;
}

.retreat-hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    transform: perspective(1000px) rotateY(5deg);
}
.retreat-hero-image:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(0deg);

}

.retreat-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.4s ease;
    transform: scale(1.03);
}

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

.retreat-hero-content h3 {
    font-size: 2.5rem;
    color: var(--light);
    margin-bottom: 20px;
    font-family: 'Caveat', cursive;
}

.retreat-hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Retreat Dates */
.retreat-dates {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.date-card {
    background: rgba(106, 183, 200, 0.15);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(106, 183, 200, 0.3);
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 200px;
}

.date-label {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 8px;
    font-weight: 600;
}

.date-value {
    display: block;
    font-size: 1.1rem;
    color: var(--light);
    font-weight: 500;
}

.retreat-capacity {
    text-align: center;
    color: var(--accent);
    font-weight: 600;
    margin-top: 20px;
    font-style: italic;
}

/* Retreat Details Section */
.retreat-details {
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.retreat-section {
    margin-bottom: 30px;
}

/* Collapsible Sections */
.collapsible-section {
    background: rgba(10, 34, 57, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(106, 183, 200, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.collapsible-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.collapsible-section[open] {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Remove default details styling */
.collapsible-section summary {
    list-style: none;
}

.collapsible-section summary::-webkit-details-marker {
    display: none;
}

.section-title {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: rgba(106, 183, 200, 0.05);
    border-bottom: 1px solid rgba(106, 183, 200, 0.2);
    transition: background-color 0.3s ease;
    list-style: none;
    user-select: none;
}

.section-title:hover {
    background: rgba(106, 183, 200, 0.1);
}

.section-icon {
    font-size: 1.8rem;
    margin-right: 15px;
}

.section-title h3 {
    flex: 1;
    font-size: 1.5rem;
    color: var(--light);
    margin: 0;
    font-family: 'Caveat', cursive;
}

.toggle-icon {
    font-size: 1.2rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.collapsible-section[open] .toggle-icon {
    transform: rotate(180deg);
}

.section-content {
    padding: 30px;
}

.section-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.section-content h4 {
    color: var(--secondary);
    margin: 25px 0 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.section-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.section-content li {
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.section-content li::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Itinerary Grid */
.itinerary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.itinerary-column h4 {
    color: var(--secondary);
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(106, 183, 200, 0.3);
}

/* Included/Not Included Grid */
.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.included-column h4 {
    color: var(--secondary);
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(106, 183, 200, 0.3);
}

.not-included-section {
    background: rgba(232, 168, 124, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(232, 168, 124, 0.3);
    margin-top: 30px;
}

.not-included-section h4 {
    color: var(--accent);
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.not-included-list {
    margin: 0;
}

.not-included-list li::before {
    content: '✗';
    color: var(--accent);
}

/* Villa Details Grid */
.villa-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 20px 0;
}

.villa-column h4 {
    color: var(--secondary);
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(106, 183, 200, 0.3);
}

.villa-choice {
    background: rgba(106, 183, 200, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
    margin: 10px 0;
    border-left: 3px solid var(--accent);
    color: var(--text-light);
}

.villa-note {
    color: var(--text-light);
    font-style: italic;
    margin-top: 20px;
    opacity: 0.8;
    text-align: center;
    padding: 15px;
    background: rgba(106, 183, 200, 0.05);
    border-radius: 8px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.price-option {
    background: rgba(106, 183, 200, 0.15);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(106, 183, 200, 0.3);
    transition: transform 0.3s ease;
}

.price-option:hover {
    transform: translateY(-3px);
}

.price-header {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: bold;
    color: var(--light);
    margin: 10px 0;
}

.price-usd {
    color: var(--text-light);
    font-size: 1rem;
}

.availability {
    background: rgba(65, 179, 163, 0.2);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    color: var(--accent);
    border: 1px solid rgba(65, 179, 163, 0.4);
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Retreat CTA */
.retreat-cta {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
}

.retreat-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.retreat-card {
    background-color: rgba(10, 34, 57, 0.8);
    border-radius: 20px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(106, 183, 200, 0.2);
}

.retreat-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.retreat-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.retreat-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 34, 57, 1), transparent);
}

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

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

.retreat-content {
    padding: 30px;
}

.retreat-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-light);
    position: relative;
    padding-bottom: 15px;
}

.retreat-content h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.retreat-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.retreat-content ul {
    margin-bottom: 25px;
    color: var(--text-light);
}

.retreat-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
}

.retreat-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--primary-light);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(106, 183, 200, 0.2);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%236ab7c8' fill-opacity='0.05' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'%3E%3C/path%3E%3C/svg%3E");
    opacity: 0.5;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.testimonial-slide {
    padding: 40px 30px;
    background-color: rgba(10, 75, 108, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(106, 183, 200, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin: 20px;
    position: relative;
}

.testimonial-slide::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(10px);
}

.testimonial-slide::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(15px);
}

.testimonial-content {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    padding: 0 40px;
    color: var(--text-light);
    line-height: 1.8;
}

.testimonial-content:before,
.testimonial-content:after {
    content: '\201C';
    font-size: 5rem;
    position: absolute;
    color: var(--secondary);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content:before {
    top: -30px;
    left: 0;
}

.testimonial-content:after {
    content: '\201D';
    bottom: -60px;
    right: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--primary-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-light);
}

.author-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.8;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: var(--gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--dark);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%236ab7c8' fill-opacity='0.1' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,261.3C960,256,1056,224,1152,208C1248,192,1344,192,1392,192L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.cta h2:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 3px;
    background-color: var(--secondary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.cta .btn {
    background-color: var(--secondary);
    color: var(--dark);
    border-color: var(--secondary);
    position: relative;
    z-index: 2;
    font-weight: 600;
    padding: 15px 40px;
}

.cta .btn:hover {
    background-color: var(--text-light);
    border-color: var(--text-light);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Register Box - Ensure it's clickable and in foreground */
#register-box {
    position: relative;
    z-index: 10 !important;
}

#register-box .btn {
    position: relative;
    z-index: 11 !important;
    pointer-events: auto !important;
}

#register-box a {
    position: relative;
    z-index: 11 !important;
    pointer-events: auto !important;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--text-light);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%236ab7c8' fill-opacity='0.03' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'%3E%3C/path%3E%3C/svg%3E");
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
    padding: 0 20px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: var(--primary-light);
}

.footer-column h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-column p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 5px;
    transition: all 0.3s ease;
}

.footer-column ul li:hover {
    padding-left: 10px;
}

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
}

.footer-column ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background-color: var(--secondary);
    bottom: -3px;
    left: 0;
    transition: width 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-column ul li a:hover:after {
    width: 100%;
}

.social-links {
    display: flex;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(106, 183, 200, 0.1);
    color: var(--text-light);
    margin-right: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-links a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
    transform: scale(0);
    transition: transform 0.4s ease;
    border-radius: 50%;
    z-index: -1;
}

.social-links a:hover {
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-links a:hover:before {
    transform: scale(1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
    position: relative;
    z-index: 2;
}

/* Section with wave background */
.wave-bg {
    position: relative;
    overflow: hidden;
}

.wave-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%236ab7c8' fill-opacity='0.05' d='M0,192L48,176C96,160,192,128,288,122.7C384,117,480,139,576,165.3C672,192,768,224,864,213.3C960,203,1056,149,1152,138.7C1248,128,1344,160,1392,176L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes waveFlow {
    0% {
        transform: translateX(-25%) translateY(0);
    }
    50% {
        transform: translateX(-30%) translateY(10px);
    }
    100% {
        transform: translateX(-25%) translateY(0);
    }
}

@keyframes oceanPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(106, 183, 200, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(106, 183, 200, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(106, 183, 200, 0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
        justify-self: center;
        display: flex;
        justify-content: center;
    }

    #contact .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    #contact .about-image {
        max-width: 450px;
        margin: 0 auto;
        justify-self: center;
    }

    .letter-container {
        padding: 30px 25px;
        margin: 15px 0;
        border-radius: 20px 12px 25px 15px;
        transform: rotate(-0.3deg);
    }

    .letter-container::before {
        left: 25px;
        top: 12px;
        height: calc(100% - 24px);
    }

    .letter-greeting {
        font-size: 1.6rem;
        margin-left: 10px;
    }

    .letter-content {
        margin-left: 10px;
    }

    .letter-signature {
        margin-left: 10px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-logo {
        max-width: 320px;
        width: 320px;
        height: 320px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    nav ul li a {
        color: var(--dark);
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-logo {
        max-width: 280px;
        width: 280px;
        height: 280px;
        padding: 12px;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
        text-align: center;
    }

    .btn-outline {
        margin-left: auto;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content {
        gap: 30px;
    }

    .about-image {
        max-width: 450px;
        margin: 0 auto;
        justify-self: center;
        display: flex;
        justify-content: center;
    }

    #contact .about-image {
        max-width: 400px;
        margin: 0 auto;
        justify-self: center;
    }

    .about-text h3 {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    /* Responsive styles for about-me section only */
    .about-me {
        flex-direction: column;
        gap: 30px;
    }

    .about-me .about-letter,
    .about-me .about-portrait {
        order: unset;
        flex: none;
        min-width: unset;
    }

    .about-me .about-portrait {
        align-self: center;
        margin: 0 auto;
    }

    .about-me .about-portrait img {
        max-width: 350px;
        max-height: 450px;
    }

    .letter-container {
        padding: 25px 20px;
        margin: 10px 0;
        border-radius: 18px 10px 22px 12px;
        transform: rotate(-0.2deg);
    }

    .letter-container::before {
        left: 20px;
        top: 10px;
        height: calc(100% - 20px);
    }

    .letter-greeting {
        font-size: 1.4rem;
        margin-left: 8px;
    }

    .letter-content {
        margin-left: 8px;
    }

    .letter-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .letter-highlight {
        font-size: 1.2rem !important;
    }

    .signature-name {
        font-size: 1.8rem;
    }

    .letter-signature {
        margin-left: 8px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-column {
        width: 100%;
        margin-bottom: 30px;
    }

    /* Retreat Section Mobile Styles */
    .retreat-hero {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 30px 0;
    }

    .retreat-hero-image {
        order: 1;
        transform: none;
    }

    .retreat-hero-content {
        order: 2;
    }

    .retreat-hero-content h3 {
        font-size: 2rem;
    }

    .retreat-dates {
        flex-direction: column;
        gap: 15px;
    }

    .date-card {
        min-width: unset;
    }

    .section-title {
        padding: 20px 25px;
    }

    .section-title h3 {
        font-size: 1.3rem;
    }

    .section-icon {
        font-size: 1.5rem;
        margin-right: 12px;
    }

    .section-content {
        padding: 25px;
    }

    .itinerary-grid,
    .included-grid,
    .villa-details-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .price-option {
        padding: 20px 15px;
    }

    .price-amount {
        font-size: 1.6rem;
    }
}
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 220px;
        width: 220px;
        height: 220px;
        padding: 10px;
        margin-bottom: 25px;
    }

    .about {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .about-content {
        gap: 25px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
        justify-self: center;
        display: flex;
        justify-content: center;
    }

    #contact .about-image {
        max-width: 350px;
        margin: 0 auto;
        justify-self: center;
    }

    .about-text h3 {
        font-size: 1.4rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .letter-container {
        padding: 20px 15px;
        margin: 8px 0;
        border-radius: 15px 8px 18px 10px;
        transform: rotate(-0.1deg);
    }

    .letter-container::before {
        left: 15px;
        top: 8px;
        height: calc(100% - 16px);
    }

    .letter-greeting {
        font-size: 1.3rem;
        margin-left: 5px;
    }

    .letter-content {
        margin-left: 5px;
    }

    .letter-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .letter-highlight {
        font-size: 1.1rem !important;
        margin: 20px 0 !important;
    }

    .signature-line {
        font-size: 0.9rem;
    }

    .signature-name {
        font-size: 1.6rem;
    }

    .letter-signature {
        margin-left: 5px;
        margin-top: 25px;
    }

    /* Retreat Section Small Mobile Styles */
    .retreat-hero-content h3 {
        font-size: 1.8rem;
    }

    .section-title {
        padding: 18px 20px;
    }

    .section-title h3 {
        font-size: 1.2rem;
    }

    .section-icon {
        font-size: 1.3rem;
        margin-right: 10px;
    }

    .section-content {
        padding: 20px;
    }

    .section-content h4 {
        font-size: 1.1rem;
    }

    .price-amount {
        font-size: 1.4rem;
    }

    .btn-large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}
