/* style/resources-mobile-fishing-apps.css */
.page-resources-mobile-fishing-apps {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa; /* Light background for general content */
}

.page-resources-mobile-fishing-apps__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-resources-mobile-fishing-apps__hero-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-mobile-fishing-apps__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:fishing_ocean,abstract_waves,blue_gradient]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-resources-mobile-fishing-apps__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-mobile-fishing-apps__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-mobile-fishing-apps__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.page-resources-mobile-fishing-apps__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-resources-mobile-fishing-apps__btn--primary {
    background-color: #ffc107; /* Auxiliary color for CTA */
    color: #000000; /* Dark text for high contrast on yellow */
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.page-resources-mobile-fishing-apps__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.6);
}

.page-resources-mobile-fishing-apps__btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.page-resources-mobile-fishing-apps__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.5);
}

.page-resources-mobile-fishing-apps__section-title {
    font-size: 2.5em;
    color: #0056b3; /* Darker blue for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-resources-mobile-fishing-apps__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107;
    border-radius: 2px;
}

.page-resources-mobile-fishing-apps__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: -20px auto 60px auto;
    color: #555;
}

.page-resources-mobile-fishing-apps__intro-section,
.page-resources-mobile-fishing-apps__criteria-section,
.page-resources-mobile-fishing-apps__top-apps-section,
.page-resources-mobile-fishing-apps__guide-section,
.page-resources-mobile-fishing-apps__faq-section,
.page-resources-mobile-fishing-apps__call-to-action {
    padding: 80px 0;
}

.page-resources-mobile-fishing-apps__intro-section {
    background-color: #ffffff;
}

.page-resources-mobile-fishing-apps__flex-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-resources-mobile-fishing-apps__flex-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-resources-mobile-fishing-apps__text-content {
    flex: 1;
    min-width: 300px;
}

.page-resources-mobile-fishing-apps__image-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-resources-mobile-fishing-apps__image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-resources-mobile-fishing-apps__text-content h2 {
    text-align: left;
    margin-top: 0;
    margin-bottom: 30px;
}

.page-resources-mobile-fishing-apps__text-content h2::after {
    left: 0;
    transform: translateX(0);
}

.page-resources-mobile-fishing-apps__text-content p {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: #444;
}

.page-resources-mobile-fishing-apps__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-resources-mobile-fishing-apps__grid-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #007bff;
}

.page-resources-mobile-fishing-apps__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-resources-mobile-fishing-apps__item-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-resources-mobile-fishing-apps__item-title::before {
    content: '✓';
    color: #ffc107;
    margin-right: 10px;
    font-size: 1.2em;
    font-weight: bold;
}

.page-resources-mobile-fishing-apps__app-review-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-left: 8px solid #007bff;
}

