:root {
    --primary-color: #d4af37; /* altın rengi */
    --secondary-color: #8B6A1B;
    --dark-color: #333;
    --light-color: #f4f4f4;
    --white-color: #fff;
    --black-color: #000;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.2);
    --gold-gradient: linear-gradient(135deg, #f0d055 0%, #d4af37 50%, #aa8a24 100%);
}

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    direction: rtl;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Amiri', serif;
    font-weight: 700;
}

/* Utility Classes */
.gold-text {
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-gold {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--black-color);
    transition: var(--transition);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline-gold {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 50px;
    font-weight: 500;
}

.btn-outline-gold:hover {
    background-color: var(--primary-color);
    color: var(--black-color);
    transform: translateY(-2px);
}

.section-title {
    position: relative;
    margin-bottom: 15px;
    font-size: 2.5rem;
    color: var(--dark-color);
}

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--primary-color);
    margin-bottom: 30px;
}

/* Header */
.navbar {
    padding: 15px 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.9) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    position: relative;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.navbar-brand:hover {
    transform: rotate(10deg) scale(1.1);
    border-color: #fff;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.1);
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--white-color);
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    transition: all 0.4s ease;
    position: relative;
    margin: 0 5px;
    border-radius: 25px;
    overflow: hidden;
    z-index: 1;
    border: 1px solid transparent;
}

.navbar-dark .navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: rgba(212, 175, 55, 0.1);
    z-index: -1;
    transition: all 0.4s ease;
}

.navbar-dark .navbar-nav .nav-link:hover:before,
.navbar-dark .navbar-nav .nav-link.active:before {
    width: 100%;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary-color);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.navbar-dark .navbar-nav .nav-link i {
    margin-left: 8px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    top: 0;
}

.navbar-dark .navbar-nav .nav-link:hover i {
    transform: translateY(-3px);
    color: var(--primary-color);
}

.navbar-toggler {
    border: none;
    padding: 5px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid var(--white-color);
    transition: all 300ms linear;
}

.navbar-toggler-icon:after, 
.navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: var(--white-color);
    top: 0;
    left: 0;
    content: '';
    z-index: 2;
    transition: all 300ms linear;
}

.navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
    background-color: var(--primary-color);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
    background-color: var(--primary-color);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

/* Call Button */
.btn-call {
    background: var(--gold-gradient);
    color: var(--black-color);
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    color: var(--black-color);
}

.btn-call i {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn-call:hover i {
    transform: rotate(15deg);
    background: rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: url('../images/bg2.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white-color);
    overflow: hidden;
    perspective: 1000px;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* 3D Floating Animation */
.hero-content-wrapper {
    position: relative;
    transform-style: preserve-3d;
    animation: heroFloat 8s ease-in-out infinite;
}

.hero-section h1 {
    font-size: 4.5rem;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.7);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateZ(50px);
    animation: textShine 3s ease-in-out infinite alternate;
}

.hero-section h1::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 4px;
    background: var(--gold-gradient);
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.8));
    animation: glowPulse 2s ease-in-out infinite;
}

.hero-section h2 {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
    font-size: 1.8rem;
    letter-spacing: 1px;
    transform: translateZ(30px);
    position: relative;
    overflow: hidden;
}

.hero-section h2::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: lightSweep 3s linear infinite;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 80%;
    margin: 0 auto 2.5rem auto;
    transform: translateZ(20px);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    transform: translateZ(40px);
}

.hero-section .btn-gold {
    background: var(--gold-gradient);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}

.hero-section .btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.5s ease;
    z-index: -1;
}

.hero-section .btn-gold:hover::before {
    left: 100%;
    animation: btnSweep 1.5s linear;
}

.hero-section .btn-gold:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.hero-section .btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.hero-section .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.hero-badges {
    margin-top: 30px;
    transform: translateZ(10px);
}

.badge-item {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    margin: 0 10px;
    color: var(--white-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.5s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.badge-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent, 
        rgba(212, 175, 55, 0.5), 
        transparent 30%
    );
    animation: rotateConic 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.badge-item:hover::before {
    opacity: 1;
}

.badge-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
}

.badge-item i {
    font-size: 1.3rem;
    margin-left: 10px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
    animation: iconPulse 2s ease-in-out infinite;
}

/* Glowing Effects */
.hero-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6) 0%, rgba(212, 175, 55, 0) 70%);
    filter: blur(20px);
    opacity: 0.7;
    z-index: 0;
    animation: glowFloat 10s ease-in-out infinite;
}

.glow-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.glow-2 {
    top: 60%;
    left: 80%;
    width: 200px;
    height: 200px;
    animation-delay: -2s;
}

