/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #f8f8f8;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Crimson Text', serif;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 2.8rem;
    font-weight: 600;
}

h2 {
    font-size: 2.4rem;
    font-weight: 400;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #4a4a4a;
    font-weight: 300;
}


/* Hero Section */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.1);
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 75vh;
}

.hero-content .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-logo {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    color: white;
    font-family: 'Crimson Text', serif;
}

.hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 600px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    color: #f0f0f0;
    font-weight: 300;
    text-align: center;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.btn-primary, .btn-secondary {
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 400;
    transition: all 0.4s ease;
    display: inline-block;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: #ffffff;
}

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

.about-text h3 {
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.mission {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 0;
    border-left: 3px solid #8a8a8a;
    margin-top: 3rem;
}

.mission-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #2c2c2c;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.6;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    filter: grayscale(20%);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #f5f5f5;
}

.services h3 {
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.services-intro {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: #4a4a4a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-top: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-top-color: #8a8a8a;
}

.service-card h4 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.service-card p {
    margin-bottom: 0;
    color: #5a5a5a;
    line-height: 1.6;
}

/* Values Section */
.values {
    padding: 6rem 0;
    background-color: #ffffff;
}

.values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.values-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    filter: grayscale(20%);
}

.values-text h3 {
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.values-list {
    list-style: none;
    margin-top: 2.5rem;
}

.values-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.2rem;
    color: #4a4a4a;
    font-weight: 300;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li:before {
    content: '—';
    color: #8a8a8a;
    margin-right: 1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #f5f5f5;
}

.contact-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-content h3 {
    color: #f5f5f5;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-subtitle {
    color: #c0c0c0;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    text-align: center;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-section {
    text-align: center;
}

.phone-number {
    font-size: 2.2rem;
    color: #f5f5f5;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    font-family: 'Crimson Text', serif;
}

.phone-cta {
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #f5f5f5;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 400;
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.phone-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    color: #d0d0d0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #f5f5f5;
    font-size: 1rem;
    border-radius: 0;
    font-family: 'Source Sans Pro', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0a0a0;
}

.form-submit {
    padding: 1.2rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: #f5f5f5;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 1rem;
    font-family: 'Source Sans Pro', sans-serif;
}

.form-submit:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background-color: #0f0f0f;
    color: #f5f5f5;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h4 {
    color: #f5f5f5;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.footer-logo p {
    color: #a0a0a0;
    font-style: italic;
    font-size: 1.1rem;
}

.footer-contact p {
    color: #d0d0d0;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #808080;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
    }
    
    .hero-content {
        padding: 4rem 0;
        min-height: 60vh;
    }
    
    .hero-logo {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
        text-align: center;
    }
    
    .about-content,
    .values-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .phone-number {
        font-size: 2rem;
    }
    
    .phone-cta {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .values-content {
        grid-template-columns: 1fr;
    }
    
    .values-image {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        min-height: 50vh;
    }
    
    .hero-content {
        padding: 3rem 0;
        min-height: 50vh;
    }
    
    .hero-logo {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 180px;
    }
    
    .service-card,
    .mission {
        padding: 1.5rem;
    }
    
    .phone-number {
        font-size: 1.8rem;
    }
    
    .phone-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .form-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.about-text,
.values-text {
    animation: fadeIn 0.6s ease-out;
}