/* ================================================
   HERO SECTION - Common hero styles for all pages
   ================================================ */

.hero-section,
.projects-hero,
.contact-hero,
.downloads-hero,
.privacy-hero,
.pricing-hero,
.support-hero,
.support-page-hero {
    background: linear-gradient(135deg, #003366 0%, #004180 50%, #0056a3 100%);
    padding: 70px 0 50px;
    color: white;
    position: relative;
    overflow: hidden;
}

.support-page-hero {
    padding: 53px 0 35px;
}

.hero-section::before,
.projects-hero::before,
.contact-hero::before,
.downloads-hero::before,
.privacy-hero::before,
.pricing-hero::before,
.support-hero::before,
.support-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/cloud.png');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-section .container,
.hero-section .container-fluid,
.projects-hero .container,
.contact-hero .container,
.downloads-hero .container,
.privacy-hero .container,
.pricing-hero .container,
.support-hero .container,
.support-page-hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: 40px;
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 40px;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-icon-column {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icon {
    font-size: 120px !important;
    color: #FFD700;
    display: block;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-content-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    max-width: 700px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
    color: white;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge .material-symbols-outlined {
    font-size: 20px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-actions .btn-primary {
    background-color: #FF6B35;
    border-color: #FF6B35;
}

.hero-actions .btn-primary:hover {
    background-color: #E85A2A;
    border-color: #E85A2A;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.3);
}

.hero-actions .btn-outline-primary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.hero-actions .btn-outline-primary:hover {
    background-color: white;
    color: #004180;
    transform: translateY(-2px);
}

.hero-features {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-feature-item .material-symbols-outlined {
    font-size: 24px;
    color: #FFD700;
}

.hero-image {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ================================================
   SECTION STYLES - Common section styles
   ================================================ */

.value-section,
.intro-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
}

.section-description,
.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

/* ================================================
   CARD STYLES - Common card styles
   ================================================ */

.benefit-card,
.client-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover,
.client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 65, 128, 0.15);
    border-color: #004180;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #003366, #004180);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon .material-symbols-outlined {
    font-size: 36px;
    color: white;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 16px;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 0;
}

.value-icon-container {
    background: linear-gradient(135deg, #003366, #004180);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.2);
}

.value-icon {
    font-size: 100px !important;
    color: white;
}

/* ================================================
   CTA SECTION - Common call-to-action styles
   ================================================ */

.projects-cta,
.help-section,
.cta-section {
    background: linear-gradient(135deg, #003366 0%, #004180 50%, #0056a3 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.projects-cta::before,
.help-section::before,
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/cloud.png');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.projects-cta .container,
.help-section .container,
.cta-section .container {
    position: relative;
    z-index: 1;
}

.help-icon,
.cta-icon {
    font-size: 80px !important;
    color: #FFD700;
    display: block;
    margin-bottom: 24px;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.projects-cta .btn-light,
.help-section .btn-light,
.cta-section .btn-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    background-color: white;
    color: #004180;
    border: none;
    transition: all 0.3s ease;
}

.projects-cta .btn-light:hover,
.help-section .btn-light:hover,
.cta-section .btn-light:hover {
    background-color: #FF6B35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.3);
}

/* ================================================
   FORM STYLES - Common form elements
   ================================================ */

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #003366;
    margin-bottom: 8px;
}

.form-label .material-symbols-outlined {
    font-size: 20px;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #004180;
    box-shadow: 0 0 0 0.2rem rgba(0, 65, 128, 0.1);
}

.form-control::placeholder {
    color: #adb5bd;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #004180;
    border-color: #004180;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover:not(:disabled) {
    background-color: #003366;
    border-color: #003366;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 65, 128, 0.2);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.validation-summary {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    color: #856404;
}

.validation-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 4px;
    display: block;
}

/* ================================================
   INFO BOXES - Common alert/notification boxes
   ================================================ */

.info-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid #2196f3;
    border-radius: 8px;
    padding: 20px 24px;
    margin: 24px 0;
    display: flex;
    gap: 16px;
}

.info-box .material-symbols-outlined {
    font-size: 28px;
    color: #1976d2;
    flex-shrink: 0;
}

.info-box-content p {
    margin: 0;
    color: #01579b;
}

.warning-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 4px solid #ffc107;
    border-radius: 8px;
    padding: 20px 24px;
    margin: 24px 0;
    display: flex;
    gap: 16px;
}

.warning-box .material-symbols-outlined {
    font-size: 28px;
    color: #f57c00;
    flex-shrink: 0;
}

.warning-box-content p {
    margin: 0;
    color: #e65100;
}

.success-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-left: 4px solid #4caf50;
    border-radius: 8px;
    padding: 20px 24px;
    margin: 24px 0;
    display: flex;
    gap: 16px;
}

.success-box .material-symbols-outlined {
    font-size: 28px;
    color: #2e7d32;
    flex-shrink: 0;
}

.success-box-content p {
    margin: 0;
    color: #1b5e20;
}

/* ================================================
   RESPONSIVE DESIGN - Mobile and tablet breakpoints
   ================================================ */

@media (max-width: 767.98px) {
    .hero-section,
    .projects-hero,
    .support-hero {
        padding: 50px 0;
    }

    .support-page-hero {
        padding: 40px 0 30px 0;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .hero-icon-column {
        grid-row: span 1;
    }

    .hero-icon {
        font-size: 80px !important;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description,
    .intro-text {
        font-size: 16px;
    }

    .value-section,
    .intro-section {
        padding: 50px 0;
    }

    .projects-cta,
    .help-section,
    .cta-section {
        padding: 50px 0;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-description {
        font-size: 16px;
    }

    .help-icon,
    .cta-icon {
        font-size: 60px !important;
    }

    .projects-cta .btn-light,
    .help-section .btn-light,
    .cta-section .btn-light {
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .info-box,
    .warning-box,
    .success-box {
        flex-direction: column;
        gap: 12px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-grid {
        gap: 32px;
    }

    .hero-icon {
        font-size: 100px !important;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-description,
    .intro-text {
        font-size: 18px;
    }
}
