/* 
   Yug Events and Holidays - Main Stylesheet
   Colors: Green (#2e8b57), Orange (#ff8c00), Blue (#1e90ff)
*/

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2d2b2b;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #2e8b57; /* Green */
    transition: all 0.3s ease;
}

a:hover {
    color: #ff8c00; /* Orange */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #2e8b57; /* Green */
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff8c00; /* Orange */
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.primary-btn {
    background-color: #2e8b57; /* Green */
    color: white;
}

.primary-btn:hover {
    background-color: #236b43;
    color: white;
}

.secondary-btn {
    background-color: #ff8c00; /* Orange */
    color: white;
}

.secondary-btn:hover {
    background-color: #e67e00;
    color: white;
}

.outline-btn {
    background-color: transparent;
    border: 2px solid #2e8b57; /* Green */
    color: #2e8b57;
}

.outline-btn:hover {
    background-color: #2e8b57;
    color: white;
}

.small-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
}

.whatsapp-btn {
    background-color: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background-color: #1da851;
    color: white;
}

.call-btn {
    background-color: #1e90ff; /* Blue */
    color: white;
}

.call-btn:hover {
    background-color: #1a7ad9;
    color: white;
}

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

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo h1 {
    font-size: 1.8rem;
    color: #2e8b57; /* Green */
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #333;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2e8b57; /* Green */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2e8b57; /* Green */
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: #333;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Page Banner */
.page-banner {
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.page-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-banner p {
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.packages-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/1rp.jpg');
}

.about-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/about.jpg')
}

.testimonials-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/testimonial.jpg');
}

.contact-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/bannercontact.jpg');
}

