/* Modern UI Improvements */
:root {
    --primary-gradient: linear-gradient(135deg, #c9a96e 0%, #b8956a 100%);
    --secondary-gradient: linear-gradient(135deg, #f8f6f0 0%, #eae8e0 100%);
    --shadow-light: 0 4px 20px rgba(201, 169, 110, 0.15);
    --shadow-medium: 0 8px 30px rgba(201, 169, 110, 0.2);
    --shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.1);
    --border-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #b8956a 0%, #a68660 100%);
}

/* Enhanced Navigation */
.navbar {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    transition: var(--transition);
}

.navbar:hover {
    box-shadow: var(--shadow-light);
}

.nav-link {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link:hover {
    transform: translateY(-2px);
    color: #c9a96e;
}

/* Enhanced Hero Section with Advanced Animations */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        rgba(201, 169, 110, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(201, 169, 110, 0.1) 100%);
    z-index: 1;
    animation: overlayPulse 8s ease-in-out infinite;
}

.hero-slider {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    position: relative;
    margin: 0 auto;
    z-index: 2;
}

.slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transition: all 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide.prev {
    transform: translateX(-100%) scale(0.95);
    opacity: 0;
    z-index: 0;
}

.slide.next {
    transform: translateX(100%) scale(0.95);
    opacity: 0;
    z-index: 0;
}

.slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    transform: scale(1.15) rotate(1deg);
    transition: all 15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.75) contrast(1.15) saturate(1.1);
}

.slide.active img {
    transform: scale(1) rotate(0deg);
    filter: brightness(0.8) contrast(1.1) saturate(1.05);
}

/* Enhanced Slide Content with Advanced Animations */
.slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100%;
    max-width: 700px;
    z-index: 2;
    text-align: center;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%);
    border-radius: var(--border-radius);
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translate(-50%, -50%) translateY(50px) scale(0.9);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active .slide-content {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0) scale(1);
    transition-delay: 0.5s;
    animation: contentFloating 6s ease-in-out infinite;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(201, 169, 110, 0.3) 0%,
        rgba(184, 149, 106, 0.2) 100%);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0;
    animation: gradientPulse 3s ease-in-out infinite;
}

.slide-content h1 {
    color: white;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: none;
}

.slide.active .slide-content h1 {
    animation: slideInFromTop 1s ease-out 0.8s forwards;
}

.slide-content p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: none;
}

.slide.active .slide-content p {
    animation: slideInFromBottom 1s ease-out 1s forwards;
}

.cta-btn {
    background: var(--primary-gradient);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.4);
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}

.slide.active .cta-btn {
    animation: buttonAppear 1s ease-out 1.2s forwards;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.cta-btn:hover::after {
    width: 300px;
    height: 300px;
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(201, 169, 110, 0.6);
}

/* Enhanced Slider Dots with Advanced Animations */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 3;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4) 100%);
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

/* Enhanced Visual Feedback for Dots */
.dot {
    position: relative;
    overflow: visible;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    border: 2px solid transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.dot:hover::before {
    transform: translate(-50%, -50%) scale(1);
    border-color: rgba(201, 169, 110, 0.6);
    animation: ripple 0.6s ease-out;
}

.dot.active::before {
    transform: translate(-50%, -50%) scale(1.2);
    border-color: rgba(201, 169, 110, 0.8);
    animation: activeRipple 2s ease-in-out infinite;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@keyframes activeRipple {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.4;
    }
}

/* Enhanced Slider Counter with Icons */
.slider-counter {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

.slider-counter::before {
    content: '\f03a';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    opacity: 0.8;
}

.slider-counter:hover {
    background: linear-gradient(135deg,
        rgba(201, 169, 110, 0.9) 0%,
        rgba(184, 149, 106, 0.8) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Enhanced overlay animation */
@keyframes overlayPulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

/* Parallax Effect for Images */
@keyframes imageParallax {
    0% {
        transform: scale(1.15) rotate(1deg) translateY(0);
    }
    50% {
        transform: scale(1.05) rotate(0.5deg) translateY(-10px);
    }
    100% {
        transform: scale(1) rotate(0deg) translateY(0);
    }
}

/* Content Floating Animation */
@keyframes contentFloating {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0) scale(1);
    }
    25% {
        transform: translate(-50%, -50%) translateY(-5px) scale(1.01);
    }
    50% {
        transform: translate(-50%, -50%) translateY(0) scale(1);
    }
    75% {
        transform: translate(-50%, -50%) translateY(5px) scale(0.99);
    }
}

/* Enhanced About Section */
.about {
    background: var(--secondary-gradient);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(201, 169, 110, 0.05) 100%);
}

/* About Section Image Optimization - Enhanced */
.about-image {
    flex: 1;
    position: relative;
    min-height: 450px;
    max-width: 600px;
}

.about-image .image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
}

