:root {
    --primary-brown: #4A3728;
    --dark-brown: #2C1F15;
    --light-brown: #6B4E3D;
    --cream: #F5F0EB;
    --white: #e7ddd1;
    --gold: #C9A962;
    --success: #27ae60;
    --error: #e74c3c;
}

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

body {
    font-family: 'Noto Sans TC', sans-serif;
    background-color: var(--white);
    color: var(--dark-brown);
    overflow-x: hidden;
}

a {
    color: inherit;
}

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

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

header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(74, 55, 40, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(231, 221, 209, 0.98);
    box-shadow: 0 2px 30px rgba(74, 55, 40, 0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    height: 60px;
    transition: transform 0.3s ease;
}

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

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-brown);
    line-height: 1.3;
}

.logo-text span {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--light-brown);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 10px;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary-brown);
    font-weight: 500;
    padding: 12px 18px;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::before {
    width: 60%;
}

nav ul li a:hover {
    color: var(--dark-brown);
    background: var(--cream);
}

nav ul li a.active {
    background: var(--primary-brown);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 35px;
    height: 30px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1001;
    border: 0;
    background: transparent;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-brown);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
}

.hamburger span:nth-child(1) { top: 5px; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 5px; }
.hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); background: var(--gold); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-20px); }
.hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); background: var(--gold); }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(180deg, var(--dark-brown) 0%, var(--primary-brown) 100%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    padding: 100px 40px;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
}

.mobile-menu.active ul li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    display: block;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--gold);
    padding-left: 30px;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 500px;
    margin-top: 90px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(44, 31, 21, 0.3) 0%, rgba(44, 31, 21, 0.6) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 10;
    width: 90%;
    max-width: 820px;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.slide-content p {
    font-size: 1.25rem;
    margin-bottom: 18px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.btn-primary,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gold);
    color: var(--dark-brown);
    padding: 15px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(201, 169, 98, 0.4);
}

.btn-primary:hover,
.button:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.6);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: var(--gold);
    color: var(--dark-brown);
}

.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

section {
    padding: 100px 30px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.section-title p {
    color: var(--light-brown);
    font-size: 1.1rem;
    max-width: 680px;
    margin: 20px auto 0;
    line-height: 1.8;
}

.page-banner {
    height: 45vh;
    min-height: 340px;
    margin-top: 90px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.45);
}

.breadcrumb,
.breadcrumb a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.about-section,
.about-intro,
.cta-section,
.faq-section {
    background: var(--cream);
}

.services-section,
.gallery-section,
.contact-info-section,
.plain-page {
    background: var(--white);
}

.about-container,
.about-intro-container,
.contact-main-container,
.booking-container,
.team-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image,
.about-intro-image,
.team-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(74, 55, 40, 0.2);
}

.about-image img,
.about-intro-image img,
.team-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.fb-reel-embed {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    aspect-ratio: 3 / 4;
    background: #000;
}

.fb-reel-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.about-content h3,
.about-intro-content h2,
.team-info h3 {
    font-size: 2rem;
    color: var(--primary-brown);
    margin-bottom: 20px;
}

.about-content p,
.about-intro-content p,
.team-info p {
    color: var(--light-brown);
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-grid,
.features-grid,
.info-grid,
.blog-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-grid.home-services {
    grid-template-columns: repeat(6, 1fr);
}

.services-grid.home-services .service-card:nth-child(1) { grid-column: 1 / 3; }
.services-grid.home-services .service-card:nth-child(2) { grid-column: 3 / 5; }
.services-grid.home-services .service-card:nth-child(3) { grid-column: 5 / 7; }
.services-grid.home-services .service-card:nth-child(4) { grid-column: 2 / 4; }
.services-grid.home-services .service-card:nth-child(5) { grid-column: 4 / 6; }

.service-card,
.feature-card,
.info-card,
.blog-card,
.price-card,
.branch-card,
.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 38px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(74, 55, 40, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.service-card:hover,
.feature-card:hover,
.info-card:hover,
.blog-card:hover,
.price-card:hover,
.branch-card:hover,
.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(74, 55, 40, 0.15);
}

.service-icon,
.feature-icon,
.info-card-icon,
.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-brown), var(--light-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon,
.feature-card:hover .feature-icon,
.info-card:hover .info-card-icon {
    transform: rotateY(180deg);
    background: var(--gold);
    color: var(--dark-brown);
}

.service-card h3,
.feature-card h3,
.info-card h3,
.price-card h3,
.branch-card h3,
.blog-card h3 {
    font-size: 1.35rem;
    color: var(--primary-brown);
    margin-bottom: 10px;
}

.service-en {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--light-brown);
    margin-top: 5px;
}

