/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #0f3460;
    --accent-color: #e94560;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-color);
    color: white;
    padding: 8px;
    z-index: 2000;
}
.skip-link:focus { top: 0; }

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo h1 { font-size: 1.25rem; color: var(--primary-color); line-height: 1.2; }
.tagline { font-size: 0.75rem; color: var(--text-light); }

.nav-menu { display: flex; gap: 2rem; align-items: center; }
.nav-menu a { font-weight: 500; }
.nav-menu a:hover { color: var(--accent-color); }

.btn-call {
    background: var(--accent-color);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-call:hover { background: #d63651; transform: translateY(-2px); }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.mobile-menu-toggle span {
    width: 25px; height: 3px; background: var(--primary-color);
    transition: var(--transition);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.hero-title { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; line-height: 1.2; }
.hero-subtitle { font-size: 1.1rem; margin-bottom: 2rem; opacity: 0.9; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2rem; }
.hero-features { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.feature-badge { background: rgba(255,255,255,0.1); padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.9rem; }

/* Buttons */
.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}
.btn-primary { background: var(--accent-color); color: white; }
.btn-primary:hover { background: #d63651; }
.btn-secondary { background: white; color: var(--primary-color); }
.btn-secondary:hover { background: #f0f0f0; }

/* Services */
.services { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 0.5rem; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #eee;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { color: var(--primary-color); margin-bottom: 0.5rem; }

/* Features / Why Choose Us */
.why-choose { background: var(--light-bg); padding: 5rem 0; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}
.feature-number { font-size: 2.5rem; font-weight: 700; color: var(--accent-color); margin-bottom: 0.5rem; opacity: 0.2; }

/* Contact Section */
.contact { padding: 5rem 0; }
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}
.info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.info-item .icon { font-size: 1.5rem; }
.info-item h3 { font-size: 1.1rem; color: var(--primary-color); }

/* Form Styles */
.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 1.5rem; position: relative; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; }
.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px; /* Prevents iOS zoom */
}
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}
.form-group input.error, 
.form-group select.error { border-color: red; }
.error-message { color: red; font-size: 0.85rem; margin-top: 5px; display: none; }
.form-status { margin-bottom: 1rem; padding: 10px; border-radius: 5px; display: none; }
.form-status.success { background: #d4edda; color: #155724; }
.form-status.error { background: #f8d7da; color: #721c24; }
.btn-block { width: 100%; }

/* Footer */
.footer { background: var(--primary-color); color: white; padding: 3rem 0 1rem; }
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer h4 { margin-bottom: 1.5rem; color: var(--accent-color); }
.footer ul li { margin-bottom: 0.8rem; }
.footer a:hover { color: var(--accent-color); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; font-size: 0.9rem; color: #aaa; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: 0.3s;
    }
    .nav-menu.active { left: 0; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .hero-title { font-size: 2rem; }
}
/* ===========================
   Social Media Icons
   =========================== */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(233, 69, 96, 0.4);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}