.about-image .image-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(201, 169, 110, 0.25);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    filter: brightness(1) contrast(1.05) saturate(1.1);
}

.about-image .image-container:hover img {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
}

.about-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        transparent 100%);
    padding: 30px 25px 25px;
    transform: translateY(100%);
    transition: var(--transition);
}

.about-image .image-container:hover .image-overlay {
    transform: translateY(0);
}

.about-image .overlay-content h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.about-image .overlay-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Improved About Content Layout */
.about-content {
    display: flex;
    align-items: stretch;
    gap: 60px;
    margin-bottom: 60px;
}

.about-text {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Add design element */
.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--primary-gradient);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.1;
    transition: var(--transition);
}

.about-image:hover::before {
    opacity: 0.2;
    transform: scale(1.02);
}

/* Enhanced About Text Styling */
.about-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transition: var(--transition);
}

.about-text h2:hover::after {
    width: 100px;
    box-shadow: 0 2px 8px rgba(201, 169, 110, 0.4);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    position: relative;
    padding-right: 1rem;
}

.about-text p::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-gradient), transparent);
    border-radius: 2px;
    opacity: 0.3;
}

.about-text p:first-of-type {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2c2c2c;
}

.about-text p:first-of-type::before {
    opacity: 0.6;
}

/* Responsive text styling */
@media (max-width: 768px) {
    .about-text h2 {
        font-size: 2rem;
        text-align: center;
    }

    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-text h2:hover::after {
        width: 80px;
    }

    .about-text p {
        font-size: 1rem;
        text-align: center;
        padding-right: 0;
    }

    .about-text p::before {
        display: none;
    }

    .about-text p:first-of-type {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-text p:first-of-type {
        font-size: 1rem;
    }
}

/* About Statistics Section */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: var(--secondary-gradient);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.1), transparent);
    transition: var(--transition);
}

.stat-item:hover::before {
    left: 100%;
    transition: left 0.6s ease;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #c9a96e;
    margin-bottom: 0.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(201, 169, 110, 0.1);
}

.stat-label {
    font-size: 1rem;
    color: #2c2c2c;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Call-to-Action Section */
.about-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--primary-gradient);
    border-radius: var(--border-radius);
    color: white;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    animation: grain-move 20s linear infinite;
}

@keyframes grain-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50px, -50px); }
}

.about-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 180px;
    justify-content: center;
}

.cta-btn.primary {
    background: white;
    color: #c9a96e;
    border-color: white;
}

.cta-btn.primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .about-cta {
        padding: 2rem 1.5rem;
        margin-top: 1.5rem;
    }

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

    .about-cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .about-cta h3 {
        font-size: 1.4rem;
    }

    .about-cta p {
        font-size: 0.95rem;
    }
}

/* Enhanced Categories */
.categories {
    background: linear-gradient(135deg, #f8f6f0 0%, white 100%);
    padding: 4rem 0;
}

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

.category-card {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    height: 100%;
}

.category-image-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    min-height: 260px;
    max-height: 350px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: #eee;
}

.category-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 1.2rem 1.2rem 0 0;
    transition: transform 0.4s cubic-bezier(.4,2,.6,1);
}

.category-card:hover .category-image-wrapper img {
    transform: scale(1.07);
}

.category-overlay {
    padding: 1.5rem 1rem 1.2rem 1rem;
    text-align: center;
    background: #fff;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-overlay h3 {
    font-size: 1.35rem;
    color: #b8956a;
    margin-bottom: 0.5rem;
}

.category-overlay p {
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
}

