* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: #ff9f00;
    text-align: center;
}

/* Navigation */
nav {
    background: beige;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.5rem;
    background: rgba(25, 25, 25, 0.95);
}

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

.logo {
    background-color: beige;
    max-width: 280px;
}

.logo img {
    max-width: 280px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff9f00;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ff9f00;
    transition: 0.3s;
}

/* media quries */
@media (max-width: 768px) {
    .navbar {
        background: #ff9f00;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }
}

/* Hero Section with Background Slideshow */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: contain;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: beige;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.6);
}

.hero-title2 {
    font-size: 2.5rem;
    font-weight: 650;
    color: beige;
    padding: 0.5rem;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.6)
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: beige;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.6)
}

/* media quries */
@media (max-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-title2 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Article Content Styles */
.article-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: beige;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-header {
    text-align: center;
    margin-bottom: 2rem;
}

.article-category {
    background: #ff9f00;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
}

.article-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 2rem 0;
    transition: transform 0.3s ease;
}

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

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: beige;
}

.section {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.section-content {
    line-height: 1.6;
    color: #666;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Us Section */
.about-us {
    padding: 5rem 2rem;
    background: #ff9f00;
}

.about-us .section-title {
    color: black;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    height: 500px;
    background-color: var(--neutral-beige);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.about-text {
    padding: 2rem;
}

.about-text h3 {
    color: var(--neutral-beige);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.experience-numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.number-box {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.number-box h4 {
    font-size: 2.5rem;
    color: #ff9f00;
    margin-bottom: 0.5rem;
}

.number-box p {
    color: black;
}

/* Contact Form */
.container {
    background-color: beige;
    max-width: 100%;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background-color: #ff9f00;
}

.contact-card {
    background: beige;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-card .section-title {
    color: white;
    text-align: center;
}

/* Add new styles for the booking form */
#booking {
    background-color: #ff9f00;
    padding: 2rem;
}

.booking-form {
    background: white;
    color: #000;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #ff9f00;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.submit-btn {
    background: #ff9f00;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .submit-btn {
        display: flex;
        flex-direction: column;
    }
}

/* Additional Styles */
.contact-wrapper .contact-info {
    padding: 2rem;
    background: beige;
    color: black;
    height: max-content;
    display: flex;
    margin: 2rem;
    border-radius: 10px;
}

.contact-wrapper .contact-info h3 {
    margin-bottom: 1.5rem;
    color: black;
}

.contact-wrapper .contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: black;
}

.contact-wrapper .contact-info a {
    text-decoration: none;
    color: black;
}

.contact-wrapper .social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.contact-wrapper .social-links h3 {
    margin-bottom: 1.5rem;
    color: black;
}

.contact-wrapper .social-links a {
    color: black;
    font-size: 1.5rem;
    transition: transform 0.3s;
    text-decoration: none;
}

.contact-wrapper .social-links a:hover {
    color: #ff9f00;
    transform: translateY(-3px);
}

.footer {
    background-color: #3A3A3C;
    color: beige;
    padding: 4rem 2rem;
    margin-top: 2rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section {
    padding: 1rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: beige;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.footer-links a {
    color: beige;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-form input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 4px;
}

.newsletter-form button {
    width: 100%;
    padding: 0.75rem;
    background-color: beige;
    color: #ff9f00;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: white;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 245, 220, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: beige;
    text-decoration: none;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* language */
.translate-wrapper {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .translate-wrapper {
        width: 55px;
        height: 55px;
        bottom: 15px;
        left: 15px;
    }
}

.content {
    margin-top: 80px;
}

#google_translate_element select {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
    max-width: 150px;
}

/* Hide the default Google Translate widget */
.goog-te-banner-frame {
    display: none;
}

.goog-te-gadget {
    font-family: Arial, sans-serif !important;
    color: #666;
}

.goog-te-gadget .goog-te-combo {
    margin: 4px 0;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.goog-te-gadget span {
    display: none;
}

/* WhatsApp Button Styles */
#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

#whatsapp-button img {
    width: 35px;
    height: 35px;
}

#whatsapp-link {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 65px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    #whatsapp-button {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }

    #whatsapp-button img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    #whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 10px;
        right: 10px;
    }

    #whatsapp-button img {
        width: 28px;
        height: 28px;
    }
}

/* Tablet styles - for screens up to 1024px */
@media screen and (max-width: 1024px) {
    .about-content {
        max-width: 90%;
        gap: 2rem;
    }

    .about-image {
        height: 400px;
    }

    .about-text {
        padding: 1rem;
    }

    .about-text h3 {
        font-size: 1.6rem;
    }
}

/* Mobile styles - for screens up to 768px */
@media screen and (max-width: 768px) {
    .about-us {
        padding: 3rem 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        height: 300px;
    }

    .about-text {
        padding: 0;
    }

    .experience-numbers {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .number-box {
        padding: 1rem;
    }

    .number-box h4 {
        font-size: 2rem;
    }
}

/* Small mobile styles - for screens up to 480px */
@media screen and (max-width: 480px) {
    .about-us {
        padding: 2rem 1rem;
    }

    .about-image {
        height: 250px;
    }

    .about-text h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .number-box {
        padding: 0.8rem;
    }

    .number-box h4 {
        font-size: 1.8rem;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

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

    .main-content {
        padding: 2rem 1rem;
    }
}