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

:root {
    --primary-green: #2d5016;
    --forest-green: #3d6b1f;
    --olive-green: #4a7c28;
    --light-olive: #5a9133;
    --cream: #faf8f3;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #6b6b6b;
    --gold-accent: #d4af37;
    --dark-gold: #b8941f;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-image: url('images/bg.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-color: var(--cream);
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--forest-green);
    color: var(--white);
}

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

/* Top Bar */
.top-bar {
    background: var(--primary-green);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-item i {
    font-size: 14px;
    color: var(--gold-accent);
}

.top-bar-item a,
.top-bar-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.top-bar-item a:hover,
.top-bar-link:hover {
    text-decoration: none;
    color: #fff;
}

.top-bar-right {
    display: flex;
    gap: 10px;
}

.top-bar-social {
    display: flex;
    gap: 10px;
}

.top-bar-social a {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.top-bar-social a:hover {
    background: var(--gold-accent);
    color: var(--text-dark);
}

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

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

.logo { display: flex; align-items: center; gap: 15px; position: relative; }
.logo-img {
    width: 65px; height: 65px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    position: relative;
}
.logo-img img {
    width: 120px; height: 120px;
    object-fit: contain;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.logo-text h1 {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    font-family: 'Libre Baskerville', serif;
}
.logo-text p { font-size: 0.85rem; color: var(--text-gray); }

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

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

.main-nav a:hover,
.main-nav a.active {
    color: var(--forest-green);
}

.header-cta .btn-book {
    background: var(--gold-accent);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.header-cta .btn-book:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-green);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 90vw;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 20px rgba(0,0,0,0.15);
    z-index: 2000;
    padding: 25px 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

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

.mobile-menu-close {
    text-align: right;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    margin-bottom: 30px;
}

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

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    transition: all 0.3s;
}

.mobile-menu a:hover {
    color: var(--forest-green);
    padding-left: 10px;
}

.mobile-menu .btn-book {
    background: var(--gold-accent);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-green);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45,80,22,0.88), rgba(74,124,40,0.82));
}

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

.hero-badge {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: var(--gold-accent);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Libre Baskerville', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold-accent);
    margin-bottom: 15px;
    font-family: 'Libre Baskerville', serif;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-accent);
    color: var(--text-dark);
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 16px 35px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-tertiary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary-green);
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-tertiary:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    color: var(--forest-green);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-family: 'Libre Baskerville', serif;
    line-height: 1.2;
}

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

/* Services Home Section */
.services-home {
    padding: 90px 20px;
    background: rgba(245, 245, 245, 0.88);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.90);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--olive-green);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-green), var(--olive-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.service-image .fallback-icon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-green), var(--olive-green));
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.15), transparent);
    z-index: 1;
    pointer-events: none;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    padding: 0 25px;
    margin-top: 20px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
    padding: 0 25px;
    flex-grow: 1;
}

/* ============================================================
   SERVICE WHATSAPP BUTTON
   ============================================================ */
.service-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(120deg, #c9a820, #FFD600, #FF6D00, #FFD600, #c9a820);
    background-size: 300% 100%;
    background-position: 0% 50%;
    color: #1a1a1a;
    padding: 14px 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background-position 0.4s ease, transform 0.3s, box-shadow 0.3s;
    font-size: 1rem;
    margin: 0 25px 25px;
    border-radius: 8px;
    border: 1px solid rgba(255, 109, 0, 0.35);
    position: relative;
    overflow: hidden;
    animation: whatsapp-glow 3s ease-in-out infinite,
               whatsapp-shift 6s ease-in-out infinite;
}

@keyframes whatsapp-shift {
    0%, 100% { background-position: 0%   50%; }
    50%       { background-position: 100% 50%; }
}

@keyframes whatsapp-glow {
    0%, 100% { box-shadow: 0 3px 12px rgba(201,168,32,0.30), 0 0 0   0   rgba(255,109,0,0.10); }
    50%       { box-shadow: 0 5px 18px rgba(255,109,0,0.40), 0 0 8px 2px rgba(255,214,0,0.28); }
}

.service-whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.25) 50%, transparent 80%);
    transform: skewX(-15deg);
    animation: whatsapp-shine 4.5s ease-in-out infinite 1.5s;
    pointer-events: none;
    z-index: 2;
}

@keyframes whatsapp-shine {
    0%, 100% { left: -80%; }
    55%       { left: 115%; }
}

.service-whatsapp-btn:hover {
    background-position: 100% 50%;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(255,109,0,0.50), 0 0 12px 3px rgba(255,214,0,0.35);
    animation-play-state: paused;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--forest-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.service-link:hover {
    color: var(--olive-green);
    gap: 12px;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* About Preview */
.about-preview {
    padding: 90px 20px;
    background: var(--white);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 70px;
    align-items: center;
}

.about-preview-image {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-green), var(--olive-green));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.15);
    font-size: 10rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.about-img-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.02) 35px, rgba(255,255,255,0.02) 70px);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold-accent);
    padding: 25px 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    text-align: center;
}