.glow-3 {
    top: 15%;
    left: 70%;
    width: 100px;
    height: 100px;
    animation-delay: -5s;
}

/* Hero scroll down */
.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-down a {
    display: block;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.3);
    animation: bounce 2s ease infinite;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero-scroll-down a:hover {
    background: rgba(212, 175, 55, 0.4);
    color: var(--white-color);
    animation-play-state: paused;
}

/* Floating Particles */
.floating-particle {
    position: absolute;
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation: floatParticle1 15s ease-in-out infinite;
}

.particle-2 {
    top: 70%;
    left: 20%;
    animation: floatParticle2 12s ease-in-out infinite;
}

.particle-3 {
    top: 30%;
    left: 80%;
    animation: floatParticle3 18s ease-in-out infinite;
}

/* Animations */
@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: translateY(-10px) rotateX(2deg) rotateY(-1deg);
    }
    50% {
        transform: translateY(5px) rotateX(-1deg) rotateY(2deg);
    }
    75% {
        transform: translateY(-5px) rotateX(1deg) rotateY(-1deg);
    }
}

@keyframes textShine {
    0% {
        filter: brightness(1);
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }
    100% {
        filter: brightness(1.2);
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.7;
        filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 1));
    }
}

@keyframes glowFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(50px, 20px);
    }
    50% {
        transform: translate(0, 50px);
    }
    75% {
        transform: translate(-50px, 20px);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
    }
    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.8));
    }
}

@keyframes lightSweep {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes btnSweep {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes rotateConic {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatParticle1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, 30px) rotate(90deg);
    }
    50% {
        transform: translate(100px, 0) rotate(180deg);
    }
    75% {
        transform: translate(50px, -30px) rotate(270deg);
    }
}

@keyframes floatParticle2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-60px, 40px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 80px) rotate(240deg);
    }
}

@keyframes floatParticle3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(-50px, 50px) rotate(90deg) scale(1.2);
    }
    50% {
        transform: translate(-100px, 0) rotate(180deg) scale(1);
    }
    75% {
        transform: translate(-50px, -50px) rotate(270deg) scale(0.8);
    }
}

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

/* Social icons in navbar */
.social-icons a {
    opacity: 0.7;
    transition: var(--transition);
}

.social-icons a:hover {
    opacity: 1;
    color: var(--primary-color) !important;
}

/* Hero buttons */
.hero-buttons .btn {
    margin-right: 10px;
}

