.elementor-5410 .elementor-element.elementor-element-2f849cf{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-5410 .elementor-element.elementor-element-d052dfd{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:flex-start;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-5410 .elementor-element.elementor-element-491b455{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-5410 .elementor-element.elementor-element-fbe8bf9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-5410 .elementor-element.elementor-element-1f1284b{width:var( --container-widget-width, 104.591% );max-width:104.591%;--container-widget-width:104.591%;--container-widget-flex-grow:0;}.elementor-5410 .elementor-element.elementor-element-1f1284b.elementor-element{--flex-grow:0;--flex-shrink:0;}@media(min-width:768px){.elementor-5410 .elementor-element.elementor-element-491b455{--width:50%;}.elementor-5410 .elementor-element.elementor-element-fbe8bf9{--width:50%;}}/* Start custom CSS *//* Kogu see CSS kood kleepida Elementori lehe seadete "Kohandatud CSS" alajaotusse */

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

body {
    background: #f5f7fa;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #4a5e77;
}

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

/* Header Section */
.header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.header h1 {
    color: #0C2442;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.header p {
    font-size: 1.1rem;
    color: #4a5e77;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Contact Grid - Full width (see on nüüd peamine paigutus Elementoris) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr; /* See võib Elementoris üle kirjutada, kui kasutad Elementori veergusid */
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-card {
    background: linear-gradient(135deg, #ffffff, #e8ecef);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(12,36,66,0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-0.625rem);
}

.contact-card h2 {
    color: #0C2442;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.contact-card svg {
    width: 2rem;
    height: 2rem;
    fill: #0C2442;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.info-item svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: #0C2442;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.info-item span {
    color: #4a5e77;
    font-size: 1rem;
}

.info-item a {
    color: #0C2442;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #1a4d73;
}

/* Main Sections - 60/40 layout */
.section-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

/* Company Info Section - Expanded */
.company-info {
    background: linear-gradient(135deg, #ffffff, #e8ecef);
    color: #4a5e77;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(12,36,66,0.1);
    position: relative;
    overflow: hidden;
}

.company-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.3125rem;
    background: #0C2442;
}

.company-info h2 {
    color: #0C2442;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.company-details .info-item {
    background: rgba(12,36,66,0.03);
    padding: 1.1rem;
    border-radius: 10px;
    border: 1px solid rgba(12,36,66,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-details .info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(12,36,66,0.1);
}

.company-details .info-item span {
    color: #4a5e77;
    font-weight: 500;
    font-size: 0.95rem;
}

.company-details .info-item svg {
    fill: #0C2442;
}

/* Contact Form Section - Distinct clean box design */
.contact-form {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(12,36,66,0.08);
}

.contact-form h2 {
    color: #0C2442;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 600;
}

.contact-form p {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #4a5e77;
    font-size: 0.95rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: #0C2442;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid rgba(12,36,66,0.2);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0C2442;
    box-shadow: 0 0 0 2px rgba(12,36,66,0.1);
}

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

.submit-button {
    background: #0C2442;
    color: white;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.submit-button:hover {
    background: #1a4d73;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(12,36,66,0.3);
}

.direct-contact {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(12,36,66,0.1);
}

.direct-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.email-link {
    color: #0C2442;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #1a4d73;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
        max-width: 100%;
    }

    .header h1 {
        font-size: 1.9rem;
    }

    .header p {
        font-size: 1.05rem;
    }

    .contact-grid {
        gap: 1.5rem;
    }

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

    .contact-card {
        padding: 1.5rem;
    }

    .contact-card h2 {
        font-size: 1.3rem;
    }

    .company-info {
        padding: 1.5rem;
    }

    .company-info h2 {
        font-size: 1.3rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form h2 {
        font-size: 1.3rem;
    }
}

/* Phone Styles */
@media (max-width: 480px) {
    .container {
        padding: 1rem 0.75rem;
    }

    .header h1 {
        font-size: 1.7rem;
    }

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

    .contact-card {
        padding: 1.25rem;
    }

    .contact-card h2 {
        font-size: 1.2rem;
        gap: 0.5rem;
    }

    .contact-card svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .info-item {
        gap: 0.5rem;
    }

    .info-item span {
        font-size: 0.9rem;
    }

    .company-info {
        padding: 1.25rem;
    }

    .company-info h2 {
        font-size: 1.2rem;
    }

    .company-details .info-item span {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .contact-form h2 {
        font-size: 1.2rem;
    }
}/* End custom CSS */