/* Featured Destinations */
.featured-destinations {
    padding: 80px 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.destination-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-info {
    padding: 20px;
}

.destination-info h3 {
    color: #2e8b57; /* Green */
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.destination-info p {
    margin-bottom: 15px;
    color: #666;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background-color: #f0f8ff; /* Light blue */
}

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

.feature-card {
    background-color: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: #ff8c00; /* Orange */
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #2e8b57; /* Green */
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #666;
}

/* Testimonial Preview */
.testimonial-preview {
    padding: 80px 0;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.testimonial-text {
    position: relative;
    margin-bottom: 30px;
}

.testimonial-text i.fa-quote-left {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 1.5rem;
    color: #ff8c00; /* Orange */
    opacity: 0.5;
}

.testimonial-text i.fa-quote-right {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 1.5rem;
    color: #ff8c00; /* Orange */
    opacity: 0.5;
}

.testimonial-text p {
    font-style: italic;
    color: #555;
    line-height: 1.8;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author h4 {
    color: #2e8b57; /* Green */
    margin-bottom: 5px;
}

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

/* Quick Enquiry Form */
.quick-enquiry {
    padding: 80px 0;
    background-color: #fff8e1; /* Light orange */
}

.quick-enquiry .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.enquiry-content h2 {
    color: #2e8b57; /* Green */
    margin-bottom: 20px;
    font-size: 2rem;
}

.enquiry-content p {
    color: #666;
    margin-bottom: 20px;
}

.enquiry-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2e8b57; /* Green */
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: #ff8c00; /* Orange */
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.footer-logo p {
    color: #ccc;
}

.footer-links h4,
.footer-destinations h4,
.footer-contact h4,
.footer-social h4 {
    color: #ff8c00; /* Orange */
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-destinations ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-destinations li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-destinations a,
.footer-contact a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-destinations a:hover,
.footer-contact a:hover {
    color: #ff8c00; /* Orange */
}

.footer-contact i {
    margin-right: 10px;
    color: #ff8c00; /* Orange */
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #ff8c00; /* Orange */
    color: white;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #aaa;
    font-size: 0.9rem;
}

/* Packages Page Styles */
.packages-intro {
    padding: 60px 0;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    color: #2e8b57; /* Green */
    margin-bottom: 20px;
    font-size: 2rem;
}

.intro-content p {
    color: #666;
    margin-bottom: 20px;
}

.packages-grid {
    padding: 40px 0 80px;
}

.package-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.package-image {
    position: relative;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-duration {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(46, 139, 87, 0.9); /* Green */
    color: white;
    padding: 8px 15px;
    font-size: 0.9rem;
    border-top-right-radius: 10px;
}

.package-details {
    padding: 25px;
}

.package-details h3 {
    color: #2e8b57; /* Green */
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.package-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.package-highlights span {
    background-color: #f0f8ff; /* Light blue */
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #1e90ff; /* Blue */
}

.package-highlights i {
    margin-right: 5px;
}

.package-details p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.package-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff8c00; /* Orange */
}

.package-price .per-person {
    font-size: 0.9rem;
    color: #777;
}

.package-rating i {
    color: #ffc107; /* Yellow */
}

.package-rating span {
    color: #777;
    margin-left: 5px;
    font-size: 0.9rem;
}

.package-cta {
    display: flex;
    gap: 15px;
}

.package-inclusions {
    padding: 80px 0;
    background-color: #f0f8ff; /* Light blue */
}

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

.inclusion-item {
    background-color: white;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.inclusion-item i {
    font-size: 2rem;
    color: #ff8c00; /* Orange */
    margin-bottom: 15px;
}

.inclusion-item h3 {
    color: #2e8b57; /* Green */
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.inclusion-item p {
    color: #666;
}

.custom-package-cta {
    padding: 60px 0;
    background-color: #fff8e1; /* Light orange */
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #2e8b57; /* Green */
    margin-bottom: 15px;
    font-size: 2rem;
}

.cta-content p {
    color: #666;
    margin-bottom: 30px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1100;
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 50px auto;
    padding: 30px;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: #777;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ff8c00; /* Orange */
}

/* About Page Styles */
.our-story {
    padding: 80px 0;
}

.our-story .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.mission-vision {
    padding: 60px 0;
    background-color: #f0f8ff; /* Light blue */
}

.mission-vision .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-box,
.vision-box {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission-box .icon,
.vision-box .icon {
    width: 80px;
    height: 80px;
    background-color: #f0f8ff; /* Light blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-box .icon i {
    font-size: 2rem;
    color: #2e8b57; /* Green */
}

.vision-box .icon i {
    font-size: 2rem;
    color: #ff8c00; /* Orange */
}

.mission-box h3,
.vision-box h3 {
    color: #2e8b57; /* Green */
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.mission-box p,
.vision-box p {
    color: #666;
    line-height: 1.7;
}

.founders {
    padding: 80px 0;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.founder-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info {
    padding: 25px;
}

.founder-info h3 {
    color: #2e8b57; /* Green */
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.founder-title {
    color: #ff8c00; /* Orange */
    font-weight: 600;
    margin-bottom: 15px;
}

.founder-bio {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.founder-social {
    display: flex;
    gap: 15px;
}

.founder-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #f0f8ff; /* Light blue */
    border-radius: 50%;
    color: #1e90ff; /* Blue */
    transition: all 0.3s ease;
}

.founder-social a:hover {
    background-color: #1e90ff; /* Blue */
    color: white;
}

.our-values {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.value-card {
    background-color: white;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background-color: #f0f8ff; /* Light blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.8rem;
    color: #2e8b57; /* Green */
}

.value-card h3 {
    color: #2e8b57; /* Green */
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-card p {
    color: #666;
}

.why-choose-about {
    padding: 80px 0;
}

.why-choose-about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.choose-list {
    list-style: none;
}

.choose-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.choose-content.text-center .choose-list {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
}

.choose-list i {
    color: #2e8b57; /* Green */
    margin-right: 10px;
    font-size: 1.2rem;
    margin-top: 3px;
}

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

.our-team {
    padding: 80px 0;
    background-color: #f0f8ff; /* Light blue */
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h3 {
    color: #2e8b57; /* Green */
    margin: 15px 0 5px;
    font-size: 1.2rem;
    padding: 0 15px;
}

.team-member p {
    color: #666;
    margin-bottom: 15px;
    padding: 0 15px;
}

/* Testimonials Page Styles */
.testimonials-intro {
    padding: 60px 0;
    text-align: center;
}

.testimonials-grid {
    padding: 40px 0 80px;
}

.testimonials-grid .testimonial-card {
    margin-bottom: 40px;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.client-info h3 {
    color: #2e8b57; /* Green */
    margin-bottom: 5px;
}

.client-info p {
    color: #777;
    font-size: 0.9rem;
}

.rating i {
    color: #ffc107; /* Yellow */
    font-size: 1.1rem;
}

.testimonial-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.video-testimonials {
    padding: 60px 0;
    background-color: #f0f8ff; /* Light blue */
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.video-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.video-container {
    position: relative;
}

.video-thumbnail {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(46, 139, 87, 0.8); /* Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: rgba(255, 140, 0, 0.8); /* Orange */
}

.play-button i {
    color: white;
    font-size: 1.5rem;
}

.video-card h3 {
    padding: 20px;
    text-align: center;
    color: #2e8b57; /* Green */
}

.share-experience {
    padding: 60px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/share-experience-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.share-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.share-content p {
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-form {
    padding: 80px 0;
}

.testimonial-form form {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.rating-select {
    display: flex;
    gap: 10px;
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
}

.rating-select i.fas {
    color: #ffc107; /* Yellow */
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.consent-checkbox input {
    width: auto;
    margin-top: 5px;
}

/* Contact Page Styles */
.contact-info {
    padding: 80px 0;
}

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

.info-card {
    background-color: white;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.info-icon {
    width: 70px;
    height: 70px;
    background-color: #f0f8ff; /* Light blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon i {
    font-size: 1.8rem;
    color: #2e8b57; /* Green */
}

.info-card h3 {
    color: #2e8b57; /* Green */
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-card p {
    color: #666;
    margin-bottom: 5px;
}

.quick-contact {
    padding: 60px 0;
    background-color: #f0f8ff; /* Light blue */
    text-align: center;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
}

.whatsapp-btn {
    background-color: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background-color: #1da851;
    color: white;
}

.call-btn {
    background-color: #1e90ff; /* Blue */
    color: white;
}

.call-btn:hover {
    background-color: #1a7ad9;
    color: white;
}

.email-btn {
    background-color: #ff8c00; /* Orange */
    color: white;
}

.email-btn:hover {
    background-color: #e67e00;
    color: white;
}

.contact-btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.contact-form-map {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-container,
.map-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2,
.map-container h2 {
    color: #2e8b57; /* Green */
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.google-map {
    height: 100%;
    min-height: 400px;
    border-radius: 5px;
    overflow: hidden;
}

.booking-enquiry {
    padding: 80px 0;
    background-color: #fff8e1; /* Light orange */
}

.enquiry-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.booking-enquiry form {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    color: #2e8b57; /* Green */
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-toggle {
    color: #ff8c00; /* Orange */
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px 20px;
    display: none;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h2 {
        font-size: 2.5rem;
    }

    .package-card,
    .founder-card {
        grid-template-columns: 1fr;
    }

    .package-image img,
    .founder-image img {
        height: 300px;
    }

    .our-story .container,
    .why-choose-about .container,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .story-image,
    .choose-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .quick-enquiry .container,
    .mission-vision .container,
    .founders-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .testimonial-images {
        grid-template-columns: 1fr;
    }
}