/* GoPolska.com - Polish Flag Colors with Lato Font */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

:root {
    --polish-red: #DC143C;
    --polish-red-dark: #B8112A;
    --polish-white: #FFFFFF;
    --text-dark: #2c3e50;
    --text-medium: #555555;
    --text-light: #777777;
    --bg-light: #f8f9fa;
    --bg-gray: #ecf0f1;
}

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

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--polish-white);
}

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

/* Header & Navigation */
header {
    background-color: var(--polish-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--polish-red);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links li a:hover {
    color: var(--polish-red);
}

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

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

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 2px solid var(--polish-red);
    background-color: var(--polish-white);
    color: var(--polish-red);
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background-color: var(--polish-red);
    color: var(--polish-white);
    transform: translateY(-2px);
}

.lang-btn.active {
    background-color: var(--polish-red);
    color: var(--polish-white);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--polish-red);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--polish-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 1rem 2rem;
    text-decoration: none;
    color: var(--text-dark);
    border-bottom: 1px solid var(--bg-gray);
    font-weight: 600;
}

.mobile-menu a:hover {
    background-color: var(--bg-light);
    color: var(--polish-red);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--polish-white) 0%, var(--polish-red) 100%);
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--polish-white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--polish-white);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--polish-white);
    color: var(--polish-red);
    border: 2px solid var(--polish-white);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--polish-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--polish-white);
    border: 2px solid var(--polish-white);
}

.btn-secondary:hover {
    background-color: var(--polish-white);
    color: var(--polish-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services {
    padding: 5rem 0;
}

.services:nth-of-type(odd) {
    background-color: var(--polish-white);
}

.services:nth-of-type(even) {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--polish-red);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

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

.service-card {
    background-color: var(--polish-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.2);
    border-color: var(--polish-red);
}

.service-card img {
    border-radius: 8px;
    width: 100%;
    height: auto;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    color: var(--polish-red);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-medium);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 400;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--polish-red);
    font-weight: 900;
    font-size: 1.2rem;
}

/* Credibility Section */
.credibility {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--polish-red) 0%, var(--polish-red-dark) 100%);
    color: var(--polish-white);
}

.credibility-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.experience-highlight h3 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.experience-highlight p {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.95;
}

.countries {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.country-flag {
    font-size: 2.5rem;
}

.testimonial {
    font-style: italic;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.8;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    border-left: 4px solid var(--polish-white);
    margin-bottom: 1rem;
}

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

.stat {
    text-align: center;
    min-width: 120px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-color: var(--bg-gray);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--polish-red);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.cta-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.cta-highlight {
    background-color: var(--polish-white);
    color: var(--polish-red);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--polish-red);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--polish-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--polish-red);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-medium);
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-details .icon {
    font-size: 1.5rem;
    color: var(--polish-red);
    min-width: 30px;
}

.contact-details strong {
    color: var(--text-dark);
    font-weight: 700;
}

.contact-details a {
    color: var(--polish-red);
    text-decoration: none;
    font-weight: 400;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--polish-red);
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--polish-red);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background-color: var(--polish-red);
    color: var(--polish-white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--polish-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.2);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--polish-white);
    padding: 3rem 0 1.5rem;
}

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

.footer-section h4 {
    color: var(--polish-red);
    font-weight: 900;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 400;
    margin-bottom: 0.6rem;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--polish-red);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 400;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

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

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

    .section-title h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-highlights {
        flex-direction: column;
        align-items: center;
    }

    .credibility-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats {
        justify-content: center;
    }

    .countries {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }

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

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

    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}
