/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4af37;
    --secondary-color: #1a1a1a;
    --accent-color: #ff6b6b;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

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

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

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

.btn-whatsapp:hover {
    background: #20ba5a;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 0;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    position: relative;
    max-width: 900px;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s;
}

.hero-logo i {
    font-size: 4rem;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    font-family: 'Poppins', serif;
    color: var(--white);
}

.hero-divider {
    width: 120px;
    height: 2px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
    margin: 1.5rem auto;
    animation: fadeInUp 1.2s;
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
    animation: fadeInUp 1.4s;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1.6s;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 6rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
}

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

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

.features-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
    min-height: 600px;
}

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

.features-content {
    padding: 2rem 0;
}

.features-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.features-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s;
    padding: 1rem;
    border-radius: 10px;
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.feature-text p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* ============================================
   SHOWCASE SECTION
   ============================================ */
.showcase-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showcase-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 250px);
    gap: 1.5rem;
    margin-top: 3rem;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s;
}

.showcase-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.showcase-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.showcase-item:nth-child(3) {
    grid-column: 3;
    grid-row: 1 / 3;
}

.showcase-item:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}

.showcase-item:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}

.showcase-item:nth-child(6) {
    grid-column: 1 / 3;
    grid-row: 3;
}

.showcase-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3), transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s;
}

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

.showcase-item:hover .showcase-image {
    transform: scale(1.15);
}

.showcase-overlay i {
    font-size: 3rem;
    color: var(--white);
    transform: scale(0.8);
    transition: all 0.4s;
}

.showcase-item:hover .showcase-overlay i {
    transform: scale(1);
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */
.services-preview {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
}

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

.services-content {
    padding: 2rem 0;
}

.section-title {
    text-align: left;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.services-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.services-list .service-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s;
    padding: 1rem;
    border-radius: 10px;
}

.services-list .service-item:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateX(10px);
}

.services-list .service-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s;
}

.services-list .service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.services-list .service-text {
    flex: 1;
}

.services-list .service-text h3 {
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.services-list .service-text p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.services-list .service-text .price {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.services-cta {
    margin-top: 2rem;
}

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

.services-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
    min-height: 600px;
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-color), #2c2c2c);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-page {
    padding: 5rem 0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-item {
    display: grid;
    gap: 3rem;
    background: var(--white);
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-item:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-item-left {
    grid-template-columns: 1fr 1.2fr;
}

.service-item-right {
    grid-template-columns: 1.2fr 1fr;
}

.service-image-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 400px;
}

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

.service-details {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.service-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.service-details > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-features li {
    padding: 0.6rem 0;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.service-features i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.booking-cta {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 10px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-page {
    padding: 5rem 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: center;
}

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

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

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

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

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

.team-section,
.values-section {
    margin-top: 5rem;
}

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

.team-member,
.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.team-member:hover,
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.member-photo-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transition: all 0.3s;
    border: 4px solid var(--white);
}

.team-member:hover .member-photo-wrapper {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.member-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.team-member:hover .member-photo-img {
    transform: scale(1.1);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-light);
    font-size: 0.9rem;
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-page {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.gallery-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-intro-text {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    letter-spacing: 0.3px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.8rem;
    background: var(--white);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--text-dark);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-btn i {
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #f4d03f);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--white);
}

.gallery-item:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    transform: translateY(-8px);
}

.gallery-item-large {
    grid-column: span 2;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3), transparent);
    color: var(--white);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 2rem;
}

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

.gallery-overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s 0.1s;
}

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

.gallery-overlay-content i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: block;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.gallery-overlay-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.gallery-overlay-content p {
    font-size: 1rem;
    opacity: 0.95;
    font-style: italic;
}

.gallery-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.1));
    border-radius: 20px;
    margin-top: 4rem;
}

.gallery-cta h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.gallery-cta p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 208, 63, 0.05) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.booking-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(212,175,55,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(212,175,55,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(212,175,55,0.1)"/></svg>');
    opacity: 0.3;
}

.booking-header-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.booking-header-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.8;
    }
}

.booking-header h1 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.booking-header-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.booking-header-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 0 auto;
    border-radius: 2px;
}

.booking-page {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.booking-form-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-section-header,
.contact-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.1);
}

.form-header-icon,
.contact-header-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.form-section-header h2,
.contact-section-header h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.form-intro,
.contact-intro {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

.booking-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group label i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
    color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0b0b0;
    font-style: italic;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    padding-right: 3rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Poppins', sans-serif;
}

.btn-booking {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.contact-info-section {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.contact-card {
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color), #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-link:hover {
    color: #b8941f;
    transform: translateX(5px);
}

.contact-link i {
    font-size: 0.9rem;
}

.hours-list p {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.hours-list p strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.booking-note {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.1));
    padding: 1.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.note-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.booking-note p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* ============================================
   SUCCESS MODAL
   ============================================ */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.success-modal.show {
    opacity: 1;
    visibility: visible;
}

.success-modal-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.success-modal.show .success-modal-content {
    transform: scale(1) translateY(0);
}

.success-icon-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: white;
    border: 4px solid #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    animation: successPulse 0.6s ease-out;
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
}

.success-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(40, 167, 69, 0.1);
    animation: ripple 1.5s ease-out infinite;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.success-circle i {
    font-size: 3rem;
    color: #28a745;
    z-index: 1;
    position: relative;
    animation: checkmark 0.5s ease-out 0.3s both;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.success-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.success-message {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.success-note {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.1));
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-align: left;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.success-note i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.success-close-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    cursor: pointer;
    border: none;
    width: 100%;
    justify-content: center;
}

.success-close-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

