@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap');

* {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --dark-gold: #B8941F;
    --navy: #17181c;
    --light-navy: #2a2b30;
    --white: #FFFFFF;
}

body {
    overflow-x: clip;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

html {
    overflow-x: clip;
    width: 100%;
    max-width: 100vw;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--navy) 0%, var(--light-navy) 100%);
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
}

.hero-section {
    background: linear-gradient(135deg, rgba(23, 24, 28, 0.9) 0%, rgba(42, 43, 48, 0.9) 50%, rgba(23, 24, 28, 0.9) 100%), url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding-bottom: 3rem;
        background-attachment: scroll;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.service-card {
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.service-card .icon-wrapper {
    transition: all 0.4s ease;
}

.service-card:hover .icon-wrapper {
    transform: scale(1.2) rotate(10deg);
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.location-card {
    transition: all 0.4s ease;
    border-right: 4px solid var(--gold);
}

.location-card:hover {
    transform: translateX(-10px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-gold:hover::before {
    width: 300px;
    height: 300px;
}

.btn-gold:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.logo-shadow {
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.3));
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: scale(1.02);
}

header {
    backdrop-filter: blur(10px);
    background: rgba(23, 24, 28, 0.95);
}

.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}