/* Global Styles */
:root {
    /* Coastal Escape Color Palette */
    --primary-color: #1A3B5D;          /* Deep Ocean Blue */
    --secondary-color: #F5E8D8;        /* Sandy Beige */
    --accent-color: #FF6B6B;           /* Coral Pink */
    --white: #FFFFFF;                  /* Crisp White */
    
    /* Text Colors */
    --text-dark: #1A3B5D;              /* Deep Ocean Blue for headings */
    --text-body: #1A3B5D;              /* Deep Ocean Blue for body text */
    --text-light: #6B7A8C;             /* Muted blue-gray for subtitles */
    --text-muted: #8B9BA8;             /* Light blue-gray for captions */
    
    /* Background Colors */
    --light-bg: #F5E8D8;               /* Sandy Beige background */
    --dark-bg: #1A3B5D;                /* Deep Ocean Blue */
    --card-bg: #FFFFFF;                /* Crisp White for cards */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1A3B5D 0%, #2A4B6D 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26, 59, 93, 0.8) 0%, rgba(42, 75, 109, 0.8) 100%);
    --gradient-sandy: linear-gradient(135deg, #F5E8D8 0%, #FFFFFF 100%);
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(26, 59, 93, 0.1);
    --shadow-medium: 0 4px 20px rgba(26, 59, 93, 0.15);
    --shadow-heavy: 0 10px 40px rgba(26, 59, 93, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-body);
    font-weight: 400;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

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

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white) !important;
    display: flex;
    align-items: center;
}

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

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

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

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

.navbar-nav .btn {
    margin-left: 1rem;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.6);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 100%;
    z-index: 2;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #FFFFFF 0%, #F5E8D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

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

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

/* About Section */
.about-section {
    padding: 5rem 0;
}

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

.about-name {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Portfolio Section */
.portfolio-section {
    background: var(--light-bg);
    position: relative;
}

.portfolio-carousel-container {
    position: relative;
    padding-bottom: 4rem; /* Add space for indicators */
}

#portfolioCarousel {
    margin-bottom: 2rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 10;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    margin: 0 5px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: var(--primary-color);
    opacity: 1;
}

.carousel-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
}

.carousel-image {
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    max-width: 400px;
    width: 100%;
    background: #fff;
    padding: 8px;
    position: relative;
}

.carousel-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 20px;
    padding: 2px;
    z-index: -1;
}

.carousel-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
    display: block;
}

.carousel-image:hover img {
    transform: scale(1.02);
}

.carousel-text {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.carousel-text h3 {
    font-size: 1.1rem;
    color: #262626;
    margin-bottom: 0.3rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.carousel-text p {
    font-size: 0.9rem;
    color: #8e8e8e;
    font-style: normal;
    margin: 0;
    line-height: 1.4;
}

.portfolio-filters {
    margin-bottom: 3rem;
}

.filter-btn {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44, 62, 80, 0.9));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    margin-bottom: 0.5rem;
}

/* Services Section */
.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
    position: relative;
}

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

.service-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.service-card.unavailable {
    opacity: 0.6;
    filter: grayscale(0.3);
}

.service-card.unavailable:hover {
    transform: none;
}

.unavailable-badge {
    background: #6c757d !important;
    color: white !important;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-features li:before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

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

.price {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--primary-color);
}

.price::before {
    content: '$';
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-light);
    margin-right: 0.2rem;
}

.duration {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

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

.testimonial-content p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
}

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

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

.author-info h4 {
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.author-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.stars {
    color: var(--accent-color);
}

/* Contact Section */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

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

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.social-links {
    margin-top: 2rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

/* Booking Section */
.booking-widget {
    max-width: 800px;
    margin: 0 auto;
}

.booking-placeholder {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 15px;
    border: 2px dashed rgba(255,255,255,0.3);
}

.booking-info {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.booking-info ol {
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
}

.footer-heading {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.footer-description {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer .border-top {
    border-color: rgba(245, 232, 216, 0.2) !important;
}

.footer p {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.footer .text-md-end p {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-accent);
    border: none;
    border-radius: var(--radius-lg);
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, #FF8E8E 0%, #FF6B6B 100%);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-btn {
        margin: 0.25rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 1rem auto;
        width: 200px;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .service-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .carousel-text h3 {
        font-size: 1rem;
    }
    
    .carousel-text p {
        font-size: 0.85rem;
    }
    
    .carousel-image {
        max-width: 300px;
    }
    
    .carousel-image img {
        height: 300px;
    }
    
    .carousel-text {
        max-width: 300px;
        padding: 0.8rem;
    }
}

.bg-light {
    background-color: var(--light-bg) !important;
}

.portfolio-section {
    background: var(--light-bg);
}

.testimonials-section {
    background: var(--light-bg);
}

/* Policy Page Styles */
.policy-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    margin-top: 2rem;
}

.policy-heading {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.policy-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(26, 59, 93, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.policy-list li:before {
    content: '•';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.policy-list li:last-child {
    border-bottom: none;
}

.policy-note {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    color: var(--text-dark);
    margin-top: 1rem;
}

.policy-intro .lead {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.7;
}

.alert-info {
    background: linear-gradient(135deg, rgba(26, 59, 93, 0.05) 0%, rgba(245, 232, 216, 0.3) 100%);
    border: 1px solid rgba(26, 59, 93, 0.2);
    color: var(--text-dark);
}

.alert-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.alert-info a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.alert-info a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for policy page */
@media (max-width: 768px) {
    .policy-card {
        padding: 2rem;
        margin-top: 1rem;
    }
    
    .policy-heading {
        font-size: 1.2rem;
    }
    
    .policy-list li {
        padding-left: 1rem;
    }
}

@media (max-width: 576px) {
    .policy-card {
        padding: 1.5rem;
    }
    
    .policy-heading {
        font-size: 1.1rem;
    }
}
