/* Hero Section */
.hero-section {
    background-image: url('https://d64gsuwffb70l.cloudfront.net/69402c8fcadd42f38b24c4be_1765813487149_245deea6.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgb(39, 65, 126);
    /* Fallback color */
    height: 75vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    padding: 6rem 1.5rem;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(4, 39, 120, 0.85) 0%, rgba(4, 39, 121, 0.8) 50%, rgba(4, 39, 100, 0.85)100%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Security Badge */
.security-badge {
    display: inline-flex;
    align-items: center;
    margin-right: 0.75rem;
    background-color: #374151;
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.security-badge .shield-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    margin-right: 0.5rem;
}

/* Headline */
.hero-headline {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero-headline .highlight {
    color: #dc2626;
}

/* Description */
.hero-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #e5e7eb;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 100%;
}

.btn-hero-primary {
    background-color: #dc2626;
    color: #ffffff;
    border: 2px solid #dc2626;
    font-weight: bold !important;
}

.btn-hero-primary:hover {
    background-color: #b91c1c;
    color: #ffffff;
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

.btn-hero-secondary {
    background-color: #1e3a5f;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-hero-secondary:hover {
    background-color: #0f2542;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Statistics Section */
.stats-section {
    background-color: #ffffff;
    padding: 6rem 0;
    height: 15vh;
    min-height: 150spx;
    display: flex;
    align-items: center;
}

.stats-section .container {
    width: 100%;
}

.stat-item {
    text-align: center;
    padding: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* Responsive - Tablet and up */
@media (min-width: 576px) {
    .hero-section {
        padding: 8rem 2rem;
    }

    .security-badge {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .security-badge .shield-icon {
        width: 20px;
        height: 20px;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
        max-width: 600px;
    }

    .hero-cta-buttons {
        flex-direction: row;
        gap: 1rem;
        width: auto;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: auto;
        padding: 1rem 1.75rem;
        font-size: 1.0625rem;
    }

    .btn-icon {
        width: 20px;
        height: 20px;
    }
}

@media (min-width: 768px) {
    .hero-section {
        padding: 10rem 2rem;
    }

    .hero-headline {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}

@media (min-width: 992px) {
    .hero-section {
        height: 75vh;
        min-height: 600px;
        padding: 10rem 2rem;
    }

    .hero-headline {
        font-size: 3.5rem;
    }
}

/* Mobile specific adjustments */
@media (max-width: 575px) {
    .hero-section {
        height: 70vh;
        min-height: 600px;
        max-height: 800px;
        padding: 3rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .security-badge {
        padding: 0.625rem 1.125rem;
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
    }

    .security-badge .shield-icon {
        width: 18px;
        height: 18px;
    }

    .hero-headline {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.25;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }

    .btn-icon {
        width: 18px;
        height: 18px;
    }

    .hero-cta-buttons {
        width: 100%;
        gap: 0.75rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 375px) {
    .hero-section {
        height: 65vh;
        min-height: 550px;
        padding: 2.5rem 1rem;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }
}

/* Statistics Section Responsive */
@media (max-width: 767px) {
    .stats-section {
        height: auto;
        min-height: auto;
        padding: 3rem 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

/* Everything You Need to Connect Section */
.features-section {
    background-color: #f5f5f5;
    padding: 4rem 0;
}

.features-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.features-subtitle {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-blue {
    background-color: #3b82f6;
}

.feature-icon-green {
    background-color: #10b981;
}

.feature-icon-purple {
    background-color: #8b5cf6;
}

.feature-icon-orange {
    background-color: #f59e0b;
}

.feature-icon {
    width: 32px;
    height: 32px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

/* Features Section Responsive */
@media (min-width: 576px) {
    .features-section {
        padding: 5rem 0;
    }

    .features-heading {
        font-size: 2.25rem;
    }

    .features-subtitle {
        font-size: 1.0625rem;
    }
}

@media (min-width: 768px) {
    .features-section {
        padding: 6rem 0;
    }

    .features-heading {
        font-size: 2.5rem;
    }

    .features-subtitle {
        font-size: 1.125rem;
    }

    .feature-card {
        padding: 2.5rem 2rem;
    }

    .feature-title {
        font-size: 1.375rem;
    }

    .feature-description {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .features-section {
        padding: 8rem 0;
    }

    .features-heading {
        font-size: 3rem;
    }
}

@media (max-width: 575px) {
    .features-section {
        padding: 3rem 0;
    }

    .features-heading {
        font-size: 1.75rem;
    }

    .features-subtitle {
        font-size: 0.9375rem;
    }

    .feature-card {
        padding: 1.75rem 1.25rem;
    }

    .feature-icon-wrapper {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }

    .feature-icon {
        width: 28px;
        height: 28px;
    }

    .feature-title {
        font-size: 1.125rem;
    }

    .feature-description {
        font-size: 0.875rem;
    }
}

/* Why Patriots Choose GopValues Section */
.patriots-section {
    background-color: #f5f5f5;
    padding: 4rem 0;
}

.patriots-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.patriots-intro {
    font-size: 1rem;
    color: #374151;
    line-height: 1.7;
}

.patriots-feature-item {
    margin-bottom: 1.5rem;
}

.patriots-feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.patriots-feature-icon svg {
    width: 32px;
    height: 32px;
}

.patriots-feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.patriots-feature-description {
    font-size: 0.9375rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.patriots-cta-box {
    background-color: #1e3a5f;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    height: 100%;
}

.patriots-cta-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.patriots-cta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.patriots-cta-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.patriots-cta-item:last-child {
    margin-bottom: 0;
}

.patriots-check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
}

.patriots-cta-button {
    display: block;
    width: 100%;
    background-color: #dc2626;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.patriots-cta-button:hover {
    background-color: #b91c1c;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

/* Patriots Section Responsive */
@media (min-width: 576px) {
    .patriots-section {
        padding: 5rem 0;
    }

    .patriots-heading {
        font-size: 2.25rem;
    }

    .patriots-intro {
        font-size: 1.0625rem;
    }

    .patriots-feature-icon {
        width: 56px;
        height: 56px;
    }

    .patriots-feature-icon svg {
        width: 36px;
        height: 36px;
    }

    .patriots-feature-title {
        font-size: 1.25rem;
    }

    .patriots-feature-description {
        font-size: 1rem;
    }

    .patriots-cta-box {
        padding: 2.5rem 2rem;
    }

    .patriots-cta-heading {
        font-size: 2rem;
    }

    .patriots-cta-item {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .patriots-section {
        padding: 6rem 0;
    }

    .patriots-heading {
        font-size: 2.5rem;
    }

    .patriots-intro {
        font-size: 1.125rem;
    }

    .patriots-cta-heading {
        font-size: 2.25rem;
    }
}

@media (min-width: 992px) {
    .patriots-section {
        padding: 8rem 0;
    }

    .patriots-heading {
        font-size: 3rem;
    }

    .patriots-cta-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 575px) {
    .patriots-section {

        padding: 3rem 0;
    }

    .patriots-heading {
        font-size: 1.75rem;
    }

    .patriots-intro {
        font-size: 0.9375rem;
    }

    .patriots-feature-icon {
        width: 40px;
        height: 40px;
    }

    .patriots-feature-icon svg {
        width: 28px;
        height: 28px;
    }

    .patriots-feature-title {
        font-size: 1rem;
    }

    .patriots-feature-description {
        font-size: 0.875rem;
    }

    .patriots-cta-box {
        padding: 1.75rem 1.25rem;
    }

    .patriots-cta-heading {
        font-size: 1.5rem;
    }

    .patriots-cta-item {
        font-size: 0.875rem;
    }

    .patriots-cta-button {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

/* News Feed Section */
.news-section {
    background-color: #f5f5f5;
    padding: 4rem 0;
}

.news-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.news-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 0;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.news-image-wrapper {
    width: 100%;
    height: 200px;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.news-image-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.75rem;
    padding: 0 1.5rem;
    margin-top: 1.5rem;
}

.news-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #000000;
    text-decoration: none;
    opacity: 0.8;
}

.news-description {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.news-description p {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}


.news-action {
    padding: 0 1.5rem 1.5rem;
}

.news-btn {
    background-color: #1e3a5f;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.news-btn:hover {
    background-color: #0f2542;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.news-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.2);
}

/* News Section Responsive */
@media (min-width: 576px) {
    .news-section {
        padding: 5rem 0;
    }

    .news-heading {
        font-size: 2.25rem;
    }

    .news-title {
        font-size: 1.625rem;
    }

    .news-description p {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .news-section {
        padding: 6rem 0;
    }

    .news-heading {
        font-size: 2.5rem;
    }

    .news-title {
        font-size: 1.75rem;
        padding: 0 2rem;
        margin-top: 2rem;
    }

    .news-description {
        padding: 0 2rem;
        margin-bottom: 2rem;
    }

    .news-description p {
        font-size: 1.0625rem;
    }

    .news-action {
        padding: 0 2rem 2rem;
    }

    .news-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .news-section {
        padding: 8rem 0;
    }

    .news-heading {
        font-size: 3rem;
    }

    .news-title {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .news-section {
        padding: 3rem 0;
    }

    .news-heading {
        font-size: 1.75rem;
    }

    .news-title {
        font-size: 1.375rem;
        padding: 0 1.25rem;
        margin-top: 1.25rem;
    }

    .news-description {
        padding: 0 1.25rem;
        margin-bottom: 1.25rem;
    }

    .news-description p {
        font-size: 0.875rem;
    }

    .news-action {
        padding: 0 1.25rem 1.25rem;
    }

    .news-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}