/* Base styles */
:root {
    --primary: #000000;
    --secondary: #000000;
    --accent: #ffffff;
    --light: #ffffff;
    --dark: #000000;
    --gray: #f0f0f0;
    --light-gray: #f8f8f8;
}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--light);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo svg {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo .brand-name {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--dark);
    font-weight: 700;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--dark);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background-color: var(--light);
    border-bottom: 1px solid var(--gray);
    text-align: center;
}

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

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.hero .tagline {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 500;
    font-style: italic;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.btn {
    display: inline-block;
    background-color: var(--dark);
    color: var(--light);
    padding: 12px 30px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    border: 2px solid var(--dark);
}

.btn:hover {
    background-color: var(--light);
    color: var(--dark);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--light);
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--dark);
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card {
    background-color: var(--light);
    padding: 30px;
    border: 1px solid var(--dark);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

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

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    margin-bottom: 15px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: var(--light);
    border: 1px solid var(--dark);
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--dark);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.image-column img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--light);
    border-top: 1px solid var(--gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-image img {
    max-width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--dark);
    background: var(--light);
    box-shadow: 3px 3px 0 rgba(0,0,0,1);
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--dark);
    margin-right: 15px;
    font-size: 1.2rem;
}

.contact-form {
    background-color: var(--light);
    padding: 30px;
    border: 1px solid var(--dark);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--dark);
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: var(--light);
}

.form-control:focus {
    border-color: var(--dark);
    outline: none;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 1);
}

textarea.form-control {
    height: 120px;
    resize: vertical;
}

.btn-submit {
    background-color: var(--dark);
    color: var(--light);
    border: 2px solid var(--dark);
    padding: 12px 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: var(--light);
    color: var(--dark);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 40px 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo svg {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.footer-logo svg circle, .footer-logo svg line {
    stroke: white;
    fill: white;
}

.footer-logo .brand-name {
    font-size: 1.3rem;
    font-weight: 500;
    color: white;
}

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

.footer-links ul li {
    margin-left: 20px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--light);
    text-decoration: underline;
}

.copyright {
    margin-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero {
        padding: 130px 0 80px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .about-content, .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 20px;
        justify-content: center;
    }
    
    .footer-links ul {
        justify-content: center;
    }
    
    .footer-links ul li {
        margin: 0 10px;
    }
    
    .contact-image {
        margin-top: 30px;
    }
} 