/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #000000;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

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

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000000; /* ensure header and drawer are above all content */
    transition: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h1 {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 600;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.3rem 1rem;
    border-radius: 25px;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Backdrop for mobile drawer */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 99998;
}
.nav-backdrop.is-open { opacity: 1; pointer-events: auto; }
.no-scroll { overflow: hidden; touch-action: none; }

/* Main Content */
main {
    margin-top: 0;
    position: relative;
    z-index: 1;
    width: 100%;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000000;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 5.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    white-space: nowrap;
    line-height: 1.1;
    text-align: center !important;
    color: #ffffff;
}

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

/* Hero Slogan Styling */
.hero-slogan {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.slogan-main {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    letter-spacing: 1px;
    line-height: 1.2;
}

.slogan-subtitle {
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border-left: 4px solid #ffd700;
    backdrop-filter: blur(10px);
}

.slogan-subtitle h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
}

.slogan-subtitle p {
    font-size: 1.2rem;
    color: #e2e8f0;
    font-style: italic;
    margin: 0;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.hero-img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    max-width: 100%;
    min-width: 100%;
    min-height: 100%;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

/* Force center alignment for hero title */
.hero-content h1,
.hero-overlay .hero-content h1 {
    text-align: center !important;
}

/* Animated hero title */
.hero-title-animated {
    animation: slideInFromTop 1.2s ease-out 0.5s both;
    opacity: 0;
    transform: translateY(-50px);
}

@media (max-width: 768px) {
    .hero-title-animated {
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
        padding: 0 8px !important;
        margin-bottom: 1.5rem !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        font-weight: 800 !important;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8) !important;
        color: #ffffff !important;
    }
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Flowing gradient text effect */
.welcome-text {
    color: #ffffff;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.gradient-text {
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700, #ffed4e);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 3s ease-in-out infinite;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Ensure all hero content is perfectly centered */
.hero-overlay {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-content {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 800px !important;
}

.hero-slogan {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
}

.slogan-subtitle {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
}

.hero-content h1 {
    font-size: 5.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    line-height: 1.2;
    text-align: center !important;
    color: #ffffff;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    line-height: 1.5;
}

.typing-hero-text {
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    animation: typing-hero 4s steps(50, end);
}

@keyframes typing-hero {
    from { width: 0; }
    to { width: 100%; }
}

.hero-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

.slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 1002;
}

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

.dot.active {
    background: #ffd700;
    transform: scale(1.2);
}

.dot:hover {
    background: #ffd700;
    transform: scale(1.1);
}

/* About Preview Section */
.about-preview {
    padding: 4rem 0;
    background: #000000;
    color: white;
}

.about-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.about-preview > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #e2e8f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Functions and Events Section */
.functions-events {
    background: #000000;
    padding: 4rem 0;
    color: #ffffff;
}

.functions-events h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
    line-height: 1.2;
}

.functions-events h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #ffd700;
    margin: 1rem auto 0;
}

.functions-events p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e2e8f0;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.read-more-button {
    display: block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.read-more-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 20px;
    color: white;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    transform: translateY(20px);
    opacity: 0;
    animation-fill-mode: forwards;
}

.feature:hover {
    transform: translateY(-10px);
    background: #ffd700;
    color: #000000;
}

.feature:nth-child(1) { animation-delay: 0.1s; }
.feature:nth-child(2) { animation-delay: 0.2s; }
.feature:nth-child(3) { animation-delay: 0.3s; }

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Contact Info Section */
.contact-info {
    padding: 4rem 0;
    background: #000000;
    color: white;
}

.contact-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffd700;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: linear-gradient(135deg, #2d5a2d 0%, #1a3d1a 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
}

.contact-card:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-card:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 237, 78, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(45, 90, 45, 0.5);
    border-color: #ffd700;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.contact-content {
    flex: 1;
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
}

.contact-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.contact-row:last-child {
    border-bottom: none;
}

.label {
    font-weight: 600;
    color: #ffd700;
    min-width: 70px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.value {
    color: #ffffff;
    font-size: 0.95rem;
    flex: 1;
    text-align: center;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #f7fafc;
}

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

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

.footer-section a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f7fafc;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #718096;
    color: #e2e8f0;
}

