:root {
    --primary-color: #D4AF37;
    --secondary-color: #1A1A1A;
    --accent-color: #C5A572;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #C5A572 100%);
    --text-color: #333333;
    --light-bg: #F8F9FA;
    --dark-gold: #B4943E;
}

body {
    direction: rtl;
    text-align: right;
    font-family: 'Cairo', sans-serif;
    color: var(--text-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 0.5rem 0;
    height: 75px;
}

.navbar-brand img {
    height: 45px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand img:hover {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.nav-link {
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    font-weight: 600;
    color: var(--secondary-color) !important;
    position: relative;
    padding: 0.5rem 1rem !important;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

/* Navbar Phone Styles */
.nav-phones {
    display: flex;
    gap: 2rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-phone:hover {
    background: var(--gold-gradient);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border-color: transparent;
}

.nav-phone i {
    font-size: 1.2rem;
    color: var(--primary-color);
    background: var(--light-bg);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-phone:hover i {
    background: white;
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.2);
}

.phone-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.phone-label {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.phone-number {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 700;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-phone:hover .phone-label,
.nav-phone:hover .phone-number {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 6rem;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%),
        url('../images/hero-bg.webp') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
}

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

.hero-content {
    position: relative;
    z-index: 5;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.hero-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.5), transparent, rgba(212, 175, 55, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.hero-title {
    margin-bottom: 2rem;
    line-height: 1.2;
}

.title-highlight {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.8rem;
}

.subtitle {
    display: block;
    font-size: 3rem;
    color: white;
    font-weight: 700;
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-buttons {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-btn {
    position: relative;
    z-index: 15;
    padding: 1rem 2.5rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    cursor: pointer;
}

.hero-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: scale(1.2) rotate(15deg);
}

.hero-btn-primary {
    background: var(--gold-gradient);
    color: white !important;
    border: none;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

.hero-btn-outline {
    background: transparent;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-outline:hover {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.hero-image-wrapper {
    position: relative;
    z-index: 4;
    padding: 3rem;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
}

.experience-badge {
    position: absolute;
    bottom: 4rem;
    right: 4rem;
    background: var(--gold-gradient);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.2) inset;
    animation: float 4s ease-in-out infinite;
}

.experience-badge .number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.experience-badge .text {
    font-size: 1rem;
    text-align: center;
    opacity: 0.9;
    line-height: 1.3;
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 6rem 0 4rem;
        min-height: auto;
    }

    .title-highlight {
        font-size: 3.5rem;
    }

    .subtitle {
        font-size: 2.5rem;
    }

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

    .experience-badge {
        width: 120px;
        height: 120px;
        bottom: 3rem;
        right: 3rem;
    }

    .experience-badge .number {
        font-size: 2.8rem;
    }

    .experience-badge .text {
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        text-align: center;
        padding: 5rem 0 3rem;
    }

    .title-highlight {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 3rem;
        padding: 2rem;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 2rem;
        right: 2rem;
    }

    .experience-badge .number {
        font-size: 2.2rem;
    }

    .experience-badge .text {
        font-size: 0.8rem;
    }
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--gold-gradient);
}

.feature-card:hover .feature-icon i {
    color: white;
    transform: rotate(360deg);
}

.feature-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.feature-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.indicator i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Floating Badges */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.floating-badge {
    position: absolute;
    background: var(--gold-gradient);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.floating-badge.experience {
    top: 10%;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.floating-badge.quality {
    bottom: 20%;
    left: -20px;
    padding: 1rem 1.5rem;
    animation: float 3s ease-in-out infinite;
    animation-delay: -1s;
}

.floating-badge.guarantee {
    top: 50%;
    right: -20px;
    padding: 1rem 1.5rem;
    animation: float 3s ease-in-out infinite;
    animation-delay: -2s;
}

.floating-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Decorative Elements */
.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.circle-1, .circle-2 {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.1);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -30px;
    left: -30px;
}

.dots-1, .dots-2 {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(212, 175, 55, 0.2) 1px, transparent 1px);
    background-size: 10px 10px;
}

.dots-1 {
    top: 20%;
    left: -20px;
}

.dots-2 {
    bottom: 20%;
    right: -20px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

/* About Section */
.section-title {
    color: var(--secondary-color);
    position: relative;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
    font-size: 2.5rem;
}

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

/* Products Section */
.products-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(212, 175, 55, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

.product-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-color);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    padding: 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.product-card:hover .overlay-content {
    transform: translateY(0);
    opacity: 1;
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    background: var(--gold-gradient);
    color: white;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

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

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.product-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.product-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.product-features i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.section-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: var(--gold-gradient);
    color: white;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

.section-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.35);
    color: white;
}

@media (max-width: 991.98px) {
    .products-section {
        padding: 6rem 0;
    }
    
    .product-image {
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .products-section {
        padding: 4rem 0;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: visible;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(212, 175, 55, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 1;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    z-index: 2;
}

.contact-form .form-floating {
    position: relative;
    margin-bottom: 1rem;
}

.contact-form .form-control {
    background-color: #fff;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 1.5rem 1rem 0.5rem;
    height: auto;
    font-size: 1rem;
    color: #000;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-form .form-control::placeholder {
    color: #000;
    opacity: 0.7;
}

.contact-form .form-floating label {
    padding: 1rem;
    color: #000;
    font-weight: 500;
    z-index: 2;
    pointer-events: none;
    transform-origin: right top;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
    color: #000;
}

.contact-form .form-control:focus + label,
.contact-form .form-control:not(:placeholder-shown) + label {
    transform: scale(0.85) translateY(-1rem);
    background: white;
    padding: 0 0.5rem;
    color: var(--primary-color);
}

.contact-form textarea.form-control {
    min-height: 150px;
    color: #000;
}

.submit-btn {
    background: var(--gold-gradient);
    border: none;
    border-radius: 15px;
    padding: 1rem 2rem;
    color: white;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 2;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    height: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    z-index: 2;
}

.contact-info::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.5), transparent, rgba(212, 175, 55, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 2rem;
}

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

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-list li:hover {
    transform: translateX(-10px);
    background: white;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-color);
}

.contact-list li i {
    font-size: 1.8rem;
    color: var(--primary-color);
    background: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
}

.contact-list li:hover i {
    background: var(--gold-gradient);
    color: white;
    transform: rotate(360deg);
}

.contact-list li .contact-info-text {
    flex: 1;
}

.contact-list li h4 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-list li p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.working-hours {
    margin-top: 3rem;
}

.working-hours h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: #666;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span:last-child {
    font-weight: 600;
    color: var(--secondary-color);
}

@media (max-width: 991.98px) {
    .contact-section {
        padding: 6rem 0;
    }
    
    .contact-info {
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-form,
    .contact-info {
        padding: 2rem;
    }
    
    .contact-list li {
        padding: 1rem;
    }
    
    .contact-list li i {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* Footer */
footer {
    position: relative;
    background: linear-gradient(to bottom, #1a1a1a, #000);
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-gradient);
}

/* Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-gradient);
    border-radius: 6px;
    border: 3px solid var(--light-bg);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Image Styles */
.img-fluid {
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.img-fluid:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Hero Features Styles */
.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-5px);
    background: var(--gold-gradient);
    border-color: transparent;
}

.hero-feature:hover .feature-icon,
.hero-feature:hover .feature-text h4,
.hero-feature:hover .feature-text p {
    color: white;
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
    transition: all 0.3s ease;
}

.feature-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    transition: all 0.3s ease;
}

/* Contact Info Styles */
.contact-list li {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-list li:hover {
    background: white;
    transform: translateX(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
    border-color: var(--primary-color);
}

.contact-list li i {
    background: var(--light-bg);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 1.5rem;
    transition: all 0.3s ease;
}

.contact-list li:hover i {
    background: var(--gold-gradient);
    color: white;
    transform: rotate(360deg);
}

.contact-list li h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-list li p {
    margin: 0;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
}

/* Phone Numbers Style */
.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.phone-number:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

/* Social Links Animation */
.social-links a {
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
    transform: scale(0);
    border-radius: 50%;
}

.social-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.social-links a:hover {
    color: white;
}

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

/* Footer Links */
.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(-10px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.footer-contact li:hover i {
    background: var(--gold-gradient);
    color: white;
    transform: rotate(360deg);
}

.developer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.developer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.developer-link:hover {
    color: var(--primary-color);
}

.developer-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Social Media Colors */
.social-link.facebook:hover,
.footer-social-link.facebook:hover {
    background: #1877f2;
}

.social-link.instagram:hover,
.footer-social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.whatsapp:hover,
.footer-social-link.whatsapp:hover {
    background: #25d366;
}

.social-link.telegram:hover,
.footer-social-link.telegram:hover {
    background: #0088cc;
}

@media (max-width: 767.98px) {
    .footer-social-links {
        justify-content: center;
        margin-top: 2rem;
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-links a:hover {
        transform: translateY(-5px);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* Loading Animation */
.loading::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--light-bg);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Hero Buttons Styles */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.hero-btn {
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: none;
}

.hero-btn-primary {
    background: var(--gold-gradient);
    color: white !important;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
}

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

.hero-btn-outline:hover {
    background: var(--gold-gradient);
    color: white !important;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
}

/* About Section Styles */
.about-section {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: var(--gold-gradient);
    color: white;
    border-radius: 100px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

.section-badge i {
    font-size: 1.2rem;
}

.section-badge span {
    font-weight: 600;
    font-size: 1rem;
}

.about-content .section-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.about-content .section-title .highlight {
    color: var(--primary-color);
    display: block;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 3rem;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: var(--gold-gradient);
}

.feature-item:hover .feature-icon i {
    color: white;
    transform: rotate(360deg);
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.about-image-container {
    position: relative;
    padding: 2rem;
}

.main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.secondary-image {
    position: absolute;
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    bottom: 0;
    right: 0;
    border: 10px solid white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.about-image-container:hover .main-image {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.about-image-container:hover .secondary-image {
    transform: translate(-20px, -20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.pattern-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(rgba(212, 175, 55, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: -1;
    opacity: 0.5;
}

@media (max-width: 991.98px) {
    .about-content .section-title {
        font-size: 2.8rem;
    }

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

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

    .main-image {
        height: 400px;
    }

    .secondary-image {
        width: 250px;
        height: 150px;
    }
}

@media (max-width: 767.98px) {
    .about-section {
        padding: 5rem 0;
    }

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

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

    .about-image-container {
        margin-top: 3rem;
    }

    .main-image {
        height: 300px;
    }

    .secondary-image {
        width: 200px;
        height: 120px;
    }
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    position: relative;
    width: 55px;
    height: 55px;
    background: var(--light-bg);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.social-icon {
    position: relative;
    z-index: 2;
    font-size: 1.6rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-hover {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.social-link:hover {
    transform: translateY(-8px) scale(1.1);
    color: white;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover .social-icon {
    transform: translateY(-22px) rotate(360deg) scale(1.1);
    color: white;
}

.social-link:hover .social-hover {
    top: 65%;
    opacity: 1;
}

/* Footer Social Links */
.footer-social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
}

.footer-social-link {
    position: relative;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-link .social-icon {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-link:hover {
    transform: translateY(-5px) scale(1.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.footer-social-link:hover::before {
    opacity: 1;
}

.footer-social-link:hover .social-icon {
    transform: rotate(360deg) scale(1.2);
    color: white;
}

/* Social Media Platform Colors */
.social-link.facebook:hover,
.footer-social-link.facebook:hover {
    background: linear-gradient(45deg, #1877f2, #0099ff);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-link.instagram:hover,
.footer-social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-link.whatsapp:hover,
.footer-social-link.whatsapp:hover {
    background: linear-gradient(45deg, #25d366, #128c7e);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-link.telegram:hover,
.footer-social-link.telegram:hover {
    background: linear-gradient(45deg, #0088cc, #229ed9);
    border-color: rgba(255, 255, 255, 0.3);
} 