@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Color Palette - Ocean Theme */
:root {
    --ocean-deep: #1e3a5f;
    --ocean-medium: #4a90a4;
    --ocean-light: #87ceeb;
    --sand-light: #fafafa;
    --sand-medium: #f0f0f0;
    --sand-dark: #e0e0e0;
    --foam-white: #ffffff;
    --text-dark: #2c3e50;
    --text-medium: #5a6c7d;
    --accent-teal: #5f9ea0;
}

/* Typography */
h1, h2, h3 {
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: var(--ocean-deep);
    letter-spacing: 0.8px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.5;
    margin-bottom: 3rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

p {
    margin-bottom: 2.5rem;
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 2.1;
    font-weight: 300;
    letter-spacing: 0.4px;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--foam-white) 0%, var(--sand-light) 100%);
    box-shadow: 0 1px 20px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-radius: 0 0 25px 25px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    color: #05b2b5;
    font-size: 1.8rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #d4a574;
    font-weight: 500;
    transition: all 0.4s ease;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
}

.nav-link:hover {
    color: #b8935f;
    text-decoration: underline;
}

.services a {
    color: #d4a574;
}

.services a:hover {
    color: #b8935f;
}

.nav-link:hover {
    color: #b8935f;
    text-decoration: underline;
}

.nav-link.active {
    color: #05b2b5;
    background: rgba(5, 178, 181, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background-image: url('waves2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
    overflow: hidden;
}



.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-section h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    font-family: 'Comfortaa', 'Poppins', sans-serif;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    line-height: 1.4;
    letter-spacing: 1px;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 1;
    font-weight: 400;
    font-family: 'Nunito', 'Poppins', sans-serif;
    letter-spacing: 0.3px;
    color: white;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

/* Content Sections */
.content-section {
    position: relative;
    padding: 4rem 2rem 2rem;
    margin: 0;
    text-align: left;
    background-color: #ffffff;
    z-index: 20;
}

.content-section.intro {
    background-color: #ffffff;
}

.content-section.intro::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    background-image: url('wave-divider.svg');
    background-size: 100% 120px;
    background-repeat: no-repeat;
    background-position: bottom;
    z-index: 10;
    pointer-events: none;
    transform: scaleY(-1);
    transition: transform 0.1s ease-out;
}

@keyframes waveFloat {
    0% { transform: scaleY(-1) translateX(0px) translateY(0px); }
    25% { transform: scaleY(-1) translateX(-5px) translateY(-2px); }
    50% { transform: scaleY(-1) translateX(0px) translateY(-4px); }
    75% { transform: scaleY(-1) translateX(5px) translateY(-2px); }
    100% { transform: scaleY(-1) translateX(0px) translateY(0px); }
}

.content-section.intro::before.animate {
    animation: waveFloat 3s ease-in-out infinite;
}



.intro-text p,
.features-list h3,
.features-list p,
.services-list li,
.services-list p,
.capabilities-list h3,
.capabilities-list p,
.cta-content p,
.disclaimer-section p {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.features-list h3,
.capabilities-list h3 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

.services-list li {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.2px;
    margin-bottom: 0.8rem;
}

.content-section.alt-bg {
    background: none;
    margin: 0;
    position: relative;
}

.content-section.alt-bg::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 120px;
    background-image: url('wave-divider.svg');
    background-size: 100% 120px;
    background-repeat: no-repeat;
    background-position: bottom;
    z-index: 10;
    pointer-events: none;
    transform: scaleY(-1);
    transition: transform 0.1s ease-out;
}

/* Intro Section */
.intro-text {
    margin: 0;
    text-align: center;
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 2.2;
    margin-bottom: 2.5rem;
}

/* Features List */
.features-list {
    margin: 2rem 0;
    text-align: left;
}

.features-list ul {
    list-style: none;
    padding: 0;
}

.features-list li {
    margin-bottom: 3rem;
    padding: 0;
    background: none;
    border: none;
    transition: none;
    color: var(--text-medium);
    line-height: 2.1;
}

.features-list li:hover {
    color: var(--ocean-medium);
}

.features-list h3 {
    color: var(--ocean-medium);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.features-list p {
    margin: 0;
    color: var(--text-medium);
    line-height: 1.9;
    font-weight: 300;
}

/* Compass Section Styles */
.compass-section {
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--foam-white) 100%);
    padding: 6rem 2rem;
}