.btn-outline-light {
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background-color: var(--white-color);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Feature Box */
.feature-box {
    padding: 30px;
    border-radius: 5px;
    background-color: var(--white-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

/* Product Card */
.product-card {
    border-radius: 15px;
    overflow: hidden;
    background-color: var(--white-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    position: relative;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.product-img-container {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.product-img-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.6));
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.product-card:hover .product-img-container::before {
    opacity: 1;
}

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

.product-card:hover .product-img-container img {
    transform: scale(1.15) rotate(2deg);
}

.product-info {
    padding: 25px;
    position: relative;
    background: linear-gradient(to bottom, var(--white-color), rgba(249, 246, 238, 0.8));
    border-top: 4px solid var(--primary-color);
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
    margin-top: -20px;
    z-index: 2;
}

.product-info h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #8B5A2B;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.product-info h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.5s ease;
}


.product-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-info .btn-outline-gold {
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.product-info .btn-outline-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.product-card:hover .product-info .btn-outline-gold::before {
    left: 100%;
}

/* Products Section */
#products {
    position: relative;
    background: linear-gradient(to bottom, #fff, #f8f9fa);
    padding: 100px 0;
    overflow: hidden;
}

#products::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    z-index: 0;
}

#products::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

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

#products .section-title {
    color: #8B5A2B;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

#products .divider {
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #FFDF00);
    margin: 0 auto 50px;
    border-radius: 2px;
    width: 100px;
}

/* Service Card */
.service-card {
    padding: 30px;
    border-radius: 5px;
    background-color: var(--white-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-left: 20px;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

/* Contact Section Styling */
.contact-section {
    position: relative;
    background-color: #f9f7f2;
    padding: 100px 0;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

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

/* Contact Info Card */
.contact-info-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-right: 5px solid var(--primary-color);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.contact-info-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-header-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-left: 15px;
    background: rgba(212, 175, 55, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.contact-info-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon-wrapper {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.3));
}

.contact-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-text {
    flex: 1;
}

.contact-label {
    display: block;
    color: #8B5A2B;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-value {
    color: #555;
    font-size: 1rem;
}

.contact-social-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.social-title {
    color: #8B5A2B;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.social-icons-wrapper {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-icon:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.contact-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    z-index: 0;
}

/* Contact Form */
.contact-form-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}

.contact-form-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.contact-form-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-left: 15px;
    background: rgba(212, 175, 55, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 12px;
    color: #8B5A2B;
    z-index: 10;
    transition: all 0.3s ease;
}

.textarea-icon {
    top: 15px;
}

.custom-input, .custom-textarea {
    padding: 12px 45px 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.custom-input:focus, .custom-textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background-color: #fff;
}

.custom-input:focus + .input-icon,
.custom-textarea:focus + .input-icon {
    color: var(--primary-color);
}

.custom-submit {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.custom-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

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

.custom-submit:hover::before {
    left: 100%;
}

/* Map Section */
.map-section {
    position: relative;
    background-color: #f9f7f2;
    padding: 80px 0;
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
}

.map-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    z-index: 0;
}

.map-container {
    position: relative;
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: white;
    z-index: 1;
}

.map-info-card {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 320px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 10;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.map-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.25);
}

.map-info-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.map-info-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-left: 15px;
    background: rgba(212, 175, 55, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-info-header h3 {
    margin: 0;
    color: #8B5A2B;
    font-size: 1.5rem;
    font-weight: 600;
}

.map-info-content p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #555;
    font-size: 1rem;
}

.map-info-content i {
    color: var(--primary-color);
    margin-left: 12px;
    font-size: 1.1rem;
    width: 30px;
}

.map-info-content .btn {
    margin-top: 10px;
    padding: 10px 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: contrast(1.05) saturate(0.9);
    transition: all 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: contrast(1.1) saturate(1);
}

@media (max-width: 992px) {
    .map-info-card {
        width: 280px;
        top: 20px;
        right: 20px;
    }
    
    .map-wrapper {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .map-info-card {
        position: relative;
        width: 100%;
        top: 0;
        right: 0;
        margin-bottom: 20px;
    }
    
    .map-wrapper {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .map-wrapper {
        height: 350px;
    }
}

/* Footer */
.footer {
    position: relative;
    background-color: #222;
    padding: 70px 0 40px;
    overflow: hidden;
}

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

.footer::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    z-index: 0;
}

.footer p {
    color: #aaa;
    line-height: 1.8;
}

.footer-links li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 6px 0;
}

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

.footer-links a i {
    transition: all 0.3s ease;
}

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

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-left: 12px;
    font-size: 1.1rem;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon-footer {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.social-icon-footer:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: #222;
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 10px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--black-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section {
        height: auto;
        padding: 120px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .badge-item {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .feature-box,
    .service-card,
    .product-card,
    .contact-info,
    .contact-form {
        margin-bottom: 30px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-badges .row {
        flex-direction: column;
    }
    
    .hero-badges .col-auto {
        margin-bottom: 10px;
    }
}

/* About Section - Modern Styling */
#about {
    background: transparent;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    top: -50px;
    left: -50px;
    z-index: 0;
}

#about::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    z-index: 0;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-title {
    font-size: 3.5rem;
    color: #8B5A2B;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.about-divider {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, #D4AF37, #FFDF00);
    margin: 0 auto 30px;
    border-radius: 2px;
}

.about-subtitle {
    font-size: 1.5rem;
    color: #8B5A2B;
    margin-bottom: 40px;
    font-weight: 500;
}

.about-text {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
    border-left: 5px solid #D4AF37;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0;
    text-align: justify;
}

.about-feature-box {
    background-color: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.about-feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid #D4AF37;
}

.about-feature-icon {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.about-feature-box:hover .about-feature-icon {
    transform: scale(1.2);
    color: #8B5A2B;
}

.about-feature-title {
    font-size: 1.5rem;
    color: #8B5A2B;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-feature-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.about-counter-wrapper {
    background: linear-gradient(90deg, #8B5A2B, #D4AF37);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.about-counter-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-counter-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-counter-wrapper:hover::before {
    opacity: 1;
}

.about-counter-item {
    text-align: center;
    padding: 15px;
    position: relative;
    z-index: 1;
}

.about-counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
}

.about-counter-number::after {
    content: '+';
    font-size: 2rem;
    position: absolute;
    top: 0;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.about-counter-number.animated::after {
    opacity: 1;
    animation: fadeIn 0.5s forwards;
}

.about-counter-text {
    font-size: 1rem;
    color: white;
    font-weight: 500;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 10px;
}

.about-counter-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: width 0.5s ease;
}

.about-counter-item:hover .about-counter-text::after {
    width: 50px;
}

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

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

/* Responsive Styles for About Section */
@media (max-width: 992px) {
    #about {
        padding: 80px 0;
    }
    
    .about-title {
        font-size: 3rem;
    }
    
    .about-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    #about {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
    }
    
    .about-counter-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-feature-title {
        font-size: 1.3rem;
    }
    
    .about-counter-number {
        font-size: 2rem;
    }
    
    .about-counter-text {
        font-size: 0.9rem;
    }
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.product-badge-new {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
}

.product-badge-premium {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.product-card:hover .product-badge {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Category Card */
.category-card {
    background-color: var(--white-color);
    border-radius: 15px;
    padding: 40px 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
    transform: translateY(-100%);
    transition: all 0.4s ease;
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.category-card:hover::before {
    transform: translateY(0);
}

.category-icon {
    margin-bottom: 25px;
    color: var(--primary-color);
    transition: all 0.5s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.2);
    animation: iconPulse 2s infinite;
}

.category-title {
    font-size: 1.6rem;
    color: #8B5A2B;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.5s ease;
    transform: translateX(-50%);
}

.category-card:hover .category-title::after {
    width: 80%;
}

.category-card:hover .category-title {
    color: var(--primary-color);
}

/* Category Card New Style */
.category-card-new {
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    min-height: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.category-card-new:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.gold-border {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.category-card-new:hover .gold-border {
    border-color: var(--primary-color);
    height: calc(100% - 0px);
    width: calc(100% - 0px);
}

.category-title-new {
    color: #8B5A2B;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.category-card-new:hover .category-title-new {
    color: var(--primary-color);
    transform: scale(1.05);
}

.category-shape {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    z-index: 0;
    transition: all 0.5s ease;
    opacity: 0;
}

.category-card-new:hover .category-shape {
    transform: scale(1.5);
    opacity: 1;
}

.category-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--primary-color);
    transition: all 0.5s ease;
    z-index: 2;
    border-radius: 8px 0 0 8px;
}

.category-card-new:hover::before {
    height: 100%;
}

/* Category Card New Style - Additional Styling */
.category-card-new::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #FFDF00);
    opacity: 0.5;
    transition: all 0.5s ease;
    z-index: 1;
}

.category-card-new:hover::after {
    transform: scale(1.5);
    opacity: 0.8;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.category-title-new::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.5s ease 0.1s;
}

.category-card-new:hover .category-title-new::before {
    width: 80px;
}

.category-card-new:nth-child(odd) {
    background: linear-gradient(to bottom right, #fff, #f9f7f2);
}

.category-card-new:nth-child(even) {
    background: linear-gradient(to bottom left, #fff, #f9f7f2);
}

#products .row {
    position: relative;
    z-index: 1;
}

#products::before,
#products::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    pointer-events: none;
}

#products::before {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    top: -150px;
    right: -150px;
}

#products::after {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
}

.category-number {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-family: 'Tajawal', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(212, 175, 55, 0.15);
    transition: all 0.5s ease;
    z-index: 1;
    line-height: 1;
}

.category-card-new:hover .category-number {
    color: rgba(212, 175, 55, 0.3);
    transform: scale(1.2);
}

.main-title {
    font-size: 3.5rem !important;
    margin-bottom: 30px !important;
    color: #8B5A2B !important;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 700 !important;
    letter-spacing: 2px;
}

.main-title::before, 
.main-title::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
}

.main-title::before {
    right: -50px;
}

.main-title::after {
    left: -50px;
}

#products .container {
    text-align: center;
}

