:root {
    /* Color Palette */
    --primary-color-1: #2C3E50; /* Deep blue for luxury */
    --primary-color-2: #E67E22; /* Warm orange for excitement */
    --primary-color-3: #27AE60; /* Emerald green for nature */
    --primary-color-4: #8E44AD; /* Purple for elegance */
    --primary-color-5: #F1C40F; /* Gold for luxury */
    
    /* Shades */
    --primary-color-1-light: #34495E;
    --primary-color-1-dark: #1A2530;
    --primary-color-2-light: #F39C12;
    --primary-color-2-dark: #D35400;
    --primary-color-3-light: #2ECC71;
    --primary-color-3-dark: #1E8449;
    --primary-color-4-light: #9B59B6;
    --primary-color-4-dark: #6C3483;
    --primary-color-5-light: #F4D03F;
    --primary-color-5-dark: #D4AC0D;
    
    /* Neutral colors */
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #CCCCCC;
    --dark-gray: #333333;
    --black: #000000;
}

/* Base Styles */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color-1);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color-3);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color-3-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color-2);
    border-color: var(--primary-color-2);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-color-2-dark);
    border-color: var(--primary-color-2-dark);
}

.btn-secondary {
    background-color: var(--primary-color-1);
    border-color: var(--primary-color-1);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--primary-color-1-dark);
    border-color: var(--primary-color-1-dark);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color-3);
    color: var(--primary-color-3);
}

.btn-outline:hover {
    background-color: var(--primary-color-3);
    color: var(--white);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color-2);
    font-size: 1.2rem;
    font-weight: 500;
}

.section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color-1);
}

.nav-link {
    font-weight: 600;
    color: var(--primary-color-1);
    margin: 0 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color-2);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color-2);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* About Section */
.about {
    background-color: var(--light-gray);
}

.about-feature {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
    font-size: 3rem;
    color: var(--primary-color-3);
    margin-bottom: 1.5rem;
}

.about-feature-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    background-color: var(--white);
}

.service-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-item-content {
    padding: 2rem;
}

.service-item-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-item-price {
    font-size: 1.2rem;
    color: var(--primary-color-2);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-item-features {
    margin-bottom: 1.5rem;
}

.service-item-features ul {
    padding-left: 1.5rem;
}

.service-item-features li {
    margin-bottom: 0.5rem;
}

/* Features Section */
.features {
    background-color: var(--light-gray);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color-4);
    margin-right: 1.5rem;
}

.feature-item-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Price Plan Section */
.price-plan {
    background-color: var(--white);
}

.price-plan-item {
    text-align: center;
    background-color: var(--white);
    border-radius: 8px;
    padding: 3rem 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-plan-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-plan-item-name {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price-plan-item-price {
    font-size: 3rem;
    color: var(--primary-color-2);
    font-weight: 700;
    margin-bottom: 2rem;
}

.price-plan-item-features {
    margin-bottom: 2rem;
}

.price-plan-item-features ul {
    list-style: none;
    padding: 0;
}

.price-plan-item-features li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--medium-gray);
}

.price-plan-item-features li:last-child {
    border-bottom: none;
}

/* Team Section */
.team {
    background-color: var(--light-gray);
}

.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background-size: cover;
    background-position: center;
}

.team-member-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-member-role {
    color: var(--primary-color-2);
    font-style: italic;
    margin-bottom: 1rem;
}

/* Reviews Section */
.reviews {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../VOY_images/pattern.webp');
    opacity: 0.05;
    z-index: 0;
}

.review-item {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 1rem;
    position: relative;
    z-index: 1;
}

.review-item-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.review-item-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-color-5);
    font-family: 'Georgia', serif;
}

.review-item-author {
    font-weight: 700;
    color: var(--primary-color-1);
}

/* Core Info Section */
.core-info {
    background-color: var(--light-gray);
}

.core-info-item {
    text-align: center;
    margin-bottom: 2rem;
}

.core-info-item i {
    font-size: 3rem;
    color: var(--primary-color-1);
    margin-bottom: 1.5rem;
}

.core-info-item-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    background-color: var(--white);
}

.contact-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.form-control:focus {
    border-color: var(--primary-color-3);
    box-shadow: none;
}

.form-check-input:checked {
    background-color: var(--primary-color-3);
    border-color: var(--primary-color-3);
}

/* Blog Section */
.blog {
    background-color: var(--light-gray);
}

.blog-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-item-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.blog-item-content {
    padding: 2rem;
}

.blog-item-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-item-excerpt {
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq {
    background-color: var(--white);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
}

.accordion-button {
    background-color: var(--light-gray);
    color: var(--primary-color-1);
    font-weight: 600;
    padding: 1.5rem;
    border-radius: 8px !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color-1);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    background-color: var(--white);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Gallery Section */
.gallery {
    background-color: var(--light-gray);
}

.gallery-item {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: var(--primary-color-1);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-desc {
    margin-bottom: 2rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-contact-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--primary-color-5);
}

.footer-policies {
    margin-top: 2rem;
}

.footer-policies-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-policy-link {
    display: block;
    color: var(--medium-gray);
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-policy-link:hover {
    color: var(--primary-color-5);
}

.site-copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* Decorative Elements */
.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.shape-divider .shape-fill {
    fill: #FFFFFF;
}

.blob {
    position: absolute;
    z-index: 0;
    opacity: 0.2;
}

.blob-1 {
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background-color: var(--primary-color-3);
    border-radius: 43% 57% 70% 30% / 30% 43% 57% 70%;
    animation: blob-morph 15s ease-in-out infinite;
}

.blob-2 {
    bottom: -150px;
    left: -150px;
    width: 350px;
    height: 350px;
    background-color: var(--primary-color-2);
    border-radius: 57% 43% 30% 70% / 43% 70% 30% 57%;
    animation: blob-morph 20s ease-in-out infinite reverse;
}

@keyframes blob-morph {
    0% {
        border-radius: 43% 57% 70% 30% / 30% 43% 57% 70%;
    }
    25% {
        border-radius: 57% 43% 30% 70% / 43% 70% 30% 57%;
    }
    50% {
        border-radius: 30% 70% 57% 43% / 70% 30% 43% 57%;
    }
    75% {
        border-radius: 70% 30% 43% 57% / 57% 43% 70% 30%;
    }
    100% {
        border-radius: 43% 57% 70% 30% / 30% 43% 57% 70%;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Space Page */
#space {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-gray);
}

/* Additional Pages */
.page-header {
    height: 300px;
    background-color: var(--primary-color-1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
}

.breadcrumb-item {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--primary-color-5);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white);
}

/* Additional page sections */
.add-page-section {
    padding: 5rem 0;
}

.add-page-section:nth-child(odd) {
    background-color: var(--light-gray);
}

.add-page-section:nth-child(even) {
    background-color: var(--white);
} 