/* Responsive for Success Modal */
@media (max-width: 768px) {
    .success-modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .success-circle {
        width: 80px;
        height: 80px;
    }

    .success-circle i {
        font-size: 2.5rem;
    }

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

    .success-message {
        font-size: 1rem;
    }

    .success-note {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   TESTIMONIALS PAGE
   ============================================ */
.testimonials-page {
    padding: 5rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.testimonials-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-intro-text {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
    letter-spacing: 0.3px;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.testimonial-card:hover .testimonial-img {
    transform: scale(1.1);
}

.testimonial-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    display: flex;
    gap: 0.3rem;
}

.testimonial-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    font-size: 1rem;
    flex: 1;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), #f4d03f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 3px 15px rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.author-info h4 {
    margin-bottom: 0.3rem;
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.testimonials-cta {
    margin-top: 4rem;
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.1));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.testimonials-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.testimonials-cta-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.testimonials-cta-content h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.testimonials-cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    color: var(--white);
    padding: 2.5rem 0 0;
    margin-top: 3rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.footer-main {
    padding-bottom: 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-about {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.footer-logo h3 {
    font-size: 1.3rem;
    margin: 0;
    padding: 0;
}

.footer-logo h3::after {
    display: none;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 0.2rem;
    width: 18px;
    flex-shrink: 0;
}

.footer-contact-item .contact-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-item a,
.footer-contact-item p {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-contact-item a:hover {
    color: var(--primary-color);
}

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

.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;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.footer-map {
    min-width: 0;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    margin-top: 0.5rem;
}

.map-container iframe {
    width: 100%;
    height: 200px;
    border: none;
    display: block;
}

.map-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
}

.map-link-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: left 0.3s;
    }

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

    .hero {
        background-attachment: scroll;
        min-height: 100vh;
    }

    .hero-logo i {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .about-image {
        height: 350px;
        order: 2;
    }

    .about-text {
        order: 1;
    }

    .member-photo-wrapper {
        width: 150px;
        height: 150px;
    }

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

    .booking-header {
        padding: 3rem 0;
    }

    .booking-header h1 {
        font-size: 2rem;
    }

    .booking-header-subtitle {
        font-size: 1rem;
    }

    .booking-header-icon {
        font-size: 2.5rem;
    }

    .booking-form-section {
        padding: 2rem 1.5rem;
    }

    .form-section-header,
    .contact-section-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .form-header-icon,
    .contact-header-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .form-section-header h2,
    .contact-section-header h2 {
        font-size: 1.6rem;
    }

    .contact-info-section {
        position: static;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .service-item {
        grid-template-columns: 1fr !important;
        gap: 0;
        display: flex !important;
        flex-direction: column;
    }

    .service-item-left,
    .service-item-right {
        grid-template-columns: 1fr !important;
        display: flex !important;
        flex-direction: column;
    }

    .service-image-wrapper {
        order: 2;
        min-height: 250px;
        max-height: 300px;
        width: 100%;
        overflow: hidden;
    }

    .service-img {
        width: 100%;
        height: 100%;
        min-height: 250px;
        max-height: 300px;
        object-fit: cover;
        object-position: center;
    }

    .service-details {
        order: 1;
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto 1rem;
    }

    .service-details h3 {
        font-size: 1.6rem;
        text-align: center;
    }

    .service-details > p {
        font-size: 1rem;
        text-align: center;
    }

    .service-features {
        text-align: left;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .showcase-item {
        grid-column: 1 !important;
        grid-row: auto !important;
        height: 300px;
    }

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

    .gallery-item-large,
    .gallery-item-tall,
    .gallery-item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-image {
        min-height: 300px;
    }

    .gallery-intro-text {
        font-size: 1rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .gallery-cta {
        padding: 2rem 1.5rem;
    }

    .gallery-cta h3 {
        font-size: 1.6rem;
    }

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

    .testimonial-image {
        height: 200px;
    }

    .testimonials-intro-text {
        font-size: 1rem;
    }

    .testimonials-cta {
        padding: 2.5rem 1.5rem;
    }

    .testimonials-cta-content h2 {
        font-size: 1.8rem;
    }

    .testimonials-cta-content i {
        font-size: 2.5rem;
    }

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

    .footer-about {
        max-width: 100%;
    }

    .map-container iframe {
        height: 200px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-logo i {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 0.5px;
    }

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

    .hero-description {
        font-size: 0.95rem;
    }

    .service-item {
        display: flex !important;
        flex-direction: column;
    }

    .service-image-wrapper {
        order: 2;
        min-height: 200px;
        max-height: 250px;
    }

    .service-img {
        min-height: 200px;
        max-height: 250px;
    }

    .service-details {
        order: 1;
        padding: 1.5rem 1rem;
    }

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

    .service-details > p {
        font-size: 0.95rem;
    }

    .service-features li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }

    .features-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-image {
        order: 2;
    }

    .features-content {
        order: 1;
    }

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

    .features-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .features-img {
        min-height: 400px;
    }

    .feature-item {
        gap: 1rem;
        padding: 0.8rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.5rem;
    }

    .feature-text h3 {
        font-size: 1.2rem;
    }

    .feature-text p {
        font-size: 0.95rem;
    }

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

    .services-image {
        order: 2;
    }

    .services-content {
        order: 1;
    }

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

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .services-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .services-img {
        min-height: 400px;
    }

    .services-list .service-item {
        gap: 1rem;
        padding: 0.8rem;
    }

    .services-list .service-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.5rem;
    }

    .services-list .service-text h3 {
        font-size: 1.2rem;
    }

    .services-list .service-text p {
        font-size: 0.95rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .about-image {
        height: 300px;
    }

    .member-photo-wrapper {
        width: 120px;
        height: 120px;
    }
}

