/* Home Page Styles */
:root {
    --gunmetal: #223843ff;
    --antiflash-white: #eff1f3ff;
    --timberwolf: #dbd3d8ff;
    --desert-sand: #d8b4a0ff;
    --burnt-sienna: #d77a61ff;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--gunmetal);
    background-color: var(--antiflash-white);
}

.main-content {
    margin-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--gunmetal) 0%, var(--burnt-sienna) 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 56, 67, 0.8) 0%, rgba(215, 122, 97, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary {
    background: var(--burnt-sienna);
    color: white;
    box-shadow: 0 4px 15px rgba(215, 122, 97, 0.3);
}

.cta-button.primary:hover {
    background: #c46952;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 122, 97, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--gunmetal);
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--gunmetal);
    font-weight: 600;
}

.about-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gunmetal);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.about-image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 15px 35px rgba(34, 56, 67, 0.1);
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.about-image:hover .about-img {
    transform: scale(1.05);
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.beliefs {
    margin-bottom: 0;
}

.beliefs h3 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--gunmetal);
    font-weight: 600;
}

.beliefs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.belief-item {
    background: var(--antiflash-white);
    padding: 1.5rem;
    text-align: left;
    border-left: 4px solid var(--burnt-sienna);
    transition: all 0.3s ease;
}

.belief-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(34, 56, 67, 0.1);
}

.belief-item p {
    font-size: 1.1rem;
    color: var(--gunmetal);
    font-weight: 500;
    margin: 0;
}

.why-choose h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--gunmetal);
    font-weight: 600;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border: 1px solid var(--timberwolf);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(34, 56, 67, 0.1);
    border-color: var(--desert-sand);
}

.feature-icon {
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(34, 56, 67, 0.1);
}

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-img {
    transform: scale(1.05);
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--gunmetal);
    font-weight: 600;
}

.feature-card p {
    color: var(--gunmetal);
    opacity: 0.8;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--antiflash-white);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--gunmetal);
    font-weight: 600;
}

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

.service-card {
    background: white;
    padding: 0;
    border: 1px solid var(--timberwolf);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--burnt-sienna);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(34, 56, 67, 0.1);
    border-color: var(--desert-sand);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--gunmetal);
    font-weight: 600;
}

.service-card p {
    color: var(--gunmetal);
    line-height: 1.6;
    opacity: 0.8;
    margin: 0 1.5rem 1.5rem;
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
    background: white;
}

.portfolio h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--gunmetal);
    font-weight: 600;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.portfolio-card {
    background: var(--antiflash-white);
    border: 1px solid var(--timberwolf);
    transition: all 0.3s ease;
    overflow: hidden;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(34, 56, 67, 0.1);
    border-color: var(--desert-sand);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--gunmetal);
    font-weight: 600;
}

.portfolio-card p {
    color: var(--gunmetal);
    line-height: 1.6;
    opacity: 0.8;
    margin: 0 1.5rem 1.5rem;
}

.portfolio-cta {
    text-align: center;
    padding: 2rem;
    background: var(--antiflash-white);
    border: 1px solid var(--timberwolf);
}

.portfolio-cta p {
    font-size: 1.2rem;
    color: var(--gunmetal);
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--antiflash-white);
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--gunmetal);
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    background: white;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--timberwolf);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 56, 67, 0.1);
    border-color: var(--desert-sand);
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--gunmetal);
    font-weight: 600;
}

.contact-item p {
    color: var(--gunmetal);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--burnt-sienna);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #c46952;
    text-decoration: underline;
}

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

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gunmetal);
    font-weight: 600;
}

.contact-info p {
    color: var(--gunmetal);
    line-height: 1.6;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0;
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-image-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-img {
        height: 300px;
    }

    .beliefs h3 {
        text-align: center;
    }

    .belief-item {
        text-align: center;
    }

    .about,
    .services,
    .portfolio,
    .contact {
        padding: 4rem 0;
    }

    .about h2,
    .services h2,
    .portfolio h2 {
        font-size: 2rem;
    }

    .beliefs-grid,
    .features-grid,
    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card,
    .portfolio-card {
        padding: 0;
    }

    .service-card h3,
    .service-card p,
    .portfolio-card h3,
    .portfolio-card p {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .about h2,
    .services h2,
    .portfolio h2 {
        font-size: 1.8rem;
    }

    .service-card,
    .portfolio-card,
    .contact-item {
        padding: 0;
    }

    .service-card h3,
    .service-card p,
    .portfolio-card h3,
    .portfolio-card p {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }

    .container {
        padding: 0 0.5rem;
    }
}
