/* SendShield Page Styles */

/* Hero Section */
.sendshield-hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-image: url('../../assets/images/sendshield/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sendshield-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.sendshield-hero-content {
    text-align: center;
    color: var(--text-white);
    padding: 2rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sendshield-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
}

.sendshield-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

.sendshield-hero-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.sendshield-hero-btn:hover {
    background-color: #ffffff;
    color: #1a1a2e;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .sendshield-hero-section {
        min-height: 400px;
    }
    
    .sendshield-hero-title {
        font-size: 2rem;
    }
    
    .sendshield-hero-subtitle {
        font-size: 1rem;
    }
}

/* Protect Section */
.protect-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

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

.protect-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.2;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.protect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.protect-card {
    background-color: #1a1a2e;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.protect-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.protect-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.protect-card-text {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

.protect-conclusion {
    font-size: 1.125rem;
    color: #333;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .protect-section {
        padding: 3rem 1.5rem;
    }
    
    .protect-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .protect-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .protect-card {
        padding: 2rem 1.5rem;
    }
    
    .protect-icon {
        font-size: 2.5rem;
    }
    
    .protect-card-title {
        font-size: 1.25rem;
    }
    
    .protect-card-text {
        font-size: 0.95rem;
    }
    
    .protect-conclusion {
        font-size: 1rem;
    }
}

/* Shield Business Section */
.shield-business-section {
    background-color: #1a1a2e;
    padding: 5rem 2rem;
}

.shield-business-container {
    max-width: 1200px;
    margin: 0 auto;
}

.shield-business-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.shield-business-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.shield-business-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.shield-business-paragraph {
    font-size: 1.125rem;
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
}

.shield-business-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-visual-container {
    position: relative;
    background-color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.shield-label {
    position: absolute;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a2e;
    z-index: 2;
    top: 0.25rem;
}

.shield-label-without {
    left: 25%;
    transform: translateX(-50%);
}

.shield-label-with {
    left: 75%;
    transform: translateX(-50%);
}

.shield-business-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    margin: 0 auto;
}

@media (max-width: 768px) {
    .shield-business-section {
        padding: 3rem 1.5rem;
    }
    
    .shield-business-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .shield-business-title {
        font-size: 2rem;
    }
    
    .shield-business-paragraph {
        font-size: 1rem;
    }
}

/* How SendShield Section */
.how-sendshield-section {
    background-color: #87CEEB;
    padding: 0;
    overflow: hidden;
}

.how-sendshield-container {
    max-width: 100%;
    margin: 0;
}

.how-sendshield-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: start;
}

.how-sendshield-shield {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.shield-image {
    width: auto;
    height: auto;
    max-width: none;
    display: block;
}

.how-sendshield-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 2rem 2rem 0;
}

.how-sendshield-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.2;
}

.how-sendshield-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.how-sendshield-card {
    background-color: #1a1a2e;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.how-sendshield-card-icon {
    font-size: 3rem;
    flex-shrink: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-sendshield-card-content {
    flex: 1;
}

.how-sendshield-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.how-sendshield-card-text {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .how-sendshield-section {
        padding: 0;
    }
    
    .how-sendshield-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .how-sendshield-shield {
        justify-content: center;
    }
    
    .shield-image {
        max-width: 100%;
    }
    
    .how-sendshield-info {
        padding: 2rem 1.5rem;
    }
    
    .how-sendshield-title {
        font-size: 2rem;
    }
    
    .how-sendshield-card {
        padding: 1.5rem;
    }
    
    .how-sendshield-card-icon {
        font-size: 2rem;
    }
    
    .how-sendshield-card-title {
        font-size: 1.125rem;
    }
    
    .how-sendshield-card-text {
        font-size: 0.95rem;
    }
}

/* SendShield Contact Section */
.sendshield-contact-section {
    background-color: #ffffff;
    padding: 0 2rem 5rem 2rem;
}

.sendshield-contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sendshield-contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.sendshield-contact-intro {
    font-size: 1.125rem;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sendshield-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sendshield-contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2rem;
}

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

.sendshield-contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sendshield-contact-form .form-group label {
    font-size: 0.95rem;
    color: #1a1a2e;
    font-weight: 500;
}

.sendshield-contact-form .form-group input,
.sendshield-contact-form .form-group select,
.sendshield-contact-form .form-group textarea {
    padding: 0.875rem;
    border: 1px solid #1a1a2e;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    color: #1a1a2e;
    background-color: #ffffff;
}

.sendshield-contact-form .form-group.has-error input,
.sendshield-contact-form .form-group.has-error select,
.sendshield-contact-form .form-group.has-error textarea {
    border-color: #dc3545;
}

.sendshield-contact-form .form-group.has-error input::placeholder,
.sendshield-contact-form .form-group.has-error select::placeholder,
.sendshield-contact-form .form-group.has-error textarea::placeholder {
    color: #dc3545;
    opacity: 1;
}

.sendshield-contact-form .form-group input:focus,
.sendshield-contact-form .form-group select:focus,
.sendshield-contact-form .form-group textarea:focus {
    outline: none;
    border-color: #87ceeb;
}

.sendshield-contact-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a1a2e' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    padding-right: 2.5rem;
}

.sendshield-contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.sendshield-contact-form .submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.sendshield-contact-submit-btn {
    padding: 1rem 2.5rem;
    background-color: #1a1a2e;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sendshield-contact-submit-btn:hover {
    background-color: #2a2a4e;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.sendshield-contact-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.sendshield-email-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .sendshield-contact-section {
        padding: 3rem 1.5rem;
    }
    
    .sendshield-contact-title {
        font-size: 2rem;
    }
    
    .sendshield-contact-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .sendshield-contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sendshield-contact-graphic {
        min-height: 300px;
    }
}

