/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    font-weight: 400;
    scroll-behavior: smooth;
}

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

/* Header and Navigation */
.navbar {
    background: linear-gradient(135deg, #667eea 0%, #0a1775 100%);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

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

.schedule-btn {
    background: linear-gradient(135deg, #667eea 0%, #0a1775 100%);
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    border: 2px solid rgba(255,255,255,0.2);
    letter-spacing: 0.5px;
}

.schedule-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #0a1775 0%, #667eea 100%);
}

/* Hero Section */
.hero {
    margin-top: 85px;
    background: linear-gradient(135deg, #667eea 0%, #0a1775 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

.hero-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

.floating-heart {
    position: absolute;
    font-size: 2.5rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.floating-heart:nth-child(1) {
    animation-delay: 0s;
}

.floating-heart:nth-child(2) {
    animation-delay: 1.5s;
}

.floating-heart:nth-child(3) {
    animation-delay: 3s;
}

.floating-heart:nth-child(4) {
    animation-delay: 4.5s;
}

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

.care-badge {
    position: absolute;
    top: 20px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: pulse 3s ease-in-out infinite;
    pointer-events: auto;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(102, 126, 234, 0.4);
    }
}

.badge-content {
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #0a1775 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 600;
    margin-top: 8px;
}

.hero-content {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-image {
    flex: 1;
    padding-right: 50px;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    border: 5px solid rgba(255,255,255,0.2);
}

.hero-img:hover {
    transform: translateY(-10px);
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 50px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInLeft 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: fadeInLeft 1s ease-out 0.3s;
    animation-fill-mode: backwards;
}

.hero-cta {
    display: inline-block;
    background: #fff;
    color: #667eea;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    animation: fadeInLeft 1s ease-out 0.6s;
    animation-fill-mode: backwards;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
    background: rgba(255,255,255,0.95);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Image Slider Section */
.image-slider-section {
    padding: 80px 0;
    background-color: #e7eff5;
    text-align: center;
}

.slider-container {
    position: relative;
    width: 80%;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    background-color: #ddd;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.slider-prev:hover, .slider-next:hover {
    background-color: rgba(0,0,0,0.8);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

/* Main Content */
.main-content {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    line-height: 1.2;
}

.subtitle {
    font-size: 1.5rem;
    color: #667eea;
    margin-bottom: 50px;
    font-weight: 500;
    font-style: italic;
}

.intro-text, .description, .activities-text {
    font-size: 1.125rem;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #4a5568;
    line-height: 1.8;
}

/* Section Styles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #0a1775 100%);
    border-radius: 2px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-list {
    list-style: none;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-list:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.service-list li {
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 40px;
    font-size: 1rem;
    color: #4a5568;
    transition: color 0.3s ease;
}

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

.service-list li::before {
    content: "✓";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
    top: 18px;
    background: linear-gradient(135deg, #667eea 0%, #0a1775 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-list li:hover {
    color: #2c3e50;
}

/* Facilities Section */
.facilities {
    padding: 80px 0;
    background-color: #fff;
}

.facility-img {
    width: 100%;
    max-width: 900px;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    background-color: #ddd;
}

/* Food Service and Accommodations */
.food-service, .accommodations {
    padding: 80px 0;
    background-color: #f0f2f5;
}

.food-service:nth-of-type(even) {
    background-color: #fff;
}

/* Activities Section */
.activities {
    padding: 80px 0;
    background-color: #fff;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.activity-item {
    text-align: center;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.activity-item:hover {
    transform: translateY(-10px);
}

.activity-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    background-color: #ddd;
}

.activity-item p {
    font-size: 1.1rem;
    color: #555;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #e7eff5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.testimonial {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.testimonial blockquote {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
}

.testimonial cite {
    font-weight: bold;
    color: #165085;
    font-size: 1.1rem;
}

/* Team Section */
.team {
    padding: 80px 0;
    background-color: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
    border: 5px solid #165085;
    background-color: #ddd;
}

.team-member h3 {
    color: #165085;
    margin-bottom: 12px;
    font-size: 1.8rem;
}

.role {
    font-weight: bold;
    margin-bottom: 12px;
    color: #666;
    font-size: 1.1rem;
}

.bio {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #e7eff5;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 50px;
    align-items: flex-start;
}

.contact-info h3 {
    color: #165085;
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact-info p {
    font-size: 1.2rem;
    color: #555;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #165085;
    outline: none;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.submit-btn {
    background-color: #165085;
    color: #fff;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.submit-btn:hover {
    background-color: #0d3a5f;
    transform: translateY(-2px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 3px solid rgba(255,255,255,0.2);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    /* Hero Section */
    .hero {
        min-height: 500px;
        padding: 40px 0;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .hero-text {
        padding-left: 0;
        align-items: center;
    }
    
    .hero-img {
        height: 350px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    /* Slider */
    .slider-container {
        width: 95%;
    }
    
    .slide img {
        height: 300px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Activities */
    .activities-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    /* Team */
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Navigation */
    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 10px 20px;
    }
    
    /* Sections */
    .main-content, .philosophy, .services, .facilities, 
    .food-service, .accommodations, .activities, 
    .testimonials, .team, .contact {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .hero-cta {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    .hero-img {
        height: 280px;
        border-radius: 15px;
    }
    
    /* Typography */
    .main-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 35px;
    }
    
    .intro-text, .description, .activities-text, .philosophy-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Slider */
    .slider-container {
        width: 100%;
        margin: 30px auto;
    }
    
    .slide img {
        height: 250px;
    }
    
    .slider-prev, .slider-next {
        padding: 10px;
        font-size: 20px;
        width: 40px;
        height: 40px;
    }
    
    /* Service Lists */
    .service-list {
        padding: 30px 20px;
    }
    
    .service-list li {
        font-size: 0.95rem;
        padding: 14px 0;
        padding-left: 35px;
    }
    
    /* Facility Image */
    .facility-img {
        height: 300px;
    }
    
    /* Activity Items */
    .activity-item {
        padding: 20px;
    }
    
    .activity-img {
        height: 180px;
    }
    
    .activity-item p {
        font-size: 1rem;
    }
    
    /* Testimonials */
    .testimonial {
        padding: 30px 20px;
    }
    
    .testimonial blockquote {
        font-size: 1.05rem;
        margin-bottom: 20px;
    }
    
    .testimonial cite {
        font-size: 1rem;
    }
    
    /* Team */
    .team-member {
        padding: 30px 20px;
    }
    
    .team-img {
        width: 140px;
        height: 140px;
    }
    
    .team-member h3 {
        font-size: 1.5rem;
    }
    
    .role {
        font-size: 1rem;
    }
    
    .bio {
        font-size: 0.95rem;
    }
    
    /* Contact Form */
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 12px;
    }
    
    .submit-btn {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    /* WhatsApp Button */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    /* Sections */
    .main-content, .philosophy, .services, .facilities, 
    .food-service, .accommodations, .activities, 
    .testimonials, .team, .contact {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    /* Hero Section */
    .hero {
        min-height: 400px;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-cta {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    
    .hero-img {
        height: 220px;
        border-radius: 12px;
    }
    
    /* Typography */
    .main-title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .intro-text, .description, .activities-text, .philosophy-text {
        font-size: 0.95rem;
    }
    
    /* Navigation */
    .navbar {
        padding: 10px 0;
    }
    
    .schedule-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    /* Slider */
    .slide img {
        height: 200px;
        border-radius: 10px;
    }
    
    .slider-prev, .slider-next {
        padding: 8px;
        font-size: 18px;
        width: 35px;
        height: 35px;
    }
    
    /* Service Lists */
    .service-list {
        padding: 25px 15px;
    }
    
    .service-list li {
        font-size: 0.9rem;
        padding: 12px 0;
        padding-left: 30px;
    }
    
    .service-list li::before {
        font-size: 1rem;
        top: 14px;
    }
    
    /* Facility Image */
    .facility-img {
        height: 220px;
        border-radius: 12px;
    }
    
    /* Activity Items */
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .activity-item {
        padding: 20px 15px;
    }
    
    .activity-img {
        height: 160px;
    }
    
    .activity-item p {
        font-size: 0.95rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial {
        padding: 25px 15px;
    }
    
    .testimonial blockquote {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    
    .testimonial cite {
        font-size: 0.95rem;
    }
    
    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-member {
        padding: 25px 15px;
    }
    
    .team-img {
        width: 120px;
        height: 120px;
        border-width: 3px;
    }
    
    .team-member h3 {
        font-size: 1.4rem;
    }
    
    .role {
        font-size: 0.95rem;
    }
    
    .bio {
        font-size: 0.9rem;
    }
    
    /* Contact Form */
    .contact-info h3 {
        font-size: 1.3rem;
    }
    
    .contact-info p {
        font-size: 0.95rem;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 10px;
    }
    
    .submit-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    
    /* Map Container */
    .map-container iframe {
        height: 220px;
    }
    
    /* WhatsApp Button */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 22px;
    }
    
    /* Sections */
    .main-content, .philosophy, .services, .facilities, 
    .food-service, .accommodations, .activities, 
    .testimonials, .team, .contact {
        padding: 40px 0;
    }
    
    .image-slider-section {
        padding: 40px 0;
    }
}




/* Philosophy Section */
.philosophy {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.philosophy-text {
    font-size: 1.2rem;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
    line-height: 1.8;
}

/* Map Container */
.map-container {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    border-radius: 15px;
}

/* Responsive adjustments for map */
@media (max-width: 768px) {
    .map-container iframe {
        height: 250px;
    }
}


/* JavaScript Interactive Elements */

/* Sparkle effect */
.sparkle {
    position: fixed;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #fff 0%, #667eea 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkleAnimation 1s ease-out forwards;
    z-index: 9999;
}

@keyframes sparkleAnimation {
    0% {
        opacity: 1;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.5) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(360deg);
    }
}

/* Rotating value text on badge */
.rotating-value {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    white-space: nowrap;
    transition: opacity 0.3s ease;
    opacity: 1;
}

/* Enhanced floating animation with parallax */
.floating-heart {
    transition: transform 0.3s ease-out;
}

/* Smooth transitions for hero elements */
.hero-img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta {
    transition: all 0.3s ease;
}

/* Additional decorative elements */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    pointer-events: none;
    z-index: 4;
}

/* Responsive adjustments for decorative elements */
@media (max-width: 992px) {
    .care-badge {
        top: 10px;
        right: 10px;
        width: 100px;
        height: 100px;
    }
    
    .badge-number {
        font-size: 1.8rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    .floating-heart {
        font-size: 2rem;
    }
    
    .rotating-value {
        font-size: 0.7rem;
        bottom: -25px;
    }
}

@media (max-width: 768px) {
    .care-badge {
        width: 80px;
        height: 80px;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.65rem;
    }
    
    .floating-heart {
        font-size: 1.5rem;
    }
    
    .rotating-value {
        display: none;
    }
}