.category-btn {
    background: #b8956a;
    color: #fff;
    border: none;
    border-radius: 2rem;
    padding: 0.7rem 2.2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    margin-top: auto;
}

.category-btn:hover {
    background: #a07c4e;
}

.category-image-wrapper::after {
    content: none;
}
.category-overlay {
    background: #fff;
    position: static;
    z-index: 1;
}
.category-card {
    overflow: hidden;
}

/* Enhanced Payment Methods */
.payment-methods {
    background: white;
    position: relative;
}

.payment-item {
    background: var(--secondary-gradient);
    border-radius: 15px;
    padding: 1.5rem;
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 110, 0.1);
    text-align: center;
}

.payment-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-medium);
    border-color: rgba(201, 169, 110, 0.3);
}

.payment-item img {
    transition: var(--transition);
    filter: grayscale(0.3);
}

.payment-item:hover img {
    filter: grayscale(0);
    transform: scale(1.1);
}

/* Enhanced Contact Section */
.contact {
    background: var(--secondary-gradient);
}

.contact-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    transition: var(--transition);
    border: 1px solid rgba(201, 169, 110, 0.1);
    margin-bottom: 1rem;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-light);
    border-color: rgba(201, 169, 110, 0.3);
}

.contact-item i {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-map iframe {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--primary-gradient);
}

/* Enhanced Logo and Icons Responsiveness */
.logo {
    max-width: 100%;
    height: auto;
    max-height: 50px;
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

/* Social Icons Responsive */
.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links i {
    font-size: 18px;
}

/* Contact Icons */
.contact-item i {
    font-size: 20px;
    margin-left: 10px;
    flex-shrink: 0;
}

/* Feature Icons */
.feature i {
    font-size: 24px;
    margin-left: 10px;
}

/* Enhanced Animations */
@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateY(-80px) scale(0.8);
        filter: blur(10px);
    }
    60% {
        opacity: 0.8;
        transform: translateY(10px) scale(1.05);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.8);
        filter: blur(10px);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.05);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes buttonAppear {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.5) rotateX(45deg);
        filter: blur(10px);
    }
    70% {
        opacity: 0.9;
        transform: translateY(-5px) scale(1.1) rotateX(-5deg);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
        filter: blur(0);
    }
}

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

/* Section reveal animation */
.section-title {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

/* Enhanced section titles */
.section-title {
    position: relative;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

/* Enhanced About Features Section */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.feature {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.05), transparent);
    transition: var(--transition);
}

.feature:hover::before {
    left: 100%;
    transition: left 0.8s ease;
}

.feature:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-medium);
    border-color: rgba(201, 169, 110, 0.25);
}

.feature i {
    color: #c9a96e;
    font-size: 2rem;
    margin-left: 1rem;
    min-width: 40px;
    background: var(--secondary-gradient);
    padding: 0.8rem;
    border-radius: 12px;
    transition: var(--transition);
    flex-shrink: 0;
}

