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

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f0f4f8;
    color: #1a2e44;
    overflow-x: hidden;
}

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

.navbar {
    position: sticky;
    top: 0;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.transparent {
    background: transparent;
    box-shadow: none;
}

.navbar.solid {
    background: linear-gradient(90deg, #1a2e44, #2a6f97);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.navbar.transparent .logo {
    color: #1a2e44;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: color 0.3s;
    padding: 8px 15px;
    position: relative;
}

.navbar.transparent .nav-links a {
    color: #1a2e44;
}

.nav-links a:hover {
    color: #4a9b8f;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #4a9b8f;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #1a2e44;
    margin: 2px 0;
    transition: all 0.3s, background-color 0.3s ease;
}

.navbar.solid .hamburger .bar {
    background-color: white;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    .logo {
        font-size: 1.2em;
    }
    .hamburger {
        display: flex;
    }
    .nav-links {
        display: none;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: #1a2e44;
        flex-direction: column;
        padding: 1rem 0;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        margin: 0;
        padding: 10px 20px;
        color: white;
    }
	.navbar.transparent .nav-links a {
		color: white;
	}
}

.hero {
    background: linear-gradient(135deg, #1a2e44, #2a6f97), url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23ffffff" fill-opacity="0.1" d="M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,85.3C672,75,768,85,864,106.7C960,128,1056,160,1152,176C1248,192,1344,192,1392,192L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-in;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3em;
    margin: 0;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    color: #1a2e44;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.8;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.contact {
    font-size: 1.3em;
    font-weight: 600;
    margin-top: 15px;
}

.contact a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.contact a:hover {
    color: #4a9b8f;
}

.seo-section {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    animation: slideUp 0.8s ease-out;
}

.seo-section h2, .seo-section h3 {
    color: #1a2e44;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.seo-section ul {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.seo-section li {
    background: #f9fafb;
    padding: 20px;
    border-left: 5px solid #4a9b8f;
    border-radius: 8px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease backwards;
    animation-delay: calc(var(--order) * 0.1s);
}

.seo-section li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-container {
    margin-top: 40px;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    animation: slideIn 0.8s ease-out;
    text-align: center;
}

.form-container a {
    color: #1a2e44;
    text-decoration: none;
    transition: color 0.3s;
}

.form-container h2 {
    color: #1a2e44;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-top: 0;
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2a6f97;
}

input, textarea {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    border: 2px solid #e0e7ff;
    border-radius: 6px;
    font-size: 1em;
    transition: all 0.3s ease;
    background: #f9fafb;
}

input:focus, textarea:focus {
    border-color: #4a9b8f;
    outline: none;
    box-shadow: 0 0 5px rgba(74, 155, 143, 0.5);
}

button {
    background: linear-gradient(90deg, #4a9b8f, #2a6f97);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease;
}

button:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #3a7b6f, #1a4e6e);
}

#formStatus {
    margin-top: 15px;
    font-style: italic;
    font-size: 1.1em;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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