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

        :root {
            --forest-green: #005532;
            --golden-yellow: #CFAF53;
            --light-gold: #E8D084;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --text-dark: #2c3e50;
            --shadow-light: 0 4px 20px rgba(0, 85, 50, 0.1);
            --shadow-medium: 0 8px 30px rgba(0, 85, 50, 0.15);
            --transition: all 0.3s ease;
        }

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

        /* Preloader Styles */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--forest-green), rgba(0, 85, 50, 0.95));
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s ease;
            backdrop-filter: blur(2px);
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .preloader-content {
            text-align: center;
            color: var(--white);
            animation: fadeInUp 0.8s ease-out;
        }

        .crown-container {
            position: relative;
            margin-bottom: 2rem;
        }

        .crown-spinner {
            font-size: 5rem;
            color: var(--golden-yellow);
            animation: spin 3s linear infinite, pulse 2s ease-in-out infinite;
            filter: drop-shadow(0 0 20px rgba(207, 175, 83, 0.5));
            position: relative;
            z-index: 2;
        }

        .crown-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(207, 175, 83, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            animation: glow 2s ease-in-out infinite alternate;
            z-index: 1;
        }

        .orbiting-dots {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            z-index: 1;
        }

        .orbiting-dot {
            position: absolute;
            width: 8px;
            height: 8px;
            background: var(--golden-yellow);
            border-radius: 50%;
            animation: orbit 3s linear infinite;
            filter: drop-shadow(0 0 5px rgba(207, 175, 83, 0.5));
        }

        .orbiting-dot:nth-child(1) { animation-delay: 0s; }
        .orbiting-dot:nth-child(2) { animation-delay: 0.5s; }
        .orbiting-dot:nth-child(3) { animation-delay: 1s; }
        .orbiting-dot:nth-child(4) { animation-delay: 1.5s; }
        .orbiting-dot:nth-child(5) { animation-delay: 2s; }
        .orbiting-dot:nth-child(6) { animation-delay: 2.5s; }

        @keyframes orbit {
            0% { transform: rotate(0deg) translateX(60px) rotate(0deg); }
            100% { transform: rotate(360deg) translateX(60px) rotate(-360deg); }
        }

        .loading-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin: 1.5rem 0;
        }

        .dot {
            width: 8px;
            height: 8px;
            background: var(--golden-yellow);
            border-radius: 50%;
            animation: bounce 1.4s ease-in-out infinite both;
        }

