:root {
    --jade-green: #4E342E;
    --jade-light: #5D4037;
    --jade-dark: #3E2723;
    --gold: #d4af37;
    --gold-light: #f4d976;
    --gold-dark: #b8941f;
    --cream: #faf8f3;
    --cream-dark: #f0ebe0;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --text-light: #666666;
}

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

/* Prevent horizontal overflow on mobile */
html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', 'Noto Sans Thai', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
    max-width: 100vw;
}

.logo img {
    height: 50px; /* ปรับความสูงตามต้องการ */
    width: auto;  /* ให้ความกว้างปรับตามสัดส่วน */
    display: block;
}

/* Prevent text overflow */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Prevent images from overflowing */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent long URLs or emails from breaking layout */
a[href^="mailto:"],
a[href^="tel:"],
a[href^="http"] {
    word-break: break-all;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', 'Noto Sans Thai', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.7rem 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--jade-green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--gold);
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    /* Touch-friendly */
    padding: 0.5rem 0;
    display: block;
    -webkit-tap-highlight-color: transparent;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--jade-green);
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    background: var(--cream-dark);
    padding: 0.4rem 0.6rem;
    border-radius: 25px;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 0.3rem 0.8rem;
    cursor: pointer;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.lang-btn.active {
    background: var(--jade-green);
    color: white;
}

.lang-btn:hover {
    background: var(--jade-light);
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--jade-green);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    /* ปรับเป็นโทนน้ำตาล: Deep Brown (rgba 62, 39, 35) และ Dark Chocolate (rgba 38, 24, 22) */
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.95) 0%, rgba(38, 24, 22, 0.9) 100%),
        url('https://img5.pic.in.th/file/secure-sv1/S__2080772_04af0b1489defb3f2.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 5%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 900px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

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

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

.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--gold-light);
    margin-bottom: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-tagline {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--cream);
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Touch-friendly */
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary {
    background: var(--gold);
    color: var(--jade-dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--jade-green);
    transform: translateY(-3px);
}

/* Decorative Elements */
.decoration-circle {
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.decoration-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
}

.decoration-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 15%;
    animation-duration: 15s;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Section Styling */
section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease;
}

.section-subtitle {
    color: var(--gold);
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.section-title {
    font-size: 3rem;
    color: var(--jade-green);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border: 3px solid var(--gold);
    border-radius: 15px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-image:hover::before {
    opacity: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--jade-green);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 0.3rem;
}

.feature-item h4 {
    color: var(--jade-green);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Services Section */
.services {
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

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

.service-header {
    background: linear-gradient(135deg, var(--jade-green), var(--jade-light));
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30%, -30%);
    }
}

.service-header i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.service-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.service-body {
    padding: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--cream-dark);
}

.price-item:last-child {
    border-bottom: none;
}

.price-duration {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05rem;
}

.price-amount {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 1.3rem;
}