.about-badge h4 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.about-badge p {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
}

.about-preview-content p {
    font-size: 1.02rem;
    color: var(--text-gray);
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 35px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--cream);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
}

.about-feature-item i {
    color: var(--forest-green);
    font-size: 1.3rem;
}

.about-feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Testimonials */
.testimonials {
    padding: 90px 20px;
    background: var(--primary-green);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials .section-label {
    color: var(--gold-accent);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials .section-subtitle {
    color: rgba(255,255,255,0.85);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 12px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-8px);
}

.testimonial-rating {
    color: var(--gold-accent);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.8;
    opacity: 0.95;
    font-size: 0.96rem;
    margin-bottom: 25px;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: var(--gold-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
}

.author-info h4 {
    font-size: 1.05rem;
    margin-bottom: 3px;
    font-weight: 600;
}

.author-info span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Contact Home */
.contact-home {
    padding: 90px 20px;
    background: var(--white);
}

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

.contact-info .section-label {
    text-align: left;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 35px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--olive-green));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-detail-text p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-detail-text a {
    color: var(--forest-green);
    text-decoration: none;
    font-weight: 500;
}

.contact-detail-text a:hover {
    color: var(--olive-green);
}

.contact-form-wrapper {
    background: var(--cream);
    padding: 40px;
    border-radius: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--forest-green);
    box-shadow: 0 0 0 3px rgba(61, 107, 31, 0.1);
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--forest-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(45, 80, 22, 0.3);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.8);
}

.footer-main {
    padding: 60px 20px 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold-accent), var(--dark-gold));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.footer-logo span {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Libre Baskerville', serif;
}

.footer-column p {
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-registration {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.footer-registration p {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

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

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

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

.footer-column a:hover {
    color: var(--gold-accent);
    padding-left: 8px;
}

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

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

.footer-bottom-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
}

/* Floating Buttons */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #1da851);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.phone-float,
.call-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 24px rgba(45, 80, 22, 0.4);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.phone-float:hover,
.call-float:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes pulse {
    0%   { box-shadow: 0 6px 24px rgba(45, 80, 22, 0.4); }
    50%  { box-shadow: 0 6px 24px rgba(45, 80, 22, 0.8), 0 0 0 10px rgba(45, 80, 22, 0.2); }
    100% { box-shadow: 0 6px 24px rgba(45, 80, 22, 0.4); }
}

/* ============================================================
   BUTTON ANIMATIONS
   ============================================================ */

@keyframes soft-shine {
    0%        { left: -80%; }
    55%, 100% { left: 115%; }
}

@keyframes warm-glow {
    0%, 100% { box-shadow: 0 2px 10px rgba(42,104,82,0.25),  0 0 0 0   rgba(216,178,34,0.15); }
    50%       { box-shadow: 0 4px 18px rgba(42,104,82,0.38),  0 0 6px 2px rgba(216,178,34,0.28); }
}

@keyframes soft-ripple {
    0%        { box-shadow: 0 0 0 0   rgba(216,178,34,0.35), 0 5px 20px rgba(42,104,82,0.35); }
    70%       { box-shadow: 0 0 0 12px rgba(216,178,34,0),   0 5px 20px rgba(42,104,82,0.35); }
    100%      { box-shadow: 0 0 0 0   rgba(216,178,34,0),    0 5px 20px rgba(42,104,82,0.35); }
}

@keyframes soft-ripple-green {
    0%        { box-shadow: 0 0 0 0   rgba(42,104,82,0.4),  0 5px 20px rgba(37,211,102,0.3); }
    70%       { box-shadow: 0 0 0 12px rgba(42,104,82,0),    0 5px 20px rgba(37,211,102,0.3); }
    100%      { box-shadow: 0 0 0 0   rgba(42,104,82,0),     0 5px 20px rgba(37,211,102,0.3); }
}

.btn-book,
.btn-primary,
.btn-submit,
.header-cta .btn-book {
    position: relative;
    overflow: hidden;
}

.btn-book::before,
.btn-primary::before,
.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 20%,
        rgba(255,255,255,0.18) 50%,
        transparent 80%
    );
    transform: skewX(-15deg);
    animation: soft-shine 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

.btn-book::before             { animation-delay: 0s;   }
.btn-primary::before          { animation-delay: 1s;   }
.btn-submit::before           { animation-delay: 0.5s; }

@keyframes gentle-bounce {
    0%, 100% { transform: translateY(0);    }
    50%       { transform: translateY(-3px); }
}

.btn-book,
.header-cta .btn-book,
.btn-primary,
.btn-submit {
    animation: warm-glow 3s ease-in-out infinite;
}

.whatsapp-float {
    animation: soft-ripple-green 2.4s ease-out infinite !important;
}

.phone-float,
.call-float {
    animation: soft-ripple 2.4s ease-out infinite 0.8s !important;
}

.btn-book:hover,
.btn-primary:hover,
.btn-submit:hover,
.whatsapp-float:hover,
.phone-float:hover,
.call-float:hover {
    animation-play-state: paused;
}

/* ============================================================
   SERVICES DROPDOWN MENU
   ============================================================ */

.main-nav .dropdown {
    position: relative;
}

.main-nav .dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav .dropdown > a i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.main-nav .dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-radius: 8px;
    min-width: 280px;
    max-width: 320px;
    max-height: 400px;
    overflow-y: auto;
    padding: 6px 0;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    list-style: none;
}