.powered-by {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.powered-by a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.powered-by a:hover {
    color: #ffed4e;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 14px 0; /* compact vertical padding */
        gap: 6px; /* tighter spacing between items */
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
        will-change: transform;
    }

    .nav-menu.active { left: 0; }
    
    /* Fix mobile nav link colors and spacing */
    .nav-link {
        color: #000000 !important;
        padding: 10px 16px; /* compact height */
        display: block;
        border-radius: 10px;
        min-height: 44px; /* comfortable touch target */
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(0,0,0,0.1) !important;
        color: #000000 !important;
        transform: translateY(-2px);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile-friendly accordion for nav dropdowns */
    .nav-menu .dropdown > .nav-link {
        display: flex;
        align-items: center;
        justify-content: center; /* center the label */
        width: 100%;
        padding: 10px 32px; /* compact, room for chevron */
        position: relative;
        text-align: center;
        background: transparent; /* no highlight by default */
    }

    .nav-menu .dropdown > .nav-link::after {
        content: '\25BC'; /* down chevron */
        font-size: 0.8rem;
        transition: transform 0.2s ease;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-menu .dropdown.expanded > .nav-link::after {
        transform: translateY(-50%) rotate(180deg);
    }

    /* Do not highlight Services/Menu when merely expanded or hovered (mobile) */
    .nav-menu .dropdown > .nav-link,
    .nav-menu .dropdown.expanded > .nav-link,
    .nav-menu .dropdown > .nav-link:hover {
        background: transparent !important;
        transform: none !important;
    }

    /* Brief press feedback only */
    .nav-menu .dropdown > .nav-link:active {
        background: rgba(0,0,0,0.08) !important;
    }

    .nav-menu .dropdown-menu {
        position: static;
        background: transparent;
        border: 0;
        border-left: 2px solid #333;
        border-radius: 0;
        padding: 6px 0 6px 10px;
        margin: 6px 8px 0 8px;
        display: none;
        text-align: left;
    }

    .nav-menu .dropdown-menu.show { display: block !important; }

    .nav-menu .dropdown-link {
        padding: 10px 8px;
        display: block;
        border-radius: 6px;
        color: #000000 !important;
        min-height: 44px; /* comfortable touch target */
    }

    .hero,
    .hero-slideshow,
    .slide,
    .hero-img {
        width: 100vw !important;
        height: 100dvh !important; /* full screen on mobile, incl. dynamic viewport */
        min-height: 100dvh !important;
    }

    .hero-content {
        padding: 0 15px;
        max-width: 100%;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-align: center !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 8px;
        white-space: normal;
        max-width: 100%;
        overflow: hidden;
        font-weight: 800;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        color: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .typing-hero-text {
        white-space: normal;
        animation: none;
        width: 100% !important;
        overflow: visible;
    }

    .slogan-main {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        letter-spacing: 0.5px;
    }

    .slogan-subtitle {
        padding: 1rem 1.5rem;
        margin: 0 10px;
    }

    .slogan-subtitle h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .slogan-subtitle p {
        font-size: 1rem;
        line-height: 1.3;
    }

    .hero-cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

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

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

/* Image placeholder styles */
.hero-img {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-weight: 600;
    font-size: 1.2rem;
}

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

.feature {
    animation: fadeInUp 0.6s ease-out;
}

.feature:nth-child(2) {
    animation-delay: 0.2s;
}

.feature:nth-child(3) {
    animation-delay: 0.4s;
}

/* Page Header */
.page-header {
    background: #000000;
    color: #ffffff;
    padding: 3rem 0 2rem;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.welcome-message {
    margin-top: 2rem;
    text-align: center;
}

.welcome-message p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.welcome-message p:last-child {
    margin-bottom: 0;
}

/* Auto-typing animation */
.typing-text {
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3s steps(40, end);
}

#typing-text-1 {
    animation-delay: 0s;
}

#typing-text-2 {
    animation-delay: 3s;
    animation-fill-mode: both;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

/* Mobile responsive fixes for typing text */
@media (max-width: 768px) {
    .typing-text {
        white-space: normal;
        animation: none;
        width: 100% !important;
        overflow: visible;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .welcome-message {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .welcome-message p {
        font-size: 1rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .page-header {
        padding: 4rem 0 3rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
}

/* Services Page */
.services-section {
    padding: 4rem 0;
    background: #000000;
    color: white;
}

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

.service-card {
    background: #2d5a3d;
    color: white;
    padding: 1.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid #1a4d2e;
    animation: fadeInUp 0.6s ease-out;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-image {
    margin: -1.5rem -1.5rem 0 -1.5rem;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    height: 250px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px 20px 0 0;
    background-color: transparent;
    display: block;
}

.service-card:hover {
    transform: translateY(-10px);
    background: #3d6a4d;
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}



/* Menu Page */
.menu-section {
    padding: 2rem 0;
    background: #000000;
    color: white;
}

.menu-categories {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.menu-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: space-between;
}

.dropdown-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border: 2px solid #2d5a3d;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    z-index: 1000;
    display: none;
    transition: all 0.3s ease;
}

.dropdown-menu.show {
    display: block !important;
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #2d5a3d;
}

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

.dropdown-item:hover {
    background: #2d5a3d;
    color: #ffd700;
}

.dropdown-item.active {
    background: #2d5a3d;
    color: #ffd700;
    font-weight: 600;
}

.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
}

/* New Menu Layout Styles */
.menu-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 2px solid #1a4d2e;
}

.category-header h2 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.category-header p {
    color: #e2e8f0;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.menu-items-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.menu-item-large {
    background: #1a4d2e;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
}

.menu-item-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
    background: #2d5a3d;
}

.menu-item-large .menu-item-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.menu-item-large .menu-item-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 70%;
    transition: transform 0.3s ease;
    background-color: #f8f8f8;
    border-radius: 10px;
    transform: scale(1.05);
}

.menu-item-large:hover .menu-item-image img {
    transform: scale(1.05);
}

.menu-item-large .menu-item-content {
    padding: 1.5rem;
    text-align: center;
}

.menu-item-large .menu-item-content h3 {
    color: #ffd700;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.menu-item-large .menu-item-content p {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.menu-category h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    transform: translateY(20px);
    opacity: 0;
    animation-fill-mode: forwards;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }
.menu-item:nth-child(5) { animation-delay: 0.5s; }
.menu-item:nth-child(6) { animation-delay: 0.6s; }

.menu-item:hover {
    transform: translateY(-10px);
}

.menu-item-image {
    height: 300px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-weight: 600;
}

.menu-item-image img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
    background-color: #f8f8f8;
}

.menu-item-content {
    padding: 1.5rem;
}

.menu-item-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.menu-item-content p {
    color: #e2e8f0;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
}

/* Gallery Page */
.gallery-section {
    padding: 4rem 0;
    background: #000000;
    color: white;
}

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

.filter-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Featured Gallery Item */
.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
    height: 400px;
}

.gallery-item.featured img {
    height: 350px;
}

.gallery-item.featured .gallery-overlay {
    padding: 2.5rem 1.5rem 1.5rem;
}

.gallery-item.featured .gallery-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.gallery-item.featured .gallery-overlay p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

/* Enhanced Gallery Overlay Styling */
.gallery-item.featured .gallery-overlay {
    padding: 2.5rem 1.5rem 1.5rem;
}

.gallery-item.featured .gallery-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.gallery-item.featured .gallery-overlay p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    background: linear-gradient(transparent, rgba(0,0,0,0.95));
}

.gallery-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.gallery-overlay p {
    font-size: 0.85rem;
    opacity: 1;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: #000000;
    color: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Contact Page */
.contact-section {
    padding: 4rem 0;
    background: #000000;
    color: white;
}

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

.contact-info-card,
.contact-form-card {
    background: #1a4d2e;
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #2d5a3d;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-info-card:hover,
.contact-form-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    min-width: 50px;
    text-align: center;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: #ffd700;
    color: #000000;
    transform: scale(1.1);
}

.contact-text {
    text-align: center;
    flex: 1;
}

.contact-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    text-align: center;
}

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

.contact-text a {
    color: white;
    text-decoration: none;
    text-align: center;
}

.contact-text a:hover {
    text-decoration: underline;
}

.business-hours h3 {
    margin-bottom: 1rem;
}

.business-hours-card {
    background: #1a4d2e;
    border: 2px solid #2d5a3d;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.business-hours-card:hover {
    background: #2d6a4f;
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.business-hours-card h2 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.hours-list p {
    color: #e2e8f0;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.6;
}

.hours-list p:last-child {
    margin-bottom: 0;
}

.hours-list strong {
    color: #ffd700;
    font-weight: 600;
}

.hours-grid {
    display: grid;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.hours-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(5px);
}

.contact-form {
    color: white;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.9);
    color: #333;
    font-family: inherit;
}

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

.submit-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: #000000;
    color: white;
}