/* Gallery Section */
.gallery {
    background: white;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(45, 95, 77, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

/* Location Section */
.location {
    background: var(--cream);
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.location-info {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.location-info h3 {
    color: var(--jade-green);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--cream-dark);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--jade-green), var(--jade-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--gold);
    font-size: 1.3rem;
}

.info-content h4 {
    color: var(--jade-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 550;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Booking Section */
.booking {
    background: linear-gradient(135deg, var(--cream-light) 0%, white 100%);
    position: relative;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
            transparent,
            var(--primary-gold) 30%,
            var(--gold-bright) 50%,
            var(--primary-gold) 70%,
            transparent);
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 4rem;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--cream-light), white);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: var(--primary-gold);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--jade-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.step-content h4 {
    color: var(--jade-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.booking-benefits {
    background: linear-gradient(135deg, var(--jade-green), var(--jade-light));
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.booking-benefits h3 {
    color: var(--gold-light);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--cream);
    font-size: 1.05rem;
}

.benefit-item i {
    color: var(--gold-light);
    font-size: 1.3rem;
}

.booking-form {
    background: linear-gradient(to bottom, white, var(--cream));
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.1),
        0 0 0 3px var(--gold);
}

.booking-form h3 {
    color: var(--jade-green);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.booking-form .form-group {
    margin-bottom: 1.8rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.7rem;
    color: var(--jade-green);
    font-weight: 600;
    font-size: 1rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 1.1rem;
    border: 2px solid var(--cream-dark);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    /* Mobile improvements */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    max-width: 100%;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow:
        0 0 0 4px rgba(212, 175, 55, 0.15),
        0 5px 20px rgba(212, 175, 55, 0.2);
}

.booking-form select {
    cursor: pointer;
}

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

.booking-submit {
    width: 100%;
    padding: 1.4rem 2.5rem;
    background: linear-gradient(135deg, #25D366, #20ba5a);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.booking-submit i {
    font-size: 1.5rem;
}

.booking-submit:hover {
    background: linear-gradient(135deg, #20ba5a, #1da851);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.booking-notice {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.booking-notice i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--jade-green), var(--jade-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon i {
    color: var(--gold);
    font-size: 1.5rem;
}

.contact-card-content h4 {
    color: var(--jade-green);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-card-content p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-card-content a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-content a:hover {
    color: var(--jade-green);
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-btn {
    display: inline-flex;    /* จัดไอคอนและข้อความให้อยู่แถวเดียวกัน */
    align-items: center;     /* จัดให้อยู่กึ่งกลางแนวตั้ง */
    justify-content: center; /* จัดให้อยู่กึ่งกลางแนวนอน */
    border-radius: 10px;
    white-space: nowrap;     /* *** สำคัญ: ห้ามตัวหนังสือตกบรรทัด *** */
    text-decoration: none;
    padding: 8px 15px;       /* เพิ่ม Padding ซ้าย-ขวา เพื่อให้ปุ่มมีพื้นที่พอสำหรับข้อความ */
    min-width: fit-content;  /* ให้ปุ่มขยายขนาดตามความกว้างของข้อความ */
    
    font-size: 14px;         /* ปรับขนาดตัวอักษรตามความเหมาะสม */
    gap: 8px;                /* ระยะห่างระหว่างไอคอน WhatsApp กับข้อความ */
}

.btn-call {
    background: var(--gold);
    color: var(--jade-dark);
}

.btn-call:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

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

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.contact-form {
    background: var(--cream);
    padding: 3rem;
    border-radius: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--jade-green);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--cream-dark);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    /* Mobile improvements */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    max-width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--jade-green);
    box-shadow: 0 0 0 4px rgba(45, 95, 77, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--jade-green);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--jade-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(45, 95, 77, 0.3);
}

/* Footer */
.footer {
    background: var(--jade-dark);
    color: var(--cream);
    padding: 4rem 5% 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.footer-section p,
.footer-section li {
    color: var(--cream-dark);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--cream-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--jade-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--cream-dark);
}

/* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.5);
    cursor: pointer;
    z-index: 999;
    animation: pulse-ring 2s ease-in-out infinite;
    text-decoration: none;
}

.floating-call i {
    color: var(--jade-dark);
    font-size: 1.5rem;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7),
            0 5px 25px rgba(212, 175, 55, 0.5);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0),
            0 5px 25px rgba(212, 175, 55, 0.5);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0),
            0 5px 25px rgba(212, 175, 55, 0.5);
    }
}

/* Responsive Design */

/* Tablet - 768px to 968px */
@media (max-width: 968px) {
    section {
        padding: 4rem 5%;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 1.5rem;
    }

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

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 3rem;
    }

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

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

    .section-description {
        font-size: 1rem;
    }

    .about-content,
    .location-container,
    .contact-container,
    .booking-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image img {
        height: 400px;
    }

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

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.2rem;
    }

    .booking-form,
    .contact-form,
    .location-info {
        padding: 2.5rem;
    }
}

/* Mobile Landscape - 576px to 768px */
@media (max-width: 768px) {
    section {
        padding: 3rem 4%;
    }

    .navbar {
        padding: 0.8rem 4%;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .hero {
        padding: 0 4%;
        min-height: 90vh;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }

    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

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

    .section-subtitle {
        font-size: 0.9rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .feature-item {
        padding: 1rem;
        background: var(--cream);
        border-radius: 10px;
    }

    .service-header {
        padding: 1.5rem;
    }

    .service-header i {
        font-size: 2rem;
    }

    .service-header h3 {
        font-size: 1.4rem;
    }

    .service-body {
        padding: 1.5rem;
    }

    .price-duration {
        font-size: 1rem;
    }

    .price-amount {
        font-size: 1.2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1rem;
    }

    .location-info h3,
    .booking-form h3,
    .contact-form h3 {
        font-size: 1.8rem;
    }

    .info-item {
        gap: 1.2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .info-icon {
        width: 45px;
        height: 45px;
    }

    .info-icon i {
        font-size: 1.1rem;
    }

    .info-content h4 {
        font-size: 1.1rem;
    }

    .booking-form,
    .contact-form,
    .location-info {
        padding: 2rem;
    }

    .step-item {
        padding: 1.2rem;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .step-content h4 {
        font-size: 1.1rem;
    }

    .booking-benefits {
        padding: 2rem;
    }

    .booking-benefits h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .benefit-item {
        font-size: 1rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-card-icon {
        width: 50px;
        height: 50px;
    }

    .footer {
        padding: 3rem 4% 2rem;
    }

    .footer-content {
        gap: 2.5rem;
    }

    .floating-call {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 25px;
    }

    .floating-call i {
        font-size: 1.3rem;
    }
}

/* Mobile Portrait - Max 576px */
@media (max-width: 576px) {
    section {
        padding: 2.5rem 5%;
    }

    .navbar {
        padding: 0.7rem 5%;
    }

    .nav-container {
        gap: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo i {
        font-size: 1.3rem;
    }

    .logo span {
        display: inline;
    }

    .mobile-menu-btn {
        font-size: 1.3rem;
    }

    .hero {
        padding: 0 5%;
        min-height: 85vh;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.8rem;
    }

    .hero-tagline {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn {
        padding: 0.85rem 1.8rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .section-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-image img {
        height: 300px;
    }

    .about-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 1.2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .feature-item {
        padding: 1rem;
        background: var(--cream);
        border-radius: 10px;
    }

    .feature-item i {
        font-size: 1.3rem;
    }

    .feature-item h4 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        border-radius: 15px;
    }

    .service-header {
        padding: 1.5rem;
    }

    .service-header i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .service-header h3 {
        font-size: 1.3rem;
    }

    .service-body {
        padding: 1.2rem;
    }

    .price-item {
        padding: 0.8rem 0;
        flex-wrap: wrap;
    }

    .price-duration {
        font-size: 0.95rem;
    }

    .price-amount {
        font-size: 1.15rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        border-radius: 12px;
    }

    .lightbox {
        padding: 1rem;
    }

    .lightbox-close {
        top: -35px;
        font-size: 1.8rem;
    }

    .location-info,
    .booking-form,
    .contact-form {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .location-info h3,
    .booking-form h3,
    .contact-form h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .info-item {
        gap: 1rem;
        margin-bottom: 1.2rem;
        padding-bottom: 1.2rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .info-icon i {
        font-size: 1rem;
    }

    .info-content h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .info-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .location-map {
        height: 350px;
        border-radius: 15px;
    }

    .booking-container,
    .contact-container {
        gap: 2rem;
    }

    .booking-steps {
        gap: 1.2rem;
    }

    .step-item {
        padding: 1rem;
        border-radius: 12px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .step-content h4 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .booking-benefits {
        padding: 1.8rem;
        border-radius: 15px;
    }

    .booking-benefits h3 {
        font-size: 1.5rem;
        margin-bottom: 1.3rem;
    }

    .benefit-item {
        font-size: 0.95rem;
        gap: 0.8rem;
    }

    .benefit-item i {
        font-size: 1.1rem;
    }

    .booking-form {
        padding: 1.8rem;
        border-radius: 20px;
    }

    .form-row {
        gap: 1rem;
    }

    .booking-form .form-group {
        margin-bottom: 1.2rem;
    }

    .booking-form label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        padding: 0.9rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .booking-submit {
        padding: 1.1rem 2rem;
        font-size: 1rem;
        border-radius: 10px;
    }

    .booking-submit i {
        font-size: 1.3rem;
    }

    .booking-notice {
        margin-top: 1.2rem;
        padding: 1rem;
        font-size: 0.85rem;
    }

    .booking-notice i {
        font-size: 1rem;
    }

    .contact-card {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .contact-card-icon {
        width: 45px;
        height: 45px;
    }

    .contact-card-icon i {
        font-size: 1.2rem;
    }

    .contact-card-content h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .contact-card-content p {
        font-size: 0.9rem;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .contact-btn {
        padding: 0.9rem;
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1.8rem;
    }

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

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .form-submit {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .footer {
        padding: 2.5rem 5% 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .social-links {
        gap: 0.8rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }

    .floating-call {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .floating-call i {
        font-size: 1.2rem;
    }
}

/* Extra Small Mobile - Max 360px */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.8rem;
    }

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

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    .service-header h3 {
        font-size: 1.2rem;
    }

    .price-duration,
    .price-amount {
        font-size: 0.9rem;
    }
}

/* Utility Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}