@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Poppins:wght@600;700&display=swap');

:root {
    --primary-color: #004d40; /* Dark Green - for accents if needed */
    --secondary-color: #c7bb9d;
    --text-color: #f0f0f0;
    --text-light: #cccccc;
    --bg-color: #192221;
    --glass-bg: rgba(40, 56, 53, 0.65);
    --glass-border: rgba(255, 255, 255, 0.18);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: var(--bg-color);
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero {
    background-color: transparent;
    padding: 4rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero img {
    max-width: 150px;
    height: auto;
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-weight: 700;
    font-size: 2.5rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
    max-width: 500px;
}

main {
    padding: 4rem 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: #ffffff;
    text-align: center;
    margin-top: 0;
    margin-bottom: 3rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 0.5rem auto 0;
}

.card {
    background: var(--glass-bg);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    transition: box-shadow 0.25s ease, background 0.25s ease;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    margin-bottom: 2.5rem;
}

.card:hover {
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    background: rgba(40, 56, 53, 0.75);
}

.info-item h3, .contact-section h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    margin-top: 0;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.card strong {
    color: #ffffff;
    font-weight: 500;
}

.info-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.info-item a:hover {
    text-decoration: underline;
    color: #fff;
}

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

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

.service-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    background: rgba(0,0,0,0.1);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.service-item:hover {
    background: rgba(0,0,0,0.2);
}

.service-item .service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
}

.service-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    flex-grow: 1;
}

.contact-section {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-links a {
    color: var(--secondary-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-links a:hover {
    color: #ffffff;
}

footer {
    text-align: center;
    padding: 2.5rem 1.5rem;
    font-size: 0.9em;
    color: var(--text-light);
    background-color: var(--bg-color);
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
}

address {
    font-style: normal;
    line-height: 1.6;
}

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

@media (max-width: 767px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        order: 2;
    }
    .hero img {
        order: 1;
        max-width: 120px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    main {
        padding: 3rem 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
}