.feature:hover i {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.feature span {
    font-weight: 600;
    color: #2c2c2c;
    font-size: 1rem;
    line-height: 1.5;
    flex: 1;
}

/* Responsive adjustments for features */
@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }

    .feature {
        padding: 1.2rem;
    }

    .feature i {
        font-size: 1.6rem;
        padding: 0.6rem;
        margin-left: 0.8rem;
        min-width: 35px;
    }

    .feature span {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .feature {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .feature i {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Disable complex animations and transitions on mobile */
    .mobile-device * {
        animation-duration: 0.3s !important;
        transition-duration: 0.3s !important;
    }

    .mobile-device .slide img {
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }

    .mobile-device .slide-content {
        animation: none !important;
        transition: opacity 0.3s ease !important;
    }

    /* Force GPU acceleration for smooth scrolling */
    .mobile-device {
        -webkit-overflow-scrolling: touch;
        transform: translate3d(0, 0, 0);
    }

    /* Optimize images for mobile */
    .mobile-device img {
        image-rendering: auto;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    /* Prevent zoom on input focus */
    input, select, textarea {
        font-size: 16px !important;
    }

    /* Improve touch targets */
    .mobile-device a,
    .mobile-device button,
    .mobile-device .category-card,
    .mobile-device .nav-link {
        min-height: 44px !important;
        min-width: 44px !important;
    }

    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        .mobile-device * {
            animation: none !important;
            transition: none !important;
        }
    }
}

/* Fix viewport issues */
@viewport {
    width: device-width;
    zoom: 1;
}

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

/* Mobile Safari fixes */
@supports (-webkit-touch-callout: none) {
    .mobile-device .hero {
        min-height: -webkit-fill-available !important;
    }

    .mobile-device .slide,
    .mobile-device .slide img {
        height: -webkit-fill-available !important;
    }
}

/* Arabic Text Optimization for Slider */
.slide-content h1 {
    /* Arabic text stability */
    font-family: 'Cairo', 'Tajawal', Arial, sans-serif !important;
    direction: rtl !important;
    unicode-bidi: bidi-override !important;
    text-align: center !important;

    /* Prevent text distortion */
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;

    /* Improved Arabic rendering */
    font-feature-settings: "liga" 1, "kern" 1, "calt" 1;
    font-variant-ligatures: common-ligatures;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* Stable positioning */
    position: relative;
    z-index: 10;

    /* Remove any text animations that might break Arabic */
    animation: none !important;
    transition: opacity 0.8s ease, transform 0.8s ease !important;
}

.slide-content p {
    /* Arabic text stability */
    font-family: 'Cairo', 'Tajawal', Arial, sans-serif !important;
    direction: rtl !important;
    unicode-bidi: bidi-override !important;
    text-align: center !important;

    /* Improved line height for Arabic */
    line-height: 1.8 !important;

    /* Prevent text distortion */
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;

    /* Improved Arabic rendering */
    font-feature-settings: "liga" 1, "kern" 1, "calt" 1;
    font-variant-ligatures: common-ligatures;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* Stable positioning */
    position: relative;
    z-index: 10;

    /* Remove any text animations that might break Arabic */
    animation: none !important;
    transition: opacity 0.8s ease, transform 0.8s ease !important;
}

/* Force Arabic Text Stability - Override All Animations */
.slide-content h1,
.slide-content p,
.slide.active .slide-content h1,
.slide.active .slide-content p {
    /* Force stable Arabic rendering */
    transform: none !important;
    animation: none !important;
    transition: opacity 0.8s ease !important;

    /* Prevent text shifting */
    position: relative !important;
    display: block !important;
    width: 100% !important;

    /* Ensure proper Arabic font rendering */
    font-synthesis: none !important;
    text-size-adjust: 100% !important;
    -webkit-text-size-adjust: 100% !important;

    /* Prevent text selection issues */
    user-select: none !important;
    -webkit-user-select: none !important;

    /* Force hardware acceleration for stability */
    will-change: opacity !important;
    transform: translate3d(0, 0, 0) !important;
}

/* Override existing keyframes to prevent text movement */
@keyframes slideInFromTop {
    0%, 100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInFromBottom {
    0%, 100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes buttonAppear {
    0%, 100% {
        opacity: 1;
        transform: none;
    }
}

/* Stable slide content positioning */
.slide-content {
    /* Ensure stable positioning */
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;

    /* Prevent any movement */
    will-change: opacity !important;
    backface-visibility: hidden !important;

    /* Stable transition */
    transition: opacity 1s ease !important;
}

.slide.active .slide-content {
    opacity: 1 !important;
    transform: translate(-50%, -50%) !important;
    animation: none !important;
}

/* === Slider Bar Centering & Alignment Fix === */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    padding: 0;
}

.hero-slider {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    position: relative;
    margin: 0 auto;
    z-index: 2;
}

.slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    transition: all 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100%;
    max-width: 700px;
    z-index: 2;
    text-align: center;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%);
    border-radius: var(--border-radius);
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.slider-counter {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 3;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4) 100%);
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 4;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(201,169,110,0.2);
    transition: background 0.3s, box-shadow 0.3s;
}
.slider-arrow:hover {
    background: #b8956a;
    box-shadow: 0 8px 24px rgba(201,169,110,0.3);
}
.slider-arrow-prev {
    right: 60px;
}
.slider-arrow-next {
    left: 60px;
}