.location-card {
    background: #1a4d2e;
    border: 2px solid #2d5a3d;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.location-card:hover {
    background: #2d6a4f;
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.location-card h2 {
    color: #ffd700;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.map-wrapper {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 15px;
}

.map-info {
    background: #1a4d2e;
    border: 2px solid #2d5a3d;
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.map-info:hover {
    background: #2d6a4f;
    border-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.map-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.map-info p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.map-directions h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.map-directions p {
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.directions-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.direction-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 600;
}

.direction-btn:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    color: #000000;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: #000000;
    color: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #1a4d2e;
    color: white;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid #2d5a3d;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: fadeInUp 0.6s ease-out;
    cursor: pointer;
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.5s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.6s;
}

.faq-item:hover {
    transform: translateY(-10px) scale(1.02);
    background: #2d6a4f;
    border-color: #ffd700;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
    transition: color 0.3s ease;
}

.faq-item:hover h3 {
    color: #ffd700;
}

.faq-item p {
    color: #e2e8f0;
    transition: color 0.3s ease;
}

.faq-item:hover p {
    color: #f7fafc;
}

/* Services Preview Section */
.services-preview {
    padding: 4rem 0;
    background: #000000;
    color: white;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-preview > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #e2e8f0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-preview-card {
    background: #2d5a3d;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 2px solid #1a4d2e;
}

.service-preview-card:hover {
    transform: translateY(-10px);
    background: #3d6a4d;
    border-color: #ffd700;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.service-preview-image {
    height: 200px;
    overflow: hidden;
}

.service-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-preview-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: white;
    transition: color 0.3s ease;
}

.service-preview-card p {
    margin: 0 1.5rem 1.5rem;
    color: #e2e8f0;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service-preview-card:hover h3 {
    color: #ffd700;
}

.service-preview-card:hover p {
    color: #ffd700;
}

.service-link {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    margin: 0 1.5rem 1.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

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

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

.feature-card {
    background: #1a1a1a;
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    background: #ffd700;
    color: #000000;
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Custom Menu Section */
.custom-menu {
    padding: 4rem 0;
    background: #000000;
    color: #ffffff;
    text-align: center;
}

.custom-menu h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.custom-menu p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for new pages */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-categories,
    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .category-btn,
    .filter-btn {
        width: 200px;
    }
    

    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
    
    .directions-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .direction-btn {
        flex: 1;
        min-width: 150px;
    }
    
    /* Gallery Responsive */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-item.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-item.featured img {
        height: 200px;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    .gallery-item.featured .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .gallery-overlay {
        padding: 1rem 0.8rem 0.8rem;
    }
    
    .gallery-item.featured .gallery-overlay h3 {
        font-size: 1.1rem;
    }
    
    .gallery-overlay h3 {
        font-size: 1rem;
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
    }
    
    .gallery-item.featured .gallery-overlay h3 {
        font-size: 1.2rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    }
    
    .gallery-overlay h3 {
        font-size: 1rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    }
    
    .gallery-overlay p {
        font-size: 0.8rem;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    }
}

/* Dropdown Menu - Simple and Direct */
.dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 1rem 0;
    min-width: 250px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: none;
}

/* Show dropdown only when explicitly toggled */
.nav-menu .dropdown-menu.show { display: block !important; }

/* Desktop: restore hover-to-open for dropdowns */
@media (min-width: 769px) {
  .nav-menu .dropdown:hover > .dropdown-menu,
  .dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-link {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-link:hover,
.dropdown-link.active {
    background: #2d2d2d;
    color: #ffd700;
    border-left-color: #ffd700;
}

/* Parent link in dropdown (e.g., Services) */
.dropdown-parent-link {
  font-weight: 600;
  border-left-color: #2d5a3d;
}
.dropdown-parent-link.active { border-left-color: #ffd700; }

/* Service Detail Pages */
.service-detail {
    padding: 4rem 0;
    background: #000000;
    color: white;
}

.service-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: #2d5a3d;
    border-radius: 20px;
    border: 2px solid #1a4d2e;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-hero-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    background-color: #f5f5f5;
}

.service-hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.service-hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #e2e8f0;
}

.service-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.service-feature-card {
    background: #2d5a3d;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #1a4d2e;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-feature-card:hover {
    transform: translateY(-10px);
    background: #3d6a4d;
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.service-feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.service-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
    text-align: center;
}

.service-feature-card ul,
.service-feature-card ol {
    list-style: none;
    padding: 0;
}

.service-feature-card ul li,
.service-feature-card ol li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.service-feature-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.service-feature-card ol li {
    counter-increment: step-counter;
}

.service-feature-card ol li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    background: rgba(255, 215, 0, 0.2);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-image {
    overflow: hidden;
    height: 250px;
    background-color: #f8f8f8;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    background-color: #f8f8f8;
    transition: transform 0.3s ease;
}

.service-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.service-info h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #e2e8f0;
}

.service-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

.service-info ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-info ul li {
    margin-bottom: 0.5rem;
    color: #e2e8f0;
}

.service-info ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-info ol li {
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.service-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: #ffd700;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border: 2px solid #ffd700;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.secondary-button:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
}

/* Responsive for service detail pages */
@media (max-width: 768px) {
    .service-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .service-hero-content h2 {
        font-size: 2rem;
    }
    
    .service-hero-cta {
        flex-direction: column;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-info h2 {
        font-size: 2rem;
    }
    
    .service-cta {
        flex-direction: column;
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(0,0,0,0.95);
        border: 1px solid #333;
        border-radius: 8px;
        padding: 0.5rem 0;
        margin-top: 1rem;
        display: none;
        z-index: 1001;
    }
    
    .dropdown-menu.show {
        display: block !important;
        animation: slideDown 0.3s ease-out;
    }
    
    .dropdown-link {
        color: #ffffff !important;
        padding: 0.75rem 1.5rem;
        display: block;
        text-decoration: none;
        font-size: 1rem;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .dropdown-link:last-child {
        border-bottom: none;
    }
    
    .dropdown-link:hover {
        background: rgba(255,215,0,0.2);
        color: #ffd700 !important;
        transform: translateX(5px);
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* New Contact Layout Styles */
.contact-hero {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000000;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero-content p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-info-panel,
.hours-panel {
    background: #2d5a3d;
    border-radius: 20px;
    border: 2px solid #1a4d2e;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-info-panel:hover,
.hours-panel:hover {
    transform: translateY(-8px);
    background: #3d6a4d;
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.info-header,
.hours-header {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.info-header h3,
.hours-header h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    color: #ffd700;
}

.info-header p,
.hours-header p {
    margin: 0;
    color: #e2e8f0;
    font-size: 0.9rem;
}

.contact-methods {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    border-radius: 12px;
    background: #1a4d2e;
    border: 1px solid #2d5a3d;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #2d6a4f;
    border-color: #ffd700;
    transform: translateX(10px);
}

.method-icon {
    font-size: 2.2rem;
    margin-right: 1.2rem;
    min-width: 50px;
    text-align: center;
    background: rgba(255,255,255,0.15);
    padding: 0.8rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
    background: #ffd700;
    color: #000000;
    transform: scale(1.15);
}

.method-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #e2e8f0;
    font-weight: 600;
}

.method-content p {
    margin: 0;
    color: #ffffff;
    line-height: 1.4;
}

.method-content a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-content a:hover {
    color: #ffd700;
}

.hours-list {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #1a4d2e;
    border: 1px solid #2d5a3d;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hour-item:hover {
    background: #2d6a4f;
    border-color: #ffd700;
    transform: translateX(8px);
}

.hour-item .day {
    font-weight: 600;
    color: #e2e8f0;
    font-size: 0.95rem;
}

.hour-item .time {
    color: #ffd700;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsive for new contact layout */
@media (max-width: 768px) {
    .contact-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-hero-content h2 {
        font-size: 2.2rem;
    }
    
    .contact-info-panel,
    .hours-panel {
        margin-bottom: 1rem;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.whatsapp-icon {
    font-size: 1.5rem;
}

.whatsapp-text {
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        padding: 12px 16px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-icon {
        font-size: 1.8rem;
    }

    .contact-info {
        padding: 3rem 0;
    }

    .contact-info h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .contact-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
        font-size: 1.2rem;
    }

    .contact-content {
        width: 100%;
        text-align: center;
    }

    .contact-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .contact-details {
        width: 100%;
        text-align: center;
    }

    .contact-row {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: center;
        align-items: center;
    }

    .contact-row:last-child {
        border-bottom: none;
    }

    .label {
        min-width: auto;
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
        text-align: center;
    }

    .value {
        font-size: 1rem;
        text-align: center;
    }

    .functions-events h2 {
        font-size: 2rem;
    }

    .functions-events p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .read-more-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
} 

/* Full Screen Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 3000000; /* above fixed header and dropdown portal */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    width: 90%;
    height: 90%;
    max-width: 1200px;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #ffd700;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 3000001;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 215, 0, 0.25);
    color: #fff;
}

/* Modal navigation arrows */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background: rgba(255, 215, 0, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #000;
    font-weight: 700;
    transition: all 0.3s ease;
    z-index: 3000001;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.modal-nav:hover { transform: translateY(-50%) scale(1.08); background: #ffd700; }
.modal-nav.prev { left: 16px; }
.modal-nav.next { right: 16px; }

/* Gallery item cursor pointer */
.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* Loading animation for images */
.gallery-item img {
    transition: opacity 0.3s ease;
}

.gallery-item img[loading] {
    opacity: 0.7;
}

.gallery-item img:not([loading]) {
    opacity: 1;
} 

/* Scroll-triggered animations */
.animate-from-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.animate-from-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.animate-from-right-to-center {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.animate-from-right.animate-in,
.animate-from-left.animate-in,
.animate-from-right-to-center.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Gallery Showcase Section */
.gallery-showcase {
    padding: 80px 0;
    background: transparent;
    color: white;
}

.gallery-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffd700;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-showcase > .container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #ffffff;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.gallery-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-showcase-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.gallery-showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

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

.gallery-showcase-cta {
    text-align: center;
    margin-top: 40px;
}

.gallery-showcase-cta .cta-button {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.gallery-showcase-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

/* Responsive design for gallery showcase */
@media (max-width: 768px) {
    .gallery-showcase {
        padding: 60px 0;
    }
    
    .gallery-showcase h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .gallery-showcase > .container > p {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .gallery-showcase-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-showcase-item .gallery-overlay h3 {
        font-size: 1.1rem;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffd700;
    font-weight: 600;
}

.testimonial-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.8) translateX(100px);
    transition: all 0.8s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 2;
}

.testimonial-slide.prev {
    opacity: 0.2;
    transform: scale(0.6) translateX(-150px);
    z-index: 1;
}

.testimonial-slide.next {
    opacity: 0.2;
    transform: scale(0.6) translateX(150px);
    z-index: 1;
}

.testimonial-image {
    width: 280px;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 3px solid #ffd700;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
    background: #2a2a2a;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.testimonial-image::before {
    content: "🔍 Click to enlarge";
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffd700;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

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

.testimonial-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
    cursor: pointer;
}

.testimonial-slide.active .testimonial-img {
    transform: scale(1.1);
}

.testimonial-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffd700;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 400;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

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

.testimonial-dot.active {
    background: #ffd700;
    transform: scale(1.2);
}

.testimonial-dot:hover {
    background: #ffd700;
    transform: scale(1.1);
}

/* Navigation Arrows */
.testimonial-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.testimonial-nav-arrow:hover {
    background: #ffd700;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.testimonial-nav-arrow.prev {
    left: 20px;
}

.testimonial-nav-arrow.next {
    right: 20px;
}



.testimonial-nav-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.testimonial-nav-arrow:disabled:hover {
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.9);
}

/* Pause animation on hover */
.testimonial-slider:hover .testimonial-slide {
    transition-duration: 0.3s;
}

/* Responsive design for testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 50px 0;
    }
    
    .testimonials h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .testimonial-slider {
        height: 600px;
        max-width: 100%;
    }
    
    .testimonial-image {
        width: 250px;
        height: 250px;
    }
    
    .testimonial-content h3 {
        font-size: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
        padding: 12px 18px;
        max-width: 90%;
    }
    
    .testimonial-nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .testimonial-nav-arrow.prev {
        left: 10px;
    }
    
    .testimonial-nav-arrow.next {
        right: 10px;
    }
}

/* Testimonial Image Modal */
.testimonial-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.testimonial-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 95%;
    max-height: 95%;
    border-radius: 15px;
    border: 3px solid #ffd700;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    background: #2a2a2a;
    overflow: hidden;
    min-width: 400px;
    min-height: 400px;
}

.testimonial-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(1.2) contrast(1.2);
}

.testimonial-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #ffd700;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid #ffd700;
}

.testimonial-modal-close:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.gallery-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 95%;
    max-height: 95%;
    border-radius: 15px;
    border: 3px solid #ffd700;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    background: #2a2a2a;
    overflow: hidden;
    min-width: 400px;
    min-height: 400px;
}

.gallery-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(1.2) contrast(1.2);
}

.gallery-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #ffd700;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid #ffd700;
}

.gallery-modal-close:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 120px 0 80px;
    background: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thank-you-card {
    background: #2d5016;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    color: white;
}

.thank-you-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
}

.thank-you-icon {
    margin-bottom: 30px;
    animation: bounceIn 0.8s ease-out;
}

.thank-you-card h1 {
    color: #ffd700;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.thank-you-message {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.steps-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.step-number {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.contact-info-card h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
    text-decoration: none;
    color: #ffffff;
}

.contact-icon {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.navigation-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
    text-align: center;
    min-width: 150px;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border-color: #ffd700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    color: #000;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: #333;
    border-color: #ffd700;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    text-decoration: none;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Responsive for Thank You Page */
@media (max-width: 768px) {
    .thank-you-section {
        padding: 100px 0 60px;
    }
    
    .thank-you-card {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    .thank-you-card h1 {
        font-size: 2.5rem;
    }
    
    .thank-you-message {
        font-size: 1.1rem;
    }
    
    .steps-grid {
        gap: 20px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .step-number {
        align-self: center;
    }
    
    .navigation-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .contact-options {
        gap: 10px;
    }
    
    .contact-option {
        padding: 12px 15px;
    }
}

/* Welcome tagline */
.welcome-tagline {
    color: #ffd700; /* bright yellow */
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.12em;
    font-size: 1.35rem;
    margin-top: 0.5rem;
    text-align: center;
    text-shadow: 0 2px 6px rgba(0,0,0,0.85), 0 0 12px rgba(255,215,0,0.9), 0 0 28px rgba(255,215,0,0.55);
    display: inline-block;
    transform-origin: center;
    animation: pulse-welcome 2.4s ease-in-out infinite;
    will-change: transform;
}

@keyframes pulse-welcome {
  0%, 100% {
    transform: scale(1);
    text-shadow: 0 2px 6px rgba(0,0,0,0.85), 0 0 10px rgba(255,215,0,0.85), 0 0 24px rgba(255,215,0,0.45);
  }
  50% {
    transform: scale(1.08);
    text-shadow: 0 3px 8px rgba(0,0,0,0.9), 0 0 16px rgba(255,215,0,1), 0 0 36px rgba(255,215,0,0.7);
  }
}

/* Modal */

/* (Removed conflicting mobile dropdown overlay overrides to keep simple inline accordion behavior) */

/* Global responsive safeguards */
img, video, canvas, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.nav-link, .dropdown-link {
  white-space: normal;
  word-break: break-word;
}

/* Mobile layout hardening */
@media (max-width: 768px) {
  .container { padding-left: 16px; padding-right: 16px; }

  /* Ensure the drawer never overflows viewport */
  .nav-menu {
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 99999;
  }

  /* Keep dropdown panel within drawer width */
  .nav-menu .dropdown-menu { margin-right: 8px; }

  /* Reduce hero height on small screens to avoid overlaps with browser UI */
  /* Full-screen hero on mobile */
  .hero, .hero-slideshow, .slide { height: 100dvh; min-height: 100dvh; }
  .hero-img { width: 100%; height: 100dvh; min-height: 100dvh; object-fit: cover; }
}

/* (Removed deprecated portal styles) */
/* Portal for mobile dropdown to show above content and outside drawer/container */
.nav-dropdown-portal {
  position: fixed;
  inset: 0;
  z-index: 3000000; /* above header and drawer */
  pointer-events: none; /* only dropdown captures */
}
.nav-dropdown-portal .dropdown-menu {
  position: absolute !important;
  left: 8px;
  right: 8px;
  top: var(--portal-top, 80px);
  width: auto !important;
  margin: 0 !important;
  background: rgba(0,0,0,0.95);
  border: 1px solid #333;
  border-left: 3px solid #2d5a3d;
  border-radius: 10px;
  padding: 8px 10px;
  max-height: calc(100dvh - var(--portal-top, 80px) - 12px);
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  pointer-events: auto;
  z-index: 3000001;
}