.dot:nth-child(1) { animation-delay: -0.32s; }
.dot:nth-child(2) { animation-delay: -0.16s; }
.dot:nth-child(3) { animation-delay: 0s; }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--forest-green);
            z-index: 1000;
            padding: 1rem 0;
            box-shadow: var(--shadow-medium);
        }

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

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--golden-yellow);
            text-decoration: none;
            transition: var(--transition);
        }

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

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

        .nav-menu a {
            color: var(--white);
            text-decoration: none;
            font-weight: 400;
            position: relative;
            transition: var(--transition);
        }

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

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

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

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

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: var(--white);
            margin: 3px 0;
            transition: var(--transition);
        }

        /* Breadcrumb */
        .breadcrumb {
            background: var(--light-gray);
            padding: 1rem 0;
        }

        .breadcrumb-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .breadcrumb-nav a {
            color: var(--forest-green);
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumb-nav a:hover {
            color: var(--golden-yellow);
        }

        .breadcrumb-nav span {
            color: var(--text-dark);
        }

        /* Page Header */
        .page-header {
            height: 50vh;
            background: linear-gradient(135deg, rgba(0, 85, 50, 0.8), rgba(207, 175, 83, 0.3)),
                        url(image/5872893540332325918.jpg);
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            margin-top: 80px;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, 
                rgba(0, 85, 50, 0.9) 0%, 
                rgba(0, 85, 50, 0.7) 50%, 
                rgba(207, 175, 83, 0.5) 100%);
            z-index: 1;
        }

        .page-header-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 2rem;
        }

        .page-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .page-subtitle {
            font-size: 1.3rem;
            color: var(--light-gold);
            font-style: italic;
        }

        /* Breadcrumb */
        .breadcrumb {
            background: var(--light-gray);
            padding: 1rem 0;
        }

        .breadcrumb-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .breadcrumb-nav a {
            color: var(--forest-green);
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumb-nav a:hover {
            color: var(--golden-yellow);
        }

        .breadcrumb-nav span {
            color: var(--text-dark);
        }

        /* Main Content */
        .main-content {
            padding: 6rem 0;
            background: var(--white);
        }

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

        /* Story Section */
        .story-section {
            margin-bottom: 6rem;
        }

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

        .story-text {
            opacity: 0;
            transform: translateX(-30px);
            animation: slideInLeft 0.8s ease forwards;
        }

        .story-image {
            opacity: 0;
            transform: translateX(30px);
            animation: slideInRight 0.8s ease forwards;
            animation-delay: 0.2s;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--forest-green);
            margin-bottom: 2rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--golden-yellow);
        }

        .story-paragraph {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .story-image-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-medium);
            height: 400px;
            background: linear-gradient(135deg, var(--forest-green), var(--golden-yellow));
        }

        .story-image-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, 
                rgba(0, 85, 50, 0.3) 0%, 
                rgba(207, 175, 83, 0.3) 100%);
            z-index: 1;
        }

        .story-image-container::after {
            content: 'Zafike Royal Hotel';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            z-index: 2;
            font-family: 'Playfair Display', serif;
        }

        /* Values Section */
        .values-section {
            background: var(--light-gray);
            padding: 6rem 0;
            margin: 6rem -2rem;
        }

        .values-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

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

        .value-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow-light);
            text-align: center;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

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

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-strong);
        }

        .value-icon {
            font-size: 3rem;
            color: var(--golden-yellow);
            margin-bottom: 1.5rem;
        }

        .value-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--forest-green);
            margin-bottom: 1rem;
        }

        .value-description {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-dark);
        }

        /* History Timeline */
        .timeline-section {
            margin: 6rem 0;
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 4rem auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 100%;
            background: var(--golden-yellow);
        }

        .timeline-item {
            position: relative;
            margin: 3rem 0;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .timeline-item:nth-child(1) { animation-delay: 0.1s; }
        .timeline-item:nth-child(2) { animation-delay: 0.2s; }
        .timeline-item:nth-child(3) { animation-delay: 0.3s; }
        .timeline-item:nth-child(4) { animation-delay: 0.4s; }

        .timeline-content {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: var(--shadow-light);
            width: calc(50% - 2rem);
            position: relative;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-left: auto;
            margin-right: 4rem;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 4rem;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 20px;
            width: 0;
            height: 0;
            border: 10px solid transparent;
        }

        .timeline-item:nth-child(odd) .timeline-content::before {
            right: -20px;
            border-left-color: var(--white);
        }

        .timeline-item:nth-child(even) .timeline-content::before {
            left: -20px;
            border-right-color: var(--white);
        }

        .timeline-year {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            background: var(--forest-green);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 600;
            top: 0;
            z-index: 2;
        }

        .timeline-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--forest-green);
            margin-bottom: 0.5rem;
        }

        .timeline-description {
            color: var(--text-dark);
            line-height: 1.6;
        }

        /* Team Section */
        .team-section {
            background: var(--light-gray);
            padding: 6rem 0;
            margin: 6rem -2rem;
        }

        .team-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

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

        .team-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

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

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

        .team-image {
            height: 250px;
            background: linear-gradient(135deg, var(--forest-green), var(--golden-yellow));
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .team-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, 
                rgba(0, 85, 50, 0.2) 0%, 
                rgba(207, 175, 83, 0.2) 100%);
        }

        .team-placeholder {
            color: white;
            font-size: 4rem;
            z-index: 1;
        }

        .team-info {
            padding: 2rem;
            text-align: center;
        }

        .team-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            color: var(--forest-green);
            margin-bottom: 0.5rem;
        }

        .team-position {
            color: var(--golden-yellow);
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .team-description {
            color: var(--text-dark);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* CTA Section */
        .cta-section {
            background: var(--forest-green);
            color: var(--white);
            padding: 6rem 0;
            text-align: center;
            margin: 6rem -2rem 0;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .cta-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

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

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            justify-content: center;
            font-size: 1.1rem;
        }

        .btn-primary {
            background: var(--golden-yellow);
            color: var(--forest-green);
        }

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


        /* Footer */
.footer {
    background: var(--forest-green);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    color: var(--golden-yellow);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--light-gold);
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-description {
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--golden-yellow);
    color: var(--forest-green);
    transform: translateY(-2px);
}

.footer-title {
    color: var(--golden-yellow);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-links a.active {
    opacity: 1;
    color: var(--golden-yellow);
}

.contact-info {
    space-y: 1rem;
}

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

.contact-item i {
    color: var(--golden-yellow);
    width: 16px;
    margin-top: 2px;
}

.contact-item span {
    opacity: 0.9;
    line-height: 1.5;
}

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

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

.footer-bottom-content p {
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--golden-yellow);
}

/* Footer Responsive Styles */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 1rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
}

        

/* Animations */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

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

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(60px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(60px) rotate(-360deg); }
}

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

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

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

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: var(--forest-green); /* or any background */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 999;
        gap: 2rem;
        transition: right 0.3s ease;
    }

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

   /* Animate to "X" */
.mobile-menu.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

            .mobile-menu {
                display: flex;
            }


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

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

            .story-image {
                order: -1;
            }

            .values-section,
            .team-section {
                margin: 3rem -1rem;
            }

            .timeline::before {
                left: 20px;
            }

            .timeline-content {
                width: calc(100% - 4rem);
                margin-left: 4rem !important;
                margin-right: 0 !important;
            }

            .timeline-content::before {
                left: -20px !important;
                border-right-color: var(--white) !important;
                border-left-color: transparent !important;
            }

            .timeline-year {
                left: 20px;
                transform: none;
            }

            .cta-section {
                margin: 3rem -1rem 0;
            }
        }

        @media (max-width: 480px) {
            .page-title {
                font-size: 2rem;
            }

            .container {
                padding: 0 1rem;
            }

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

            .cta-title {
                font-size: 2rem;
            }
        }