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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f6f3;
}

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

/* Header */
.header {
    background-color: #2c5f7a;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #f8f6f3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #d4a574;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5f7a 0%, #4a8db8 100%);
    color: white;
    padding: 120px 0 20px;
    text-align: center;
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-couple-photo {
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.hero-logo {
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.hero-images {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}

.hero-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

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

/* Alternatives Section */
.alternatives {
    padding: 80px 0;
    background-color: #f8f6f3;
}

.alternatives h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5f7a;
}

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

.option {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.option h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c5f7a;
    margin-bottom: 1rem;
}

.option p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #d4a574;
    color: white;
    text-align: center;
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5f7a;
}

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

.service-card {
    background: #f8f6f3;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c5f7a;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Feature Image */
.feature-image {
    padding: 0;
}

.full-width-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Tools Section */
.tools {
    padding: 80px 0;
    background-color: #2c5f7a;
    color: white;
}

.tools h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: white;
    color: #333;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.tool-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c5f7a;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4a574;
    margin-bottom: 1.5rem;
}

.download-btn {
    background-color: #d4a574;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #b8935f;
}

/* Podcast Section */
.podcast {
    padding: 80px 0;
    background-color: #f8f6f3;
    text-align: center;
}

.podcast h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c5f7a;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.podcast p {
    font-size: 1.2rem;
    color: #333;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.1);
}

.listen-btn {
    background-color: #2c5f7a;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.listen-btn:hover {
    background-color: #1e4a5f;
}

/* App Promo Section */
.app-promo {
    padding: 80px 0;
    background-color: #d4a574;
    color: white;
    text-align: center;
}

.app-promo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.app-promo p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-btn {
    background-color: white;
    color: #d4a574;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.app-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c5f7a;
    margin-bottom: 2rem;
}

.contact p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.contact-btn {
    background-color: #2c5f7a;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #1e4a5f;
}

/* Social Media Icons */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.youtube-icon, .tiktok-icon, .instagram-icon {
    width: 20px;
    height: 20px;
    color: #f8f6f3;
}

.youtube-icon:hover {
    color: #ff0000;
}

.tiktok-icon:hover {
    color: #ff0050;
}

.instagram-icon:hover {
    color: #e4405f;
}

/* Footer Styling */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-social {
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-images {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image {
        width: 280px;
        height: 180px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-btn {
        width: 200px;
    }
}


/* Our Story Section */
.our-story {
    padding: 80px 0;
    background-color: white;
}

.our-story h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5f7a;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Tool Descriptions */
.tool-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
    min-height: 120px;
}

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

.testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5f7a;
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author h4 {
    font-family: 'Playfair Display', serif;
    color: #2c5f7a;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: #888;
    font-size: 0.9rem;
}

/* Consultation Section */
.consultation {
    padding: 80px 0;
    background-color: #2c5f7a;
    color: white;
}

.consultation h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.consultation > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.consultation-info {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
}

.consultation-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.consultation-info ul {
    list-style: none;
    padding: 0;
}

.consultation-info li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.consultation-info li:before {
    content: "✓ ";
    color: #d4a574;
    font-weight: bold;
}

.consultation-booking {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.consultation-booking h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4a574;
    margin-bottom: 1rem;
}

.booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.booking-btn, .contact-form-btn {
    background-color: #d4a574;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.booking-btn:hover, .contact-form-btn:hover {
    background-color: #b8935f;
}

/* Contact Section Updates */
.contact-info {
    text-align: center;
    margin-top: 2rem;
}

.contact-info .email {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5f7a;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .consultation-details {
        grid-template-columns: 1fr;
    }
    
    .booking-buttons {
        align-items: center;
    }
    
    .booking-btn, .contact-form-btn {
        width: 250px;
    }
    
    .tool-description {
        min-height: auto;
    }
}


/* Phuket Image in Our Story */
.story-image {
    text-align: center;
    margin-bottom: 2rem;
}

.phuket-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    max-height: 400px;
    object-fit: cover;
}

/* App Section with Phone Image */
.app-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.app-text {
    flex: 1;
    min-width: 300px;
}

.app-image {
    flex: 0 0 auto;
    text-align: center;
}

.phone-image {
    max-width: 200px;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .app-content {
        flex-direction: column;
        text-align: center;
    }
    
    .phuket-image {
        max-height: 300px;
    }
    
    .phone-image {
        max-width: 150px;
    }
}


/* Podcast Section Updates */
.podcast-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.podcast-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.podcast-info {
    flex: 1;
}

.podcast-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Contact Form in Consultation Section */
.contact-form {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    color: #f4e4bc;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(244, 228, 188, 0.3);
    border-radius: 5px;
    background: rgba(255,255,255,0.9);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90a4;
    box-shadow: 0 0 5px rgba(74, 144, 164, 0.3);
}

.submit-btn {
    background: #4a90a4;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #3a7a8a;
}

/* Responsive Design for Podcast */
@media (max-width: 768px) {
    .podcast-content {
        flex-direction: column;
        text-align: center;
    }
    
    .podcast-image {
        width: 180px;
        height: 180px;
    }
}



/* Thailand Feature Image - Smaller Size */
.thailand-feature-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Consultation Section - Compact */
.consultation {
    padding: 60px 0;
    background-color: white;
}

.consultation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.consultation-option {
    background: #f8f6f3;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.consultation-option:hover {
    border-color: #2c5f7a;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 95, 122, 0.15);
}

.consultation-option h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c5f7a;
    margin-bottom: 1rem;
}

.consultation-option .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4a574;
    margin: 1rem 0;
}

.consultation-option ul {
    text-align: left;
    margin: 1.5rem 0;
    padding-left: 1rem;
}

.consultation-option li {
    margin: 0.5rem 0;
    color: #666;
}

.consultation-btn {
    background-color: #2c5f7a;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.consultation-btn:hover {
    background-color: #1e4a5f;
    transform: translateY(-2px);
}

.consultation-note {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 2rem;
    font-size: 0.9rem;
}


/* Consultation Header Styling */
.consultation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.consultation-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c5f7a;
    margin-bottom: 1.5rem;
}

.consultation-intro {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