.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--gold-accent);
    border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gold);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    width: 100%;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
    border-left: 3px solid transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-menu a:hover {
    background: var(--cream);
    color: var(--forest-green);
    border-left-color: var(--gold-accent);
    padding-left: 25px;
}

.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    width: 100%;
}

.mobile-dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.mobile-submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--cream);
    border-radius: 6px;
    margin-top: 10px;
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 600px;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-submenu li {
    margin: 0;
}

.mobile-submenu a {
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.mobile-submenu a:hover {
    color: var(--forest-green);
    background: rgba(255,255,255,0.5);
}

/* FIX: dropdown items spacing */
.dropdown-menu {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 6px 0 !important;
}

/* ============================================================
   SCROLLING ANNOUNCEMENT BAR
   ============================================================ */

.announcement-bar {
    background: linear-gradient(135deg, var(--primary-green), var(--forest-green));
    color: var(--white);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid var(--gold-accent);
}

.announcement-content {
    display: flex;
    gap: 0;
    animation: scroll-announcement 20s linear infinite;
    white-space: nowrap;
}

.announcement-text {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 60px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.announcement-text i {
    color: var(--gold-accent);
    font-size: 1.1rem;
    animation: ring-pulse 1.5s ease-in-out infinite;
}

@keyframes scroll-announcement {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes ring-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.15); }
}

.announcement-bar:hover .announcement-content {
    animation-play-state: paused;
}

/* ============================================================
   RESPONSIVE — TABLET (1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

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

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

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

    .about-preview-grid {
        grid-template-columns: 1fr;
    }

    .contact-home-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (768px)
   ============================================================ */
@media (max-width: 768px) {

    .logo-img {
        width: 45px;
        height: 45px;
    }

    .logo-img img {
        width: 80px;
        height: 80px;
    }

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

    .logo-text p {
        font-size: 0.72rem;
    }

    .header-container {
        padding: 10px 15px;
    }

    .top-bar {
        display: block;
    }

    .top-bar-container {
        justify-content: center;
    }

    .top-bar-left {
        justify-content: center;
    }

    .top-bar-item:first-child,
    .top-bar-right {
        display: none;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

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

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

    .btn-primary,
    .btn-secondary,
    .btn-tertiary {
        width: 100%;
        justify-content: center;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

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

    .top-bar-container {
        justify-content: center;
        text-align: center;
    }

    .top-bar-left {
        justify-content: center;
    }

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

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

    /* Service pages hero on mobile */
    .service-hero h1 {
        font-size: 2rem !important;
    }

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

    .service-hero-icon {
        width: 80px !important;
        height: 80px !important;
        font-size: 2.5rem !important;
    }

    .service-content-box {
        padding: 25px 20px !important;
    }

    /* Page header banners */
    .page-header-banner h1,
    [style*="font-size: 3.2rem"] {
        font-size: 2rem !important;
    }

    /* Announcement bar text size */
    .announcement-text {
        font-size: 0.82rem;
        padding: 0 30px;
    }

    /* Mobile submenu max height for 11 items */
    .mobile-dropdown.active .mobile-submenu {
        max-height: 700px;
    }
}

/* ============================================================
   CONTACT PAGE — mobile grid fix
   ============================================================ */
@media (max-width: 768px) {
    .contact-page-grid {
        grid-template-columns: 1fr !important;
    }
    .contact-name-phone {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================================
   BACKGROUND IMAGE — semi-transparent sections
   ============================================================ */

header {
    background: rgba(255, 255, 255, 0.92) !important;
}

.mobile-menu {
    background: rgba(255, 255, 255, 0.97) !important;
}

.service-card {
    background: rgba(255, 255, 255, 0.90) !important;
}

.dropdown-menu {
    background: rgba(255, 255, 255, 0.98) !important;
}

footer,
.footer,
.site-footer {
    background: rgba(0, 0, 0, 0.82) !important;
}


@media (max-width: 768px) {
    .whatsapp-float,
    .phone-float,
    .call-float,
    .btn-book,
    .btn-primary,
    .btn-submit {
      animation: none !important;
    }
  }

  
@media (prefers-reduced-motion: reduce) {
    * {
      animation: none !important;
      transition: none !important;
    }
  }