/* Modern Review Page Styles - Apple-inspired Clean Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    background: #ffffff;
    color: #1d1d1f;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Banner Section */
.banner-section {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    display: block;
    background: #ffffff;
}

.banner-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    max-height: 50vh;
}

/* Review Section - Clean Apple Design */
.review-section {
    padding: 0px 0 0px 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    /* min-height: calc(100vh - 50vh); */
}

.container {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 0px;
}

.review-content {
    background: #ffffff;
    padding: 56px 40px 32px 40px;
    text-align: center;
    position: relative;
    border-radius: 20px;
    box-shadow: none;
}

/* Typography - Apple Style */
.review-title {
    font-size: 32px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.review-title strong {
    font-weight: 700;
    color: #1d1d1f;
}

.review-subtitle {
    font-size: 17px;
    color: #86868b;
    margin-bottom: 48px;
    font-weight: 400;
    line-height: 1.5;
}

.review-subtitle strong {
    font-weight: 600;
    color: #1d1d1f;
}

/* Star Rating - Enhanced Apple Design */
.rating-container {
    margin: 0px 0;
}

.star-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    direction: ltr;
    padding: 24px 0;
}

.star-wrapper a {
    font-size: 48px;
    color: #d2d2d7;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

.star-wrapper a:hover {
    color: #ffd700;
    transform: scale(1.1);
}

.star-wrapper a.active {
    color: #ffd700;
    transform: scale(1.05);
}

.star-wrapper a.active ~ a {
    color: #d2d2d7;
}

.rating-text {
    font-size: 17px;
    font-weight: 500;
    color: #1d1d1f;
    margin-top: 16px;
}

/* Review Form - Apple Button Style */
.review-form {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.submit-btn {
    background: #007aff;
    color: white;
    border: none;
    padding: 16px 48px;
    font-size: 17px;
    font-weight: 500;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(0, 122, 255, 0.2);
    text-transform: none;
    letter-spacing: -0.2px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 200px;
    justify-content: center;
}

.submit-btn span {
    display: inline-block;
}

.submit-btn i {
    font-size: 14px;
    opacity: 0.9;
}

.submit-btn:hover {
    background: #0051d5;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.2);
}

/* Thank You Message - Apple Style */
.thank-you {
    background: #34c759;
    color: white;
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(52, 199, 89, 0.2);
}

.thank-you h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.thank-you h2 i {
    font-size: 32px;
}

.thank-you h2 span {
    display: inline-block;
}

.thank-you p {
    font-size: 17px;
    opacity: 0.95;
    font-weight: 400;
}

/* Footer - Clean Design */
.review-footer {
    background: #ffffff;
    color: #1d1d1f;
    padding: 0px 0 0px 0;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    text-align: center;
    position: relative;
}

.footer-content h3 {
    font-size: 21px;
    /* margin-bottom: 32px; */
    color: #1d1d1f;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    /* margin-top: 24px;
    margin-bottom: 32px; */
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    background: transparent;
    color: #1d1d1f;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 32px;
    border: none;
    position: relative;
    padding: 8px;
}

.social-link:hover {
    transform: translateY(-2px);
    background: transparent;
    color: #007aff;
    border-color: transparent;
}

.social-link:active {
    transform: translateY(0);
}

/* Powered by */
.powered-by {
    /* margin-top: 32px; */
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid #e5e5e7;
}

.powered-by p {
    font-size: 13px;
    color: #86868b;
    margin: 0;
    font-weight: 400;
}

.zapex-link,
.kochi-one-link {
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.zapex-link:hover,
.kochi-one-link:hover {
    color: #1d1d1f;
    text-decoration: underline;
}

/* Action Buttons - Apple Style */
.action-buttons-container {
    /* margin: 24px 0 32px 0; */
    text-align: center;
}

.action-buttons-container h3 {
    color: #1d1d1f;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.3px;
}

.action-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    max-width: 100%;
    margin: 0 auto;
}

.action-button {
    background: #ffffff;
    border: 1px solid #e5e5e7;
    border-radius: 12px;
    padding: 20px 16px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.action-button:hover {
    border-color: #007aff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.2);
    background: #f5f5f7;
}

.action-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.button-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f5f5f7;
    overflow: hidden;
    border: 1px solid #e5e5e7;
}

.button-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fallback-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 24px;
    color: #007aff;
}

.button-text {
    text-align: center;
}

.button-text span {
    font-weight: 500;
    font-size: 15px;
    color: #1d1d1f;
    line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .review-section {
        padding: 0px 0 60px 0;
    }

    .review-content {
        padding: 40px 24px;
        border-radius: 16px;
    }

    .review-title {
        font-size: 28px;
    }

    .review-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .star-wrapper {
        gap: 12px;
        padding: 20px 0;
    }

    .star-wrapper a {
        font-size: 40px;
    }

    .rating-text {
        font-size: 16px;
    }

    .submit-btn {
        padding: 14px 40px;
        font-size: 16px;
        min-width: 180px;
    }

    .social-links {
        gap: 12px;
    }

    .social-link {
        width: 88px;
        height: 88px;
        font-size: 38px;
    }

    .footer-content h3 {
        font-size: 19px;
    }

    .action-buttons-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .action-button {
        padding: 18px 16px;
        flex-direction: row;
        text-align: left;
        gap: 16px;
    }
    
    .button-icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }
    
    .button-icon img {
        width: 100%;
        height: 100%;
    }
    
    .button-text {
        text-align: left;
        flex: 1;
    }
    
    .button-text span {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .review-section {
        padding: 0px 0 0px 0;
    }

    .review-content {
        padding: 32px 20px;
        border-radius: 12px;
    }

    .review-title {
        font-size: 24px;
    }

    .review-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .star-wrapper {
        gap: 10px;
        padding: 16px 0;
    }

    .star-wrapper a {
        font-size: 36px;
    }

    .rating-text {
        font-size: 15px;
    }

    .submit-btn {
        padding: 12px 32px;
        font-size: 15px;
        min-width: 160px;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        width: 84px;
        height: 84px;
        font-size: 36px;
    }

    .footer-content h3 {
        font-size: 17px;
    }

    .action-button {
        padding: 16px 14px;
    }
    
    .button-icon {
        width: 44px;
        height: 44px;
    }
}

/* Animations - Subtle Apple Style */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-content {
    animation: fadeInUp 0.6s ease-out;
}

.star-wrapper a {
    animation: fadeInUp 0.4s ease-out;
}

.star-wrapper a:nth-child(1) { animation-delay: 0.05s; }
.star-wrapper a:nth-child(2) { animation-delay: 0.1s; }
.star-wrapper a:nth-child(3) { animation-delay: 0.15s; }
.star-wrapper a:nth-child(4) { animation-delay: 0.2s; }
.star-wrapper a:nth-child(5) { animation-delay: 0.25s; }

/* Smooth transitions */
* {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hide scrollbars but keep scroll functionality */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

html {
    scrollbar-width: none;
}

body {
    -ms-overflow-style: none;
}