@media (max-width: 900px) {
    .hero-slider, .slide {
        height: 70vh;
        min-height: 400px;
    }
    .slide-content {
        max-width: 95vw;
        padding: 2rem 1rem;
    }
    .slider-arrow-prev {
        right: 20px;
    }
    .slider-arrow-next {
        left: 20px;
    }
    .slider-counter {
        top: 20px;
        font-size: 0.95rem;
    }
    .slider-dots {
        bottom: 20px;
        padding: 8px 12px;
    }
}

@media (max-width: 600px) {
    .hero, .hero-slider, .slide {
        height: 60vh !important;
        min-height: 280px !important;
    }
    .slide-content {
        max-width: 99vw;
        padding: 1.2rem 0.5rem;
    }
    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    .slider-arrow-prev {
        right: 8px;
    }
    .slider-arrow-next {
        left: 8px;
    }
    .slider-counter {
        top: 8px;
        font-size: 0.9rem;
        padding: 4px 10px;
    }
    .slider-dots {
        bottom: 8px;
        gap: 8px;
        padding: 4px 6px;
    }
}

/* === Modern Responsive Slider (hero-slider-new) === */
.hero-slider-wrapper {
  width: 100vw;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.hero-slider-new {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}
.slider-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.slider-slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}
.slider-slide img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7) contrast(1.1);
  transition: filter 0.5s;
}
.slider-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0,0,0,0.55);
  border-radius: 24px;
  padding: 2.5rem 1.5rem;
  min-width: 260px;
  max-width: 90vw;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.slider-content h1 {
  color: #fff;
  font-size: 2.2rem;
  font-family: 'Cairo', 'Tajawal', Arial, sans-serif;
  margin-bottom: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.slider-content p {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-family: 'Cairo', 'Tajawal', Arial, sans-serif;
}
.slider-btn {
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.9rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(201,169,110,0.18);
  transition: background 0.3s, box-shadow 0.3s;
  text-decoration: none;
  margin-top: 0.5rem;
}
.slider-btn:hover {
  background: #b8956a;
  box-shadow: 0 8px 24px rgba(201,169,110,0.3);
}
.slider-arrow-new {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(201,169,110,0.18);
  transition: background 0.3s, box-shadow 0.3s;
  opacity: 0.95;
}
.slider-arrow-new:active {
  background: #b8956a;
}
.slider-arrow-prev {
  right: 32px;
}
.slider-arrow-next {
  left: 32px;
}
.slider-dots-new {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.slider-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.3s, border 0.3s;
}
.slider-dot.active {
  background: #c9a96e;
  border: 2px solid #fff;
}
.slider-counter-new {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  z-index: 10;
  letter-spacing: 1px;
}
@media (max-width: 900px) {
  .hero-slider-new, .slider-slide {
    height: 65vh;
    min-height: 320px;
  }
  .slider-content {
    max-width: 98vw;
    padding: 1.5rem 0.5rem;
  }
  .slider-arrow-prev { right: 10px; }
  .slider-arrow-next { left: 10px; }
  .slider-counter-new { top: 10px; font-size: 0.95rem; }
  .slider-dots-new { bottom: 10px; }
}
@media (max-width: 600px) {
  .hero-slider-new, .slider-slide {
    height: 55vh !important;
    min-height: 180px !important;
  }
  .slider-content {
    max-width: 99vw;
    padding: 0.7rem 0.2rem;
  }
  .slider-arrow-new {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .slider-arrow-prev { right: 2px; }
  .slider-arrow-next { left: 2px; }
  .slider-counter-new { top: 2px; font-size: 0.85rem; padding: 2px 8px; }
  .slider-dots-new { bottom: 2px; gap: 6px; }
}

/* Floating WhatsApp Icon */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 9999;
    background: #25d366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    font-size: 2.1rem;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
}
.floating-whatsapp:hover {
    background: #128c7e;
    box-shadow: 0 6px 24px rgba(0,0,0,0.22);
    transform: scale(1.08);
}
@media (max-width: 600px) {
    .floating-whatsapp {
        left: 16px;
        bottom: 16px;
        width: 46px;
        height: 46px;
        font-size: 1.5rem;
    }
}
/* ...existing code... */
