/* Base Styles */
:root {
    --dark-gray: #2d3136;
    --medium-gray: #3a3e45;
    --light-gray: #4a4f58;
    --text-light: #e0e0e0;
    --text-medium: #b0b0b0;
    --accent-teal: #5aa79e;
    --accent-blue: #4a6fa5;
    --white: #ffffff;
    --success-green: #48bb78;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-gray);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    color: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background: var(--accent-teal);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: var(--shadow);
}

.btn:hover {
    background: #4a958c;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(90, 167, 158, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(90, 167, 158, 0); }
    100% { box-shadow: 0 0 0 0 rgba(90, 167, 158, 0); }
}

section {
    padding: 100px 0;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(45, 49, 54, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav.scrolled {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--accent-teal);
}

.logo i {
    margin-right: 8px;
    color: var(--accent-teal);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 35px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    transition: var(--transition);
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-teal);
    transition: var(--transition);
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-teal);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--white);
}

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background: linear-gradient(rgba(45, 49, 54, 0.9), rgba(45, 49, 54, 0.9)), url('https://images.unsplash.com/photo-1497215842964-222b430dc094?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 650px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--white);
}

.hero .tagline {
    font-size: 1.5rem;
    color: var(--accent-teal);
    margin-bottom: 30px;
    font-weight: 500;
}

.value-prop {
    background: rgba(58, 62, 69, 0.7);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    max-width: 550px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-prop p {
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
}

.value-prop p i {
    color: var(--accent-teal);
    margin-right: 12px;
    font-size: 1.2rem;
}

/* Services */
.services {
    position: relative;
    background: var(--medium-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

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

.section-title p {
    color: var(--accent-teal);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--dark-gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 0.6s forwards;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes fadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    height: 150px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-teal);
    font-size: 3.5rem;
}

.card-content {
    padding: 25px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.card p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.card .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: var(--dark-gray);
    color: var(--text-light);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    color: var(--white);
}

.footer-col h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: var(--accent-teal);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-medium);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-teal);
    padding-left: 5px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-teal);
    transform: translateY(-3px);
    color: var(--white);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Contact Buttons */
.contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow);
    z-index: 100;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
}

.contact-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

.email-btn {
    background: #D44638;
    color: white;
}

.email-btn:hover {
    box-shadow: 0 8px 20px rgba(212, 70, 56, 0.6);
}

.facebook-btn {
    background: #3b5998;
    color: white;
}

.facebook-btn:hover {
    box-shadow: 0 8px 20px rgba(59, 89, 152, 0.6);
}

.contact-label {
    position: absolute;
    right: 70px;
    background: var(--accent-teal);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.contact-btn:hover .contact-label {
    opacity: 1;
    right: 75px;
}

.facebook-stats {
    margin-top: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    background: linear-gradient(rgba(45, 49, 54, 0.9), rgba(45, 49, 54, 0.9)), url('https://images.unsplash.com/photo-1497215842964-222b430dc094?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    padding: 160px 0 100px;
}

.about-content {
    background: var(--medium-gray);
    border-radius: 15px;
    padding: 40px;
    margin-top: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background: var(--dark-gray);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--accent-teal);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 50px 0;
}

.stat-card {
    background: var(--dark-gray);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-teal);
    margin-bottom: 10px;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    background: linear-gradient(rgba(45, 49, 54, 0.9), rgba(45, 49, 54, 0.9)), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    padding: 160px 0 100px;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-info {
    background: var(--medium-gray);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    background: var(--accent-teal);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-form {
    background: var(--medium-gray);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--dark-gray);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.hours-table td {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-table tr:last-child td {
    border-bottom: none;
}

/* ===== SERVICES PAGE STYLES ===== */
.services-hero {
    background: linear-gradient(rgba(45, 49, 54, 0.9), rgba(45, 49, 54, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    padding: 160px 0 100px;
}

.service-detail {
    background: var(--medium-gray);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.service-detail:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.service-price {
    background: var(--accent-teal);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.service-feature {
    display: flex;
    align-items: flex-start;
}

.service-feature i {
    color: var(--accent-teal);
    margin-right: 12px;
    margin-top: 4px;
    font-size: 1.2rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content {
    background: var(--dark-gray);
    border-radius: 15px;
    padding: 30px 20px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-subtitle {
    text-align: center;
    margin: 60px 0 30px;
    font-size: 2rem;
}

.faq-item {
    background: var(--dark-gray);
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark-gray);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    /* ... existing styles ... */

/* Hero Section */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background: linear-gradient(rgba(45, 49, 54, 0.9), rgba(45, 49, 54, 0.9)), url('https://images.unsplash.com/photo-1497215842964-222b430dc094?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* ... existing styles ... */

/* ===== SERVICES PAGE STYLES ===== */
.services-hero {
    background: linear-gradient(rgba(45, 49, 54, 0.9), rgba(45, 49, 54, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    padding: 160px 0 100px;
}

.service-detail {
    background: var(--medium-gray);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

/* ... existing styles ... */

/* Footer */
footer {
    background: var(--dark-gray);
    color: var(--text-light);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ... existing styles ... */

/* Contact Buttons */
.contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

/* ... existing styles ... */

/* Responsive Adjustments */
@media (max-width: 768px) {
    /* ... existing media queries ... */
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .service-price {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
}

/* ... existing styles ... */
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .hero {
        padding-top: 140px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .tagline {
        font-size: 1.3rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .contact-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .contact-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .team-grid, .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .value-prop {
        padding: 20px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    }
