/* ==================== ENHANCED SECTIONS ==================== */

/* Services Section with Background */
.services {
    position: relative;
    background-image: 
        linear-gradient(rgba(245, 243, 239, 0.95), rgba(245, 243, 239, 0.95)),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(201, 162, 39, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services > .container {
    position: relative;
    z-index: 1;
}

/* Portfolio Section with Pattern */
#portfolio {
    position: relative;
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
}

#portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(201, 162, 39, 0.02) 50px, rgba(201, 162, 39, 0.02) 51px);
    pointer-events: none;
}

/* Service Cards Enhancement */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.5s;
}

.service-card:hover::before {
    opacity: 1;
    top: -25%;
    right: -25%;
}

/* Project Cards with Image Overlay */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, transparent 100%);
    opacity: 0;
    transition: all 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.service-card:hover .project-overlay {
    opacity: 1;
}

/* Contact Section with Image */
.contact {
    position: relative;
    background-image: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(45, 24, 16, 0.95)),
        url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

/* Floating Elements */
.floating-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
}

.shape-1 {
    top: 10%;
    right: 5%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    bottom: 15%;
    left: 8%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

/* Section Dividers */
.section-divider {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #fff, transparent);
}

.section-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
}

/* Image Hover Effects */
.hover-zoom {
    overflow: hidden;
    border-radius: 15px;
}

.hover-zoom img {
    transition: transform 0.5s ease;
}

.hover-zoom:hover img {
    transform: scale(1.1);
}

/* Parallax Images */
.parallax-img {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}

/* Decorative Lines */
.decorative-line {
    position: relative;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #c9a227, #d4af37);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.decorative-line::before,
.decorative-line::after {
    content: '';
    position: absolute;
    top: 0;
    width: 10px;
    height: 4px;
    background: #c9a227;
    border-radius: 2px;
}

.decorative-line::before {
    left: -15px;
}

.decorative-line::after {
    right: -15px;
}