/* Social Icons */
.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white !important;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    border: none;
    font-size: 1.5rem !important;
    transition: all 0.3s ease;
    width: auto;
    height: auto;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 10;
    position: relative;
}

.whatsapp-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E, #075E54);
}

.whatsapp-text {
    font-size: 1rem;
    font-weight: 600;
    margin-right: 5px;
}

/* Developer Credit */
.developer-credit {
    margin-top: 15px;
    padding-top: 10px;
}

.htdeltov-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    padding: 5px 15px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.htdeltov-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: all 0.6s ease;
}

.htdeltov-link:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.htdeltov-link:hover::before {
    left: 100%;
}

.developed-by {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.developer-name {
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 5px;
    position: relative;
    transition: all 0.3s ease;
}

.developer-name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.htdeltov-link:hover .developer-name::after {
    width: 100%;
}

.htdeltov-link i {
    transition: all 0.3s ease;
}

.htdeltov-link:hover i {
    transform: rotate(20deg);
    color: var(--primary-color);
}

/* Category Link Styles */
.category-link {
    text-decoration: none;
    display: block;
    color: inherit;
    transition: all 0.3s ease;
}

.category-link:hover {
    transform: translateY(-5px);
}

.category-link:hover .category-card-new {
    transform: none;
}

.category-link:hover .category-title-new {
    color: var(--primary-color);
} 