/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Colors */
:root {
    --primary: #005596;
    --accent: #05428C;
    --background-light: #F8FAFC;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
}

/* Header styles */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0.5rem 0;
    gap: 1.5rem;
}

.search-container {
    position: relative;
    width: 16rem;
}

.search-input {
    width: 100%;
    border: 1px solid var(--slate-200);
    border-radius: 0.125rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
}

.search-input:focus {
    outline: none;
    border-color: var(--slate-400);
}

.search-icon {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate-400);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-link {
    text-decoration: none;
}

.social-link.facebook {
    color: #3b5998;
}

.social-link.youtube {
    color: #ff0000;
}

.flag-img {
    width: 1.25rem;
    height: auto;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
}

.logo {
    height: 2.5rem;
}

.nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .nav {
        display: flex;
        gap: 2rem;
    }
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--slate-800);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.mobile-menu {
    display: block;
    font-size: 1.5rem;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none;
    }
}

/* Hero section */
.hero {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
}

.hero-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-content {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 0 2rem;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Main content */
.main {
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem 1rem;
}

@media (min-width: 640px) {
    .main {
        padding: 4rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .main {
        padding: 4rem 2rem;
    }
}

/* .grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .grid {
        grid-template-columns: 7fr 5fr;
    }
} */

/* Contact info section */
.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.section-icon {
    background-color: rgba(0, 174, 239, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-icon .material-symbols-outlined {
    color: var(--accent);
    font-size: 1.875rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
}

@media screen and (max-width:540px) {
    .section-title {
        font-size: 20px;
    }

    .section-header {
        gap: 0.5rem;
    }
}

.section-subtitle {
    color: #0e0e0e;
    margin-bottom: 1.5rem;
}

.product-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* @media (min-width: 640px) { */
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }
/* } */

.product-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: white;
    border: 2px solid var(--slate-200);
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.product-card svg path {
    transition: fill 0.3s ease;
}

@media screen and (max-width:640px) {
    .product-card {
        padding: 0.5rem;
    }

    .product-grid {
        gap: 0.75rem;
    }
}

.product-card.active {
    border-color: var(--accent);
}

.product-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.product-card:hover svg path {
    fill: var(--accent);
}

.product-card-title {
    font-weight: 700;
    color: var(--slate-700);
}

.product-card.active .product-card-title {
    color: var(--accent);
}

.product-card-arrow {
    color: var(--slate-300);
    transition: all 0.3s ease;
}

.product-card:hover .product-card-arrow {
    color: var(--accent);
    transform: translateX(0.25rem);
}

.product-card.active .product-card-arrow {
    color: var(--accent);
}

/* Contact details */
.contact-details {
    border: 2px solid var(--accent);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.contact-details-content {
    background-color: white;
    padding: 1rem;
}

@media screen and (max-width: 540px) {
    .contact-details-content {
        padding: 20px;
    }
}

.contact-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.contact-market {
    margin-bottom: 1.5rem;
}

.contact-market:last-child {
    margin-bottom: 0;
}

.market-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--slate-800);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.market-title .material-symbols-outlined {
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

.contacts-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contacts-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-card {
    background-color: var(--slate-50);
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--slate-100);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.contact-name {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-title {
    color: var(--accent);
    font-size: 0.6875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.contact-market-info {
    color: var(--slate-500);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

.contact-item .material-symbols-outlined {
    color: var(--slate-400);
    margin-right: 0.75rem;
    font-size: 1.125rem;
}

.contact-email {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: var(--accent);
}

.domestic-contact {
    max-width: 24rem;
}

/* Contact form */
.contact-form-container {
    background-color: white;
    padding: 1.5rem 1rem;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--slate-100);
    position: relative;
    overflow: hidden;
}

/* .contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.375rem;
    background-color: var(--accent);
} */

@media screen and (max-width: 540px) {
    .contact-form-container {
        padding: 16px 20px;
    }
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.form-title .material-symbols-outlined {
    color: var(--accent);
    margin-right: 0.75rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-label {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--slate-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    background-color: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
}

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

.form-row {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.captcha {
    background-color: var(--slate-50);
    padding: 1rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--slate-100);
}

/* .captcha-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
} */

/* .captcha-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--accent);
    border: 1px solid var(--slate-300);
    border-radius: 0.25rem;
} */

/* .captcha-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
} */

/* .captcha-image {
    width: 1.75rem;
    height: 1.75rem;
    opacity: 0.4;
    filter: grayscale(100%);
} */

.submit-button {
    width: 100%;
    background-color: var(--accent);
    color: white;
    font-weight: 700;
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(20, 54, 120, 0.25);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 0.05em;
}

.submit-button:hover {
    background-color: #0ea5e9;
}

.submit-button:active {
    transform: scale(0.98);
}

.submit-button .material-symbols-outlined {
    font-size: 1.125rem;
    display: flex;
    align-items: center;
}

.submit-button span {
    font-family: 'Open Sans', 'sans-serif';
}

/* Footer */
.footer {
    background-color: var(--primary);
    padding: 4rem 0;
    margin-top: 4rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .footer-content {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        padding: 0 2rem;
    }
}

.footer-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.footer-section h4 {
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-address {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    color: inherit;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.footer-social-link:hover {
    background-color: var(--accent);
}

.footer-social-link .material-symbols-outlined {
    font-size: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.newsletter {
    grid-column: span 2;
}

.newsletter p {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    max-width: 24rem;
}

.newsletter-form {
    display: flex;
    max-width: 28rem;
}

.newsletter-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem 0 0 0.75rem;
    padding: 0.75rem 1.25rem;
    flex: 1;
    color: white;
    font-size: 0.875rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent);
}

.newsletter-button {
    background-color: var(--accent);
    padding: 0 1.5rem;
    border-radius: 0 0.75rem 0.75rem 0;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-button:hover {
    background-color: #0ea5e9;
}

.newsletter-button .material-symbols-outlined {
    font-size: 1.25rem;
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    padding-top: 2.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}


@media (min-width: 1024px) {
    .contact-page-grid {
        display: grid;
        gap: 2rem;
        grid-template-columns: 7fr 5fr;
    }
}

@media screen and (max-width: 1023px) {
    .contact-page-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
}

.clear-both {
    clear: both;
}

.contact-section {
    padding: 64px 32px;
    background : #F8FAFC
}

@media screen and (max-width: 540px) {
    .contact-section {
        padding: 32px 16px;
    }
}

.captcha {
    overflow: hidden;
}

.captcha-content {
    width: 100%;
}

.g-recaptcha > div {
    width: 100% !important;
}

.g-recaptcha iframe{
    height: auto !important;
    float: unset !important;
}

textarea,
input {
    font-family: 'Open Sans', 'sans-serif';
}