.page-resources-mobile-fishing-apps__app-header {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.page-resources-mobile-fishing-apps__app-logo {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-mobile-fishing-apps__app-name {
    font-size: 2em;
    color: #007bff;
    margin: 0;
}

.page-resources-mobile-fishing-apps__rating {
    font-size: 1.5em;
    color: #ffc107;
    margin-left: auto;
}

.page-resources-mobile-fishing-apps__app-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.page-resources-mobile-fishing-apps__app-screenshot {
    flex: 1 1 400px; /* Allow screenshot to grow but maintain minimum width */
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-resources-mobile-fishing-apps__app-details {
    flex: 1 1 400px; /* Allow details to grow but maintain minimum width */
}

.page-resources-mobile-fishing-apps__app-details h4 {
    font-size: 1.3em;
    color: #0056b3;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-resources-mobile-fishing-apps__app-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-resources-mobile-fishing-apps__app-details ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05em;
    color: #444;
}

.page-resources-mobile-fishing-apps__app-details ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #28a745;
}

.page-resources-mobile-fishing-apps__app-details .page-resources-mobile-fishing-apps__btn {
    margin-right: 15px;
    margin-bottom: 10px; /* For mobile stacking */
}

.page-resources-mobile-fishing-apps__guide-section {
    background-color: #f0f8ff; /* Light blue background */
}

.page-resources-mobile-fishing-apps__sub-title {
    font-size: 1.8em;
    color: #007bff;
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-resources-mobile-fishing-apps__sub-title::before {
    content: '# ';
    color: #ffc107;
}

.page-resources-mobile-fishing-apps__faq-section {
    background-color: #ffffff;
}

.page-resources-mobile-fishing-apps__faq-item {
    background-color: #fefefe;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-mobile-fishing-apps__faq-question {
    font-size: 1.4em;
    color: #0056b3;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-resources-mobile-fishing-apps__faq-question::before {
    content: 'Q: ';
    color: #ffc107;
    font-weight: bold;
}

.page-resources-mobile-fishing-apps__faq-item p {
    font-size: 1.05em;
    color: #555;
    margin-bottom: 0;
}

.page-resources-mobile-fishing-apps__call-to-action {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.page-resources-mobile-fishing-apps__call-to-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:ocean_depth,fish_school,abstract_light]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-resources-mobile-fishing-apps__call-to-action .page-resources-mobile-fishing-apps__section-title {
    color: #ffffff;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-mobile-fishing-apps__call-to-action .page-resources-mobile-fishing-apps__section-title::after {
    background-color: #ffc107;
}

.page-resources-mobile-fishing-apps__call-to-action .page-resources-mobile-fishing-apps__section-description {
    color: #e0e0e0;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.page-resources-mobile-fishing-apps__btn--large {
    padding: 18px 40px;
    font-size: 1.25em;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
}

.page-resources-mobile-fishing-apps__btn--large:hover {
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.7);
}

.page-resources-mobile-fishing-apps__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

.highlight {
    color: #007bff;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-resources-mobile-fishing-apps__main-title {
        font-size: 2.8em;
    }
    .page-resources-mobile-fishing-apps__section-title {
        font-size: 2em;
    }
    .page-resources-mobile-fishing-apps__flex-wrapper {
        flex-direction: column;
    }
    .page-resources-mobile-fishing-apps__flex-wrapper--reverse {
        flex-direction: column;
    }
    .page-resources-mobile-fishing-apps__app-content {
        flex-direction: column;
    }
    .page-resources-mobile-fishing-apps__app-screenshot {
        margin-bottom: 20px;
    }
    .page-resources-mobile-fishing-apps__app-header {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .page-resources-mobile-fishing-apps__app-name {
        width: 100%;
        margin-top: 10px;
    }
    .page-resources-mobile-fishing-apps__rating {
        margin-left: 0;
        width: 100%;
    }
    .page-resources-mobile-fishing-apps__app-details .page-resources-mobile-fishing-apps__btn {
        display: block;
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .page-resources-mobile-fishing-apps__main-title {
        font-size: 2.2em;
    }
    .page-resources-mobile-fishing-apps__subtitle {
        font-size: 1.1em;
    }
    .page-resources-mobile-fishing-apps__section-title {
        font-size: 1.8em;
    }
    .page-resources-mobile-fishing-apps__hero-section,
    .page-resources-mobile-fishing-apps__call-to-action {
        padding: 60px 0;
    }
    .page-resources-mobile-fishing-apps__intro-section,
    .page-resources-mobile-fishing-apps__criteria-section,
    .page-resources-mobile-fishing-apps__top-apps-section,
    .page-resources-mobile-fishing-apps__guide-section,
    .page-resources-mobile-fishing-apps__faq-section {
        padding: 50px 0;
    }
    .page-resources-mobile-fishing-apps__cta-group {
        flex-direction: column;
    }
    .page-resources-mobile-fishing-apps__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto 15px auto;
    }
    .page-resources-mobile-fishing-apps__grid-item {
        padding: 25px;
    }
    .page-resources-mobile-fishing-apps__app-name {
        font-size: 1.8em;
    }
    .page-resources-mobile-fishing-apps__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-resources-mobile-fishing-apps__main-title {
        font-size: 1.8em;
    }
    .page-resources-mobile-fishing-apps__section-title {
        font-size: 1.5em;
    }
    .page-resources-mobile-fishing-apps__sub-title {
        font-size: 1.5em;
    }
    .page-resources-mobile-fishing-apps__app-review-card {
        padding: 20px;
    }
    .page-resources-mobile-fishing-apps__app-logo {
        width: 60px;
        height: 60px;
    }
    .page-resources-mobile-fishing-apps__app-name {
        font-size: 1.5em;
    }
    .page-resources-mobile-fishing-apps__rating {
        font-size: 1.2em;
    }
    .page-resources-mobile-fishing-apps__btn {
        font-size: 1em;
        padding: 12px 20px;
    }
    .page-resources-mobile-fishing-apps__btn--large {
        font-size: 1.1em;
        padding: 15px 30px;
    }
}