.service-card p,
.feature-card p,
.info-card p,
.price-card p,
.branch-card p,
.blog-card p {
    color: var(--light-brown);
    line-height: 1.65;
}

.price,
.price-line {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 18px;
}

.price-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    overflow: hidden;
    border-radius: 14px;
}

.price-table th,
.price-table td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(74, 55, 40, 0.12);
    color: var(--light-brown);
}

.price-table th {
    background: var(--primary-brown);
    color: var(--white);
}

.price-table td strong {
    color: var(--gold);
}

.contact-section {
    background: linear-gradient(135deg, var(--dark-brown), var(--primary-brown));
    color: var(--white);
}

.contact-section .section-title h2,
.contact-section .section-title p {
    color: var(--white);
}

.contact-grid,
.contact-info-grid,
.branches-grid,
.quick-contact-buttons {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.05rem;
}

.contact-extra {
    font-size: 0.9rem;
    margin-top: 10px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    border: 0;
    padding: 12px 26px;
    border-radius: 30px;
    background: var(--cream);
    color: var(--primary-brown);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-brown);
    color: var(--white);
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.gallery-row-heading {
    grid-column: 1 / -1;
    color: var(--primary-brown);
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(74, 55, 40, 0.14);
}

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 31, 21, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 22px;
    color: var(--white);
}

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

.gallery-item-icon {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.88);
    color: var(--primary-brown);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.9);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: min(92vw, 980px);
}

.lightbox-content img {
    max-height: 82vh;
    margin: 0 auto;
    border-radius: 12px;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    border: 0;
    cursor: pointer;
    color: var(--white);
    background: rgba(255, 255, 255, 0.16);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    z-index: 3;
}

.lightbox-close {
    top: -58px;
    right: 0;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-nav.prev { left: -62px; }
.lightbox-nav.next { right: -62px; }

.lightbox-caption {
    color: var(--white);
    text-align: center;
    margin-top: 18px;
    font-size: 1.1rem;
}

.booking-section,
.contact-main-section,
.blog-section {
    background: var(--white);
}

.booking-info,
.booking-form-container,
.contact-form-container,
.contact-details-panel,
.notes-container,
.content-panel {
    background: var(--cream);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 36px rgba(74, 55, 40, 0.09);
}

.booking-info {
    align-self: start;
    position: sticky;
    top: 120px;
    background: linear-gradient(135deg, var(--dark-brown), var(--primary-brown));
    color: var(--white);
}

.booking-info h2,
.contact-form-container h2,
.booking-form-container h2 {
    color: var(--primary-brown);
    margin-bottom: 16px;
}

.booking-info h2,
.booking-info p,
.booking-info a {
    color: var(--white);
}

.info-item {
    display: flex;
    gap: 16px;
    margin-top: 22px;
    align-items: flex-start;
}

.info-item-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold);
    flex: 0 0 auto;
}

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

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

label {
    display: block;
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 8px;
}

.required {
    color: var(--error);
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(74, 55, 40, 0.22);
    border-radius: 12px;
    font: inherit;
    color: var(--dark-brown);
    background: rgba(255, 255, 255, 0.85);
}

textarea {
    min-height: 130px;
    resize: vertical;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.service-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-option label {
    display: block;
    height: 100%;
    padding: 18px;
    border: 2px solid rgba(74, 55, 40, 0.14);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.6);
}

