/* Creescapes CSS Styles */

/* Color Palette Variables */
:root {
    --coral: #f9b4ab;
    --cream: #fdebd3;
    --navy: #264e70;
    --sage: #679186;
    --mint: #bbd4ce;
    --white: #ffffff;
    --dark: #1a1a1a;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
}

/* Typography */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Martel', serif;
    font-weight: 600;
    line-height: 1.3;
}

.brand-text {
    font-family: 'Biryani', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--white);
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--navy), var(--sage));
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-consent a {
    color: var(--cream);
    text-decoration: underline;
}

/* Navigation */
.navbar {
    background: rgba(38, 78, 112, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background: var(--navy);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: white !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--coral) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--sage) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.geometric-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(249, 180, 171, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
    background: rgba(187, 212, 206, 0.1);
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
    background: rgba(253, 235, 211, 0.15);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--coral);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--coral);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: floatCard 3s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.price-badge .price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.price-badge .duration {
    display: block;
    font-size: 0.9rem;
    color: var(--sage);
    font-weight: 500;
}

/* Buttons */
.btn-primary {
    background: var(--coral);
    border-color: var(--coral);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #f7a094;
    border-color: #f7a094;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 180, 171, 0.4);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.highlight {
    color: var(--coral);
}

/* Experiences Section */
.experiences-section {
    position: relative;
    padding: 100px 0;
    background: var(--cream);
    overflow: hidden;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.wave-pattern {
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23679186' fill-opacity='0.05'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm10 0c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.experiences-section .container {
    position: relative;
    z-index: 2;
}

.experience-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--coral);
}

.experience-icon {
    margin-bottom: 1.5rem;
}



.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}

.footer .navbar-brand{
    margin-bottom: 20px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--coral), var(--sage));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.experience-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.experience-card p {
    color: var(--gray-medium);
    line-height: 1.7;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: white;
}

.service-content {
    padding-right: 2rem;
}

.service-description {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--gray-medium);
    margin: 0;
}

.pricing-box {
    background: linear-gradient(135deg, var(--mint), var(--sage));
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
}

.price-display {
    margin-bottom: 1.5rem;
}

.price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.price-period {
    display: block;
    font-size: 1.1rem;
    color: var(--cream);
    font-weight: 500;
}

.service-gallery {
    position: relative;
}

.serviceSwiper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.serviceSwiper .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.serviceSwiper .swiper-pagination-bullet {
    background: var(--coral);
    opacity: 0.5;
}

.serviceSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Destinations Section */
.destinations-section {
    position: relative;
    padding: 100px 0;
    background: var(--navy);
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(249, 180, 171, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(187, 212, 206, 0.1) 0%, transparent 50%);
}

.destinations-section .container {
    position: relative;
    z-index: 2;
}

.destination-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
}

.destination-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.destination-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 0 1rem;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-medium);
    line-height: 1.8;
    margin: 0;
}

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin: 0;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.testimonialsSwiper .swiper-pagination-bullet {
    background: var(--coral);
    opacity: 0.5;
}

.testimonialsSwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--sage), var(--navy));
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.geometric-pattern {
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpolygon points='50 0 60 40 100 50 60 60 50 100 40 60 0 50 40 40'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: var(--navy);
    color: white;
    padding: 60px 0 30px;
}

.footer-brand h3 {
    font-family: 'Biryani', sans-serif;
    font-size: 1.8rem;
    color: var(--coral);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--cream);
    line-height: 1.7;
}

.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--coral);
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    color: var(--cream);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-contact strong {
    color: white;
}

.footer-divider {
    border-color: var(--sage);
    margin: 2rem 0;
}

.footer-copyright,
.footer-made {
    color: var(--cream);
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .service-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .floating-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .btn-lg {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-buttons .btn-lg {
        display: inline-block;
        width: auto;
        margin: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .experience-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-box {
        padding: 1.5rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
}

/* Form Styles */
.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 0.2rem rgba(249, 180, 171, 0.25);
}

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

.contact-info {
    background: var(--cream);
    padding: 2rem;
    border-radius: 20px;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    color: white;
}

.contact-details h5 {
    margin: 0;
    color: var(--navy);
    font-size: 1.1rem;
}

.contact-details p {
    margin: 0;
    color: var(--gray-medium);
    font-size: 0.9rem;
}

/* Map Styles */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Policy Pages */
.policy-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.policy-content h2 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.policy-content h3 {
    color: var(--sage);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content p {
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-content ul {
    color: var(--gray-medium);
    line-height: 1.8;
}

.policy-content ul li {
    margin-bottom: 0.5rem;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--mint), var(--sage));
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-hero p {
    color: var(--cream);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.about-section {
    padding: 80px 0;
}

.about-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--cream);
    border-radius: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--coral);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--navy);
    font-weight: 600;
    margin-top: 0.5rem;
}

@media(max-width: 580px){
    .hero-section{
        padding-top: 120px;
    }
    html{
        overflow-x: hidden;
    }
}

.policy-hero{
    padding-top: 140px;
}