.compass-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--ocean-medium);
    margin-bottom: 4rem;
    font-weight: 400;
}

.compass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.compass-card {
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.compass-card:hover {
    transform: translateY(-3px);
}

.compass-card:hover .compass-icon {
    background-color: var(--ocean-light);
    border-color: var(--ocean-medium);
    transform: scale(1.05);
    color: var(--foam-white);
    background: var(--ocean-medium);
    -webkit-text-fill-color: var(--foam-white);
}

.compass-icon {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--ocean-medium);
    background: linear-gradient(135deg, var(--ocean-light), var(--ocean-medium));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1;
    text-align: center;
    padding: 0.8rem 1.2rem;
    border: 2px solid var(--ocean-light);
    border-radius: 25px;
    background-color: rgba(135, 206, 235, 0.1);
    width: fit-content;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s ease;
}

.compass-card h3 {
    color: var(--ocean-deep);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.4;
}

.compass-card p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
}

.compass-outro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--ocean-medium);
    font-style: italic;
    margin-top: 3rem;
    font-weight: 300;
    line-height: 1.8;
}

/* Simple Reviews */
.simple-review {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.simple-review:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.simple-review p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #333;
}

.simple-review p em {
    font-style: italic;
    color: #555;
}

.simple-review .review-author {
    font-weight: 600;
    color: #05b2b5;
    font-style: normal;
    text-align: right;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.simple-review h4 {
    color: var(--ocean-deep);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

/* CTA Buttons for Reviews Page */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #05b2b5 0%, #04a0a3 100%);
    color: var(--foam-white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 8px 20px rgba(5, 178, 181, 0.25), 0 4px 12px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(5, 178, 181, 0.2);
}

.cta-buttons .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(5, 178, 181, 0.35), 0 8px 18px rgba(0, 0, 0, 0.25), 0 4px 10px rgba(5, 178, 181, 0.25);
    background: linear-gradient(135deg, #04a0a3 0%, #05b2b5 100%);
}

.cta-buttons .cta-button.secondary {
    background: transparent;
    color: #05b2b5;
    border-color: #05b2b5;
}

.cta-buttons .cta-button.secondary:hover {
    background: #05b2b5;
    color: var(--foam-white);
    border-color: #05b2b5;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .simple-review {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .simple-review p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Responsive Design for Compass */
@media (max-width: 768px) {
    .compass-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .compass-card {
        padding: 2rem 1.5rem;
    }
    
    .compass-icon {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
        letter-spacing: 1.5px;
    }
    
    .compass-intro {
        font-size: 1.2rem;
    }
    
    .compass-outro {
        font-size: 1rem;
    }
}

/* Why Choose Section - Card Style */
.why-choose-section {
    background-color: var(--foam-white);
    padding: 5rem 2rem;
}

.why-choose-section h2 {
    margin-bottom: 4rem;
}

.why-choose-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.why-choose-item {
    background: var(--foam-white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--sand-medium);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 2rem;
}

.why-choose-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2), 0 15px 30px rgba(0,0,0,0.15), 0 8px 18px rgba(0,0,0,0.12);
}

.why-choose-item h3 {
    color: var(--ocean-deep);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: center;
}

.why-choose-item p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
    flex-grow: 1;
}

.why-choose-button {
    margin-top: 1rem;
    text-align: center;
}

.btn-read-more {
    display: inline-block;
    background: linear-gradient(135deg, #05b2b5 0%, #04a0a3 100%);
    color: white;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(5, 178, 181, 0.3);
}

.btn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 178, 181, 0.4);
    background: linear-gradient(135deg, #04a0a3 0%, #05b2b5 100%);
}

