/* Base Styles */
:root {
    --primary-color: #ff4d6d;
    --secondary-color: #ff8fa3;
    --accent-color: #ffb3c1;
    --services-border: #ffd6e0;
    --services-icon: #ff4d6d;
    --bg-color: #0a0a0a;
    --card-bg: #141414;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --transition: all 0.3s ease;
    --gradient: linear-gradient(135deg, #ff4d6d 0%, #ff8fa3 100%);
    --section-padding: 120px 0;
    --container-width: 1280px;
    --border-radius: 15px;
    --card-shadow: 0 5px 15px rgba(255, 77, 109, 0.1);
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-header h2 {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 0 auto;
    border-radius: 2px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::after {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn2 {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-primary);
}

.btn2:hover {
    background: var(--gradient);
    border-color: transparent;
}

/* Contact Form Enhancement */
form input:focus,
form textarea:focus {
    outline: none;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(255, 0, 79, 0.2);
}

/* Update specific section styles */
#services .section-header h2,
#contact .section-header h2 {
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#services .section-header .section-line,
#contact .section-header .section-line {
    background: var(--gradient);
    box-shadow: 0 2px 4px rgba(255, 77, 109, 0.3);
}