.service-option input:checked + label {
    border-color: var(--gold);
    background: rgba(201, 169, 98, 0.18);
}

.service-name,
.service-price {
    display: block;
    margin-top: 6px;
}

.service-price {
    color: var(--gold);
    font-weight: 700;
}

.alert {
    padding: 15px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.alert.success {
    background: rgba(39, 174, 96, 0.14);
    color: #17673c;
}

.alert.error {
    background: rgba(231, 76, 60, 0.12);
    color: #963022;
}

.quick-contact {
    background: var(--cream);
}

.quick-contact-buttons {
    grid-template-columns: repeat(4, 1fr);
}

.quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 34px 22px;
    border-radius: 20px;
    text-decoration: none;
    text-align: center;
    color: var(--white);
    transition: all 0.4s ease;
}

.quick-btn i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.quick-btn small {
    margin-top: 8px;
    opacity: 0.86;
    overflow-wrap: anywhere;
}

.quick-btn.phone { background: var(--primary-brown); }
.quick-btn.whatsapp { background: #25D366; }
.quick-btn.facebook { background: #1877F2; }
.quick-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.quick-btn:hover { transform: translateY(-5px); filter: brightness(1.06); }

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

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

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--primary-brown);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: var(--light-brown);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.plain-page {
    padding-top: 160px;
    min-height: 55vh;
}

.cms-content {
    color: var(--light-brown);
    line-height: 1.85;
}

.cms-content h2,
.cms-content h3,
.cms-content h4 {
    color: var(--primary-brown);
    margin: 1.2em 0 0.6em;
}

.cms-content p,
.cms-content ul,
.cms-content ol {
    margin-bottom: 18px;
}

.cms-content ul,
.cms-content ol {
    padding-left: 24px;
}

.blog-card {
    text-align: left;
    overflow: hidden;
    padding: 0;
}

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

.blog-card-body {
    padding: 28px;
}

.blog-meta {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

footer {
    background: var(--dark-brown);
    color: var(--white);
    padding: 60px 30px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr;
    gap: 60px;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p,
.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-brand a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.82);
}

.footer-highlight {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold) !important;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.footer-contact i {
    color: var(--gold);
    margin-right: 10px;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

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

.social-links a:hover {
    background: var(--gold);
    color: var(--dark-brown);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

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

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

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

@media (max-width: 1100px) {
    nav ul li a {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    nav { display: none; }
    .hamburger { display: flex; }

    .about-container,
    .about-intro-container,
    .contact-main-container,
    .booking-container,
    .team-content,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .features-grid,
    .info-grid,
    .blog-grid,
    .price-grid,
    .gallery-grid,
    .contact-grid,
    .contact-info-grid,
    .branches-grid,
    .quick-contact-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid.home-services {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid.home-services .service-card:nth-child(n) {
        grid-column: auto;
    }

    .booking-info {
        position: static;
    }

    .page-banner h1,
    .slide-content h1 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 12px 20px;
    }

    .logo img {
        height: 45px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .hero-slider {
        height: 60vh;
        margin-top: 70px;
    }

    .slide-content h1 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .page-banner {
        height: 35vh;
        min-height: 280px;
        margin-top: 70px;
    }

    .page-banner h1,
    .section-title h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 60px 20px;
    }

    .container {
        padding: 0 20px;
    }

    .services-grid,
    .features-grid,
    .info-grid,
    .blog-grid,
    .price-grid,
    .gallery-grid,
    .contact-grid,
    .contact-info-grid,
    .branches-grid,
    .quick-contact-buttons,
    .services-grid.home-services,
    .service-options,
    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form-container,
    .booking-info,
    .contact-form-container,
    .contact-details-panel,
    .notes-container,
    .content-panel {
        padding: 30px 24px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-arrow.prev { left: 15px; }
    .slider-arrow.next { right: 15px; }

    .lightbox-nav.prev { left: 5px; }
    .lightbox-nav.next { right: 5px; }
    .lightbox-close { top: 20px; right: 20px; }

    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        bottom: 20px;
        right: 20px;
    }
}