/* Responsive Design for Why Choose */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 4rem 1.5rem;
    }
    
    .why-choose-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-choose-item {
        padding: 1.5rem;
    }
    
    .why-choose-item h3 {
        font-size: 1.3rem;
    }
    
    .why-choose-item p {
        font-size: 1rem;
    }
}

/* Testimonials Section - Simple and Clean */
.testimonials-section {
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--foam-white) 100%);
    padding: 5rem 2rem;
}

.testimonials-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--ocean-medium);
    margin-bottom: 3rem;
    font-weight: 400;
}

.testimonials-list {
    max-width: 900px;
    margin: 0 auto 3rem auto;
}

.testimonial-item {
    background: var(--foam-white);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(30, 58, 95, 0.05);
    border-left: 4px solid var(--ocean-light);
}

.testimonial-item:last-child {
    margin-bottom: 0;
}

.testimonial-item h3 {
    color: var(--ocean-deep);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: left;
}

.testimonial-item p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
    font-style: italic;
}

.testimonials-outro {
    text-align: center;
    font-size: 1rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 1.5rem;
    }
    
    .testimonial-item {
        padding: 1.5rem;
    }
    
    .testimonial-item h3 {
        font-size: 1.2rem;
    }
    
    .testimonial-item p {
        font-size: 1rem;
    }
    
    .testimonials-intro {
        font-size: 1.1rem;
    }
    
    .testimonials-outro {
        font-size: 0.95rem;
    }
}

/* Services */
.services-list {
    margin: 0.5rem 0 2rem 0;
    text-align: left;
}

.services-list ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.services-list li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    line-height: 1.6;
    border: none;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 300;
}

.services-list li:before {
    content: '';
}

/* No bullets for specific sections */
.no-bullets li {
    padding-left: 0;
}

.no-bullets li:before {
    content: none;
}

/* Empowerment List */
.empowerment-list {
    margin: 2rem 0;
    text-align: left;
}

