/* ============ APP SECTION ============ */
.aqua-app {
    padding: 70px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* App Pattern Background */
.aqua-app::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 180, 216, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(144, 224, 239, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.aqua-app-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.aqua-app-header {
    text-align: center;
    margin-bottom: 50px;
}

.aqua-app-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00B4D8 0%, #0077B6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.25);
    position: relative;
}

.aqua-app-icon i {
    font-size: 28px;
    color: #fff;
}

.aqua-app-title {
    font-family: 'Kanit', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #03045E;
    margin-bottom: 12px;
}

.aqua-app-title span {
    background: linear-gradient(135deg, #00B4D8 0%, #0077B6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aqua-app-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* App Content Layout */
.aqua-app-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

@media (min-width: 992px) {
    .aqua-app-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 60px;
    }
}

/* Left Side - Features */
.aqua-app-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Feature Item */
.aqua-app-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 119, 182, 0.08);
    border: 1px solid rgba(144, 224, 239, 0.3);
    transition: all 0.3s ease;
}

.aqua-app-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.15);
    border-color: rgba(0, 180, 216, 0.5);
}

.aqua-app-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #00B4D8 0%, #0077B6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aqua-app-feature-icon i {
    font-size: 22px;
    color: #ffffff;
}

.aqua-app-feature-content h3 {
    font-family: 'Kanit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #03045E;
    margin: 0 0 8px 0;
}

.aqua-app-feature-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Right Side - Download Section */
.aqua-app-download-section {
    flex: 1;
}

/* Download Section */
.aqua-app-download {
    text-align: center;
    padding: 20px;
    background: #f8fbff;
    border-radius: 15px;
    border: 1px solid rgba(144, 224, 239, 0.3);
}

.aqua-app-download-title {
    font-family: 'Kanit', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #03045E;
    margin-bottom: 15px;
}

.aqua-app-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

@media (min-width: 768px) {
    .aqua-app-download-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.aqua-download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.1);
    border: 2px solid rgba(0, 180, 216, 0.2);
    width: 100%;
    max-width: 250px;
}

.aqua-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.2);
    border-color: #00B4D8;
}

.aqua-download-btn-apple:hover {
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
    color: #ffffff;
}

.aqua-download-btn-android:hover {
    background: linear-gradient(135deg, #34A853 0%, #0F9D58 100%);
    color: #ffffff;
}

.aqua-download-btn i {
    font-size: 32px;
}

.aqua-download-btn-apple i {
    color: #000000;
}

.aqua-download-btn-android i {
    color: #34A853;
}

.aqua-download-btn:hover i {
    color: #ffffff;
}

.aqua-download-text {
    text-align: left;
}

.aqua-download-text span {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 2px;
}

.aqua-download-text strong {
    display: block;
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #03045E;
}

.aqua-download-btn:hover .aqua-download-text strong {
    color: #ffffff;
}

/* QR Code Section */
.aqua-app-qr {
    text-align: center;
    margin-bottom: 30px;
}

.aqua-app-qr-code {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    background: #ffffff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 119, 182, 0.1);
    border: 1px solid rgba(144, 224, 239, 0.3);
}

.aqua-app-qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.aqua-app-qr-text {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* App Screenshots */
.aqua-app-screenshots {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
}

.aqua-app-screenshot {
    width: 150px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 4px solid #ffffff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.aqua-app-screenshot:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.aqua-app-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* App Stats */
.aqua-app-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #00B4D8 0%, #0077B6 100%);
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0, 119, 182, 0.25);
}

@media (min-width: 768px) {
    .aqua-app-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.aqua-app-stat {
    text-align: center;
    color: #ffffff;
    padding: 10px;
}

.aqua-app-stat-number {
    font-family: 'Kanit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.aqua-app-stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 991px) {
    .aqua-app {
        padding: 50px 0;
    }

    .aqua-app-title {
        font-size: 28px;
    }

    .aqua-app-subtitle {
        font-size: 15px;
    }

    .aqua-app-feature {
        padding: 20px;
    }

    .aqua-app-feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .aqua-app-feature-icon i {
        font-size: 20px;
    }

    .aqua-app-feature-content h3 {
        font-size: 16px;
    }

    .aqua-app-feature-content p {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .aqua-app {
        padding: 40px 0;
    }

    .aqua-app-header {
        margin-bottom: 30px;
    }

    .aqua-app-icon {
        width: 60px;
        height: 60px;
    }

    .aqua-app-icon i {
        font-size: 24px;
    }

    .aqua-app-title {
        font-size: 24px;
    }

    .aqua-app-feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .aqua-app-feature-icon {
        margin: 0 auto;
    }

    .aqua-app-download {
        padding: 25px;
        margin-bottom: 30px;
    }

    .aqua-app-download-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .aqua-download-btn {
        max-width: 100%;
    }

    .aqua-app-screenshot {
        width: 130px;
        height: 260px;
    }
}

@media (max-width: 480px) {
    .aqua-app {
        padding: 30px 0;
    }

    .aqua-app-title {
        font-size: 22px;
    }

    .aqua-app-subtitle {
        font-size: 14px;
    }

    .aqua-app-feature {
        padding: 18px;
    }

    .aqua-download-btn {
        padding: 12px 20px;
    }

    .aqua-download-btn i {
        font-size: 28px;
    }

    .aqua-download-text strong {
        font-size: 15px;
    }

    .aqua-app-qr-code {
        width: 120px;
        height: 120px;
    }

    .aqua-app-screenshot {
        width: 110px;
        height: 220px;
    }

    .aqua-app-stats {
        padding: 20px;
        gap: 15px;
    }

    .aqua-app-stat-number {
        font-size: 28px;
    }

    .aqua-app-stat-label {
        font-size: 13px;
    }
}