.empowerment-list ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.empowerment-list li {
    padding: 1rem 0;
    color: var(--text-medium);
    line-height: 1.8;
    position: relative;
    padding-left: 2rem;
    font-weight: 300;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.empowerment-list li:before {
    content: '•';
    color: var(--ocean-medium);
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.empowerment-list li strong {
    color: var(--ocean-deep);
    font-weight: 600;
    font-size: 1.05rem;
}

#online-services {
    margin-bottom: 4rem; /* Extra space after the online list */
}

/* Capabilities */
.capabilities-list {
    margin: 2rem 0;
    text-align: left;
}

.capabilities-list ul {
    list-style: none;
    padding: 0;
}

.capabilities-list li {
    margin-bottom: 3rem;
    padding: 0;
    background: none;
    border: none;
    transition: none;
    color: var(--text-medium);
    line-height: 2.1;
    font-weight: 300;
}

.capabilities-list li:hover {
    color: var(--ocean-medium);
}

.capabilities-list h3 {
    color: var(--ocean-medium);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.capabilities-list p {
    margin: 0;
    color: var(--text-medium);
    line-height: 1.9;
    font-weight: 300;
}

/* CTA Section */
.cta-content {
    text-align: left;
    margin: 0;
}

.cta-content h2 {
    text-align: center;
}

.cta-button {
    margin-top: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.btn-primary {
    display: inline-block;
    margin: 0 auto;
    background: linear-gradient(135deg, #05b2b5 0%, #04a0a3 50%, #039ea1 100%);
    color: white;
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 60px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(5, 178, 181, 0.3), 0 6px 15px rgba(0, 0, 0, 0.2), 0 3px 8px rgba(5, 178, 181, 0.2);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary::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: left 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 40px rgba(5, 178, 181, 0.4), 0 10px 25px rgba(0, 0, 0, 0.3), 0 6px 15px rgba(5, 178, 181, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.01);
}

/* Testimonial Link Styling */
.testimonial-link {
    color: #d4a574;
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
}

.testimonial-link:hover {
    color: var(--ocean-medium);
    text-decoration: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Disclaimer */
.disclaimer-section {
    background: transparent;
    margin-top: 3rem;
    padding: 3rem 0;
}

.disclaimer-section h3 {
    color: var(--ocean-deep);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 400;
}

.disclaimer-section h4 {
    color: var(--ocean-medium);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
}

.disclaimer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    text-align: center;
}

.disclaimer-section p:last-child {
    margin-bottom: 0;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #05b2b5 0%, #04a0a3 100%);
    color: white;
    text-align: center;
    padding: 2rem 0;
    border-radius: 50px 50px 0 0;
}

.footer-disclaimer {
    font-size: 0.6rem;
    line-height: 1.2;
    margin-top: 1rem;
    opacity: 0.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item h3 {
    color: var(--ocean-deep);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

footer p {
    margin: 0;
    color: white;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    nav {
        padding: 1rem;
    }
    
    .hero-section {
        padding: 6rem 1rem 4rem;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .features-list,
    .services-list,
    .capabilities-list {
        margin-top: 1rem;
    }
    
    .service-option {
        padding: 1.5rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-list {
        margin-top: 0.5rem;
    }
    
    .service-option {
        min-width: auto;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Smooth Transitions */
* {
    transition: all 0.3s ease;
}

/* Sections */
section {
    margin-bottom: 0;
}

/* Dividers removed for cleaner design */

/* Smooth Shadows */
.content-section {
    box-shadow: 0 5px 30px rgba(0,0,0,0.03);
}

.hero-section {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}/
* FAQ Navigation Styles */
.faq-nav-menu {
    text-align: center;
    margin: 2rem 0;
}

.faq-nav-menu h2 {
    margin-bottom: 2rem;
    color: var(--ocean-deep);
    font-size: 1.8rem;
}

.faq-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-nav-link {
    display: block;
    background: linear-gradient(135deg, var(--ocean-light) 0%, var(--ocean-medium) 100%);
    color: white;
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
    text-align: center;
}

.faq-nav-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.4);
    background: linear-gradient(135deg, var(--ocean-medium) 0%, var(--ocean-deep) 100%);
}

/* Responsive FAQ Navigation */
@media (max-width: 768px) {
    .faq-nav-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .faq-nav-link {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    width: 320px;
    height: 10px;
    background: transparent;
    z-index: 999;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--foam-white);
    min-width: 280px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 15px;
    padding: 0.8rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    z-index: 1000;
    list-style: none;
    margin-top: 5px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 0;
    white-space: nowrap;
    margin: 0 0.5rem;
}

.dropdown-link:first-child {
    border-radius: 10px 10px 0 0;
}

.dropdown-link:last-child {
    border-radius: 0 0 10px 10px;
}

.dropdown-link:hover {
    background: var(--sand-light);
    color: var(--ocean-deep);
    transform: translateX(5px);
    border-radius: 8px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #d4a574;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
    }
    
    .logo {
        margin-right: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    header {
        position: relative;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--foam-white) 0%, var(--sand-light) 100%);
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-radius: 0 0 15px 15px;
        z-index: 999;
    }
    
    .nav-menu.active {
        max-height: 800px;
        padding: 1.5rem 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1.2rem;
        text-align: center;
        border-radius: 8px;
        margin-bottom: 0.8rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(212, 165, 116, 0.2);
    }
    
    .nav-link:hover {
        background: rgba(212, 165, 116, 0.1);
        transform: none;
    }
    
    .nav-link.active {
        background: rgba(5, 178, 181, 0.15);
        border-color: rgba(5, 178, 181, 0.3);
    }
    
    /* Mobile dropdown styles - completely hide dropdowns */
    .dropdown-menu {
        display: none !important;
    }
    
    .nav-dropdown::before {
        